--- gtk+2.0-2.17.10.orig/debian/update-icon-caches +++ gtk+2.0-2.17.10/debian/update-icon-caches @@ -0,0 +1,28 @@ +#!/bin/sh + +case "$1" in + ""|-h|--help) + echo "Usage: $0 directory [ ... ]" + exit 1 + ;; +esac + +for dir in "$@"; do + if [ ! -d "$dir" ]; then + continue + fi + if [ -f "$dir"/index.theme ]; then + if [ -f "$dir"/icon-theme.cache ]; then + # The cache already exists, regenerate it + if ! gtk-update-icon-cache --force --quiet "$dir"; then + echo "WARNING: icon cache generation failed for $dir" + fi + fi + else + # No more index.theme, remove the cache if it exists + rm -f "$dir"/icon-theme.cache + rmdir -p --ignore-fail-on-non-empty "$dir" + fi +done + +exit 0 --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.doc-base.gdk +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.doc-base.gdk @@ -0,0 +1,13 @@ +Document: gdk +Title: GDK Reference Manual +Author: Damon Chaplin et al. +Abstract: The GDK library provides an OS-independant wrapper around the + most fundamental graphical user interface functions. This allows + GTK+ to be ported to non-X11 systems, as long as GDK is ported first. + . + This document covers programming in GDK. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/gdk/index.html +Files: /usr/share/doc/libgtk2.0-doc/gdk/*.html --- gtk+2.0-2.17.10.orig/debian/gtk2-engines-pixbuf.links.in +++ gtk+2.0-2.17.10/debian/gtk2-engines-pixbuf.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@PIXBUF_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@PIXBUF_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@PIXBUF_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.doc-base.gtk-faq +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.doc-base.gtk-faq @@ -0,0 +1,12 @@ +Document: gtk2-faq +Title: GTK+2.0 Frequently Asked Questions +Author: Tony Gale, Shawn Amundson, and Emmanuel Deloget +Abstract: This document is intended to answer questions that are + likely to be frequently asked by programmers using the GTK+ + graphical user interface library, or people who are just looking at + using GTK+, GNOME, or GIMP. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/faq/book1.html +Files: /usr/share/doc/libgtk2.0-doc/faq/*.html --- gtk+2.0-2.17.10.orig/debian/update-icon-caches.8 +++ gtk+2.0-2.17.10/debian/update-icon-caches.8 @@ -0,0 +1,19 @@ +.TH UPDATE-ICON-CACHES 8 "13 July 2007" +.SH NAME +update-icon-caches \- Update wrapper script for the icon caches +.SH SYNOPSIS +\fBupdate-icon-caches\fP \fIdirectory\fP [ \fI...\fP ] +.SH DESCRIPTION +\fBupdate-icon-caches\fP is a wrapper script for updating the icon +caches in a list of directories. +.P +In each of the directories passed as arguments, the icon cache is +updated if it is already present. It is not created if it does not +already exist. +.P +If the theme index file is not present, the icon cache is removed. +.SH SEE ALSO +.BR gtk-update-icon-cache (1) +.SH AUTHOR +This manual page was written by Josselin Mouette , +for the Debian GNU/Linux system. --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-bin.prerm +++ gtk+2.0-2.17.10/debian/libgtk2.0-bin.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-bin +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/gtk-options.7 +++ gtk+2.0-2.17.10/debian/gtk-options.7 @@ -0,0 +1,107 @@ +.\" gtk-options.7 - Standard Command Line Options for Gnome Programs +.\" Copyright 2003 Jochen Voss +.\" You may redistribute and modify this manual page +.\" under the terms of the GPL. +.TH gtk\-options 7 "2003\-10\-20" "GTK+ 1.2" "GTK+ User\'s Manual" +.SH NAME +gtk\-options \- Standard Command Line Options for GTK+ Programs +.SH SYNOPSIS +.IR "program " [ "standard options" "] [" "specific options" "] " arguments +.SH DESCRIPTION +This manual page describes the command line options, which are common +to all GTK+ based applications. +.SH OPTIONS +.SS GTK+ OPTIONS +.TP +\fB\-\-gtk\-module\fR=\fIMODULE\fR +Load an additional Gtk module. +.TP +\fB\-\-gtk\-debug\fR=\fIFLAGS\fR +A colon separated list of GTK+ debugging flags to set. +Valid flags are +.IR objects , +.IR misc , +.IR signals , +.IR dnd , +and +.IR plugsocket . +The special value +.I all +enables all flags. +.TP +\fB\-\-gtk\-no\-debug\fR=\fIFLAGS\fR +GTK+ debugging flags to unset. Use this options to override the +.I GTK_DEBUG +environment variable. +.TP +\fB\-\-g\-fatal\-warnings\fR +Make all warnings fatal. +.SS GDK OPTIONS +.TP +\fB\-\-display\fR=\fIDISPLAY\fR +Set the X display to use. Use this option to override the +.I DISPLAY +environment variable. +.TP +\fB\-\-screen\fR=\fISCREEN\fR +X screen to use. Use this options to override the screen part +of the +.I DISPLAY +environment variable (see the +.I DISPLAY NAMES +section of the +.IR X (7x) +manual page). +.TP +\fB\-\-sync\fR +Make X calls synchronous. This slows down the program considerably, +but may be useful for debugging purposes. +.TP +\fB\-\-no\-xshm\fR +Do not use the X server\'s XSHM shared memory extension. This slows down the +program. +.TP +\fB\-\-name\fR=\fINAME\fR +Program name as used by the window manager. +.TP +\fB\-\-class\fR=\fICLASS\fR +Program class as used by the window manager. +.HP +\fB\-\-gxid_host\fR=\fIHOST\fR +.HP +\fB\-\-gxid_port\fR=\fIPORT\fR +.HP +\fB\-\-xim\-preedit\fR +.TP +\fB\-\-xim\-status\fR +Control the X input method. +.TP +\fB\-\-gdk\-debug\fR=\fIFLAGS\fR +A colon\-separated list of GDK debugging flags to set. This only works +if your GDK library was compile with debugging support. Valid flags +are +.IR events , +.IR misc , +.IR dnd , +.IR color\-context , +and +.IR xim . +The special value +.I all +enables all valid flags. +.TP +\fB\-\-gdk\-no\-debug\fR=\fIFLAGS\fR +A colon\-separated list of GDK debugging flags to unset. +Use this options to override the +.I GDK_DEBUG +environment variable. +.SH "SEE ALSO" +.BR X (7x), +the GTK+ documentation, and +the GDK documentation. +.PP +For most GTK+ programs there will be additional command line options, +which are specific to the program. These will be explained in the +application\'s documentation. +.SH AUTHOR +This manual page was written by Jochen Voss . --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-dev.prerm +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-dev.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk-directfb-2.0-dev +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.install.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.install.in @@ -0,0 +1,10 @@ +# from Debian +debian/gtk-faq.devhelp usr/share/doc/@DOC_PKG@/faq +debian/gtk-tutorial.devhelp usr/share/doc/@DOC_PKG@/tutorial +# from the shared flavor +debian/install/shared/usr/share/gtk-doc/html/gtk* usr/share/doc/@DOC_PKG@ +debian/install/shared/usr/share/gtk-doc/html/gdk* usr/share/doc/@DOC_PKG@ +# from the source +docs/faq/html/* usr/share/doc/@DOC_PKG@/faq +docs/tutorial/html/* usr/share/doc/@DOC_PKG@/tutorial +docs/*.txt usr/share/doc/@DOC_PKG@ --- gtk+2.0-2.17.10.orig/debian/libgail-doc.doc-base.gail-reference +++ gtk+2.0-2.17.10/debian/libgail-doc.doc-base.gail-reference @@ -0,0 +1,10 @@ +Document: gail-reference +Title: Gail Reference Manual +Author: Padraig O'Briain +Abstract: This manual describes APIs for libgail-util +Section: Accessibility + +Format: HTML +Index: /usr/share/gtk-doc/html/gail-libgail-util/index.html +Files: /usr/share/gtk-doc/html/gail-libgail-util/*.html + --- gtk+2.0-2.17.10.orig/debian/copyright +++ gtk+2.0-2.17.10/debian/copyright @@ -0,0 +1,91 @@ +This package was debianized by Akira TAGOH on +Wed, 13 Mar 2002 00:07:25 +0900. + +It was downloaded from . + +Copyright Holders: + +Please do not mail any of the authors listed here +asking questions about this version of GTK+. + +Original Authors +---------------- +Peter Mattis +Spencer Kimball +Josh MacDonald + +The GTK+ Team (in alphabetical order) +------------------------------------- +Shawn T. Amundson +Jerome Bolliet +Damon Chaplin +Tony Gale +Jeff Garzik +Lars Hamann +Raja R Harinath +Carsten Haitzler +Tim Janik +Stefan Jeske +Elliot Lee +Raph Levien +Ian Main +Federico Mena +Paolo Molaro +Jay Painter +Manish Singh +Owen Taylor + +There are many others who have contributed patches; we thank them, +GTK+ is much better because of them. + + +Over time, GTK+ has incorporated some pieces of software which +started as independent projects. We list the original authors here: + + +MS-Windows theme engine +----------------------- +Raymond Penners +Dom Lachowicz + + +Pixbuf theme engine +------------------- +Owen Taylor + + +IME input method +---------------- +Takuro Ashie +Kazuki IWAMOTO + + +Mac OS X backend +---------------- +Anders Carlsson + + +DirectFB backend +---------------- +Denis Oliver Kropp +Sven Neumann +Mike Emmel + +License: + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This library 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 Lesser General Public License + for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA. + + See /usr/share/common-licenses/LGPL-2 on your debian system. --- gtk+2.0-2.17.10.orig/debian/watch +++ gtk+2.0-2.17.10/debian/watch @@ -0,0 +1,4 @@ +version=2 +http://download.gnome.org/sources/gtk+/([\d\.]+)/ \ + gtk\+-(.*)\.tar\.gz \ + debian uupdate --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.links.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@SHARED_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@SHARED_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@SHARED_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.prerm +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-0 +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.postrm.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.postrm.in @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +case "$1" in + purge) + rm -rf /etc/gtk-@APIVER@ + ;; +esac + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.preinst +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-0 +oldsymtarget=libgtk2.0-common +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/gruik2devhelp.awk +++ gtk+2.0-2.17.10/debian/gruik2devhelp.awk @@ -0,0 +1,29 @@ +#! /usr/bin/awk -f + +BEGIN { print ""; + level=1 } + +title == 1 { print "(.*)"; + print ""; + title=0 } +/^><DD$/ { level++ } +/^><\/DD$/ { level-- } + +intext == 0 && href != "" && /^>([^<>]*)<.*$/ { n=n gensub("^>(.*)<.*$", "\\1",1); } +intext == 1 && href != "" && /^([^<>]*)$/ { n=n $0 " "; } +intext == 0 && href != "" && /^>([^<>]*)$/ { n=n gensub("^>(.*)$", "\\1",1) " "; intext=1 } +intext == 1 && href != "" && /^([^<>]*)<.*$/ { n=n gensub("^([^<>]*)<.*$", "\\1",1); intext=0 } +href != "" && /<\/A$/ { for (i=level; i<lastlevel+1; i++) print "</sub>"; + print "<sub name=\"" n "\" link=\"" href "\">"; + href = ""; + lastlevel = level } +ending != 1 && /^HREF=".*"$/ { href=gensub("^HREF=\"(.*)\"$","\\1",1); + n = ""; + intext = 0 } +/^CLASS="NAVFOOTER"$/ { ending = 1 } + +END { for (i=0; i<lastlevel; i++) print "</sub>"; + print "</chapters>"; + print "</book>" } --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.install.opt +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.install.opt @@ -0,0 +1,3 @@ +# from the optimised flavor +debian/install/opt/@LIBDIR@/libgtk*.so.* @OPTLIBDIR@ +debian/install/opt/@LIBDIR@/libgdk*.so.* @OPTLIBDIR@ --- gtk+2.0-2.17.10.orig/debian/update-gtk-immodules.8 +++ gtk+2.0-2.17.10/debian/update-gtk-immodules.8 @@ -0,0 +1,31 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH UPDATE-GTK-IMMODULES 8 "13 March 2002" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +update-gtk-immodules \- Update wrapper script for the GTK+ IM modules list +.SH SYNOPSIS +.B update-gtk-immodules +.I package\| version +.SH DESCRIPTION +\fIupdate-gtk-immodules\fP is a wrapper script for updating /etc/gtk-2.0/gtk.immodules using \fIgtk-query-immodules-2.0\fP. +.br +\fIupdate-gtk-immodules\fP get a argument and /etc/gtk-2.0/gtk.immodules for that version will be generated by \fIgtk-query-immodules-2.0\fP. +.SH SEE ALSO +.BR gtk-query-immodules-2.0 (1) +.SH AUTHOR +This manual page was written by Akira TAGOH <tagoh@debian.org>, +for the Debian GNU/Linux system. --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-common.preinst.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-common.preinst.in @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ -L /usr/share/doc/@COMMON_PKG@ ]; then + rm -f /usr/share/doc/@COMMON_PKG@ +fi + +#DEBHELPER# --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.install.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.install.in @@ -0,0 +1,13 @@ +# from Debian +debian/update-gdkpixbuf-loaders @LIBDIR@/@SHARED_PKG@ +debian/update-gtk-immodules @LIBDIR@/@SHARED_PKG@ +# from the shared flavor +debian/install/shared/etc/gtk-@APIVER@/im-multipress.conf etc/gtk-@APIVER@ +debian/install/shared/usr/bin/gdk-pixbuf-query-loaders @LIBDIR@/@SHARED_PKG@ +debian/install/shared/usr/bin/gtk-query-immodules-2.0 @LIBDIR@/@SHARED_PKG@ +debian/install/shared/usr/bin/gtk-update-icon-cache @LIBDIR@/@SHARED_PKG@ +debian/install/shared/@MODULES_BASE_PATH@/loaders/*.so @MODULES_BASE_PATH@/loaders +debian/install/shared/@MODULES_BASE_PATH@/immodules/*.so @MODULES_BASE_PATH@/immodules +debian/install/shared/@MODULES_BASE_PATH@/printbackends/*.so @MODULES_BASE_PATH@/printbackends +debian/install/shared/@LIBDIR@/libgtk*.so.* @LIBDIR@ +debian/install/shared/@LIBDIR@/libgdk*.so.* @LIBDIR@ --- gtk+2.0-2.17.10.orig/debian/libgail-common.install.in +++ gtk+2.0-2.17.10/debian/libgail-common.install.in @@ -0,0 +1 @@ +debian/install/shared/@LIBDIR@/gtk-@APIVER@/modules/*.so @LIBDIR@/gtk-@APIVER@/modules --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-dev.links.in +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-dev.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DIRECTFB_DEV_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DIRECTFB_DEV_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DIRECTFB_DEV_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/control +++ gtk+2.0-2.17.10/debian/control @@ -0,0 +1,392 @@ +Source: gtk+2.0 +Section: libs +Priority: optional +Maintainer: Sebastien Bacher <seb128@ubuntu.com> +Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> +Build-Depends: debhelper (>= 5.0.22), + gettext, + pkg-config, + autotools-dev, + libglib2.0-dev (>= 2.21.3), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.13.0), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxt-dev, + libxrender-dev, + libxft-dev, + libxcursor-dev, + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + libxkbfile-dev, + libxinerama-dev (>= 1:1.0.1-4.1), + libxfixes-dev (>= 1:3.0.0-3), + libcairo2-dev (>= 1.6.4-6.1), + libtiff4-dev, + libjpeg62-dev, + libjasper-dev, + libpng12-dev, + gnome-pkg-tools (>= 0.11), + chrpath, + dpkg-dev (>= 1.13.19), + x11proto-xext-dev, + libdirectfb-dev (>= 1.0.0), + libcups2-dev (>= 1.2), + quilt, + gawk +Build-Depends-Indep: gtk-doc-tools (>= 1.8), + docbook-xml, + libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc, + libcairo2-doc +Standards-Version: 3.8.0 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu + +Package: libgtk2.0-0 +Section: libs +Architecture: any +Depends: libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends}, + shared-mime-info +Provides: gtk2.0-binver-2.10.0 +Conflicts: libgtk2.0-0png3, + eog2 (<< 1.0.1-4), + gnome-panel2 (<< 2.0.4-1), + celestia (<< 1.2.4-4), + gimp1.3 (<< 1.3.7-1.1), + metatheme (<< 0.9.7-3), + libgnomeui-0 (<= 2.14.1-3), + gtk2.0-examples (<< 2.2.0), + libgdkxft0, + openoffice.org-core (<< 2.2.1-8), + gtk2-engines-wonderland (<< 1.0-4), + gtk2-engines-cleanice (<< 2.4.0-1.1), + gtk2-engines-thinice (<< 2.6), + gtk2-engines-crux (<< 2.6), + gtk2-engines-mist (<< 2.6), + gtk2-engines-highcontrast (<< 2.6), + gtk2-engines-lighthouseblue (<< 2.6), + gnome-themes (<< 2.6), + gtk2-engines-industrial (<< 0.2.32-5), + gtk2-engines-pixbuf (<= 2.10), + gtk2-engines-redmond95 (<< 2.2.0-2.1), + gtk2-engines-metal (<< 2.2.0-2.1), + gtk2-engines-magicchicken (<< 1.1.1-7.1), + gtk2-engines-qtpixmap (<< 0.28-1.2), + gtk2-engines-smooth (<< 0.5.6-3), + gtk2-engines-ubuntulooks (<= 0.9.11-1), + gtk2-engines-xfce (<< 2.4.0-1), + tamil-gtk2im (<< 2.2-4.4), + imhangul (<< 0.9.13-5), + librsvg2-common (<= 2.14.4-2), + gtk2-engines (<< 1:2.8.2-2), + gtk2-engines-gtk-qt (<< 1:0.7-2), + iiimgcf (<= 11.4.1870-7.3), + scim-bridge (<= 0.2.4-1), + scim-gtk2-immodule (<< 1.4.4-8), + gtk-im-libthai (<< 0.1.4-3), + uim-gtk2.0 (<< 1:1.4.1-3), + libwmf-dev (<< 0.2.8.4-5), + libwmf0.2-7 (<< 0.2.8.4-5), + swf-player (<< 0.3.6-2.3), + gcin (<< 1.3.4-2), + gtk-qt-engine (<< 1:0.8~svn-rev36-1), + iiimf-client-gtk (<< 12.3.91-4), + libginspx0 (<< 20050529-1.1), + scim-bridge-client-gtk (<< 0.4.10-1.1), + iiimgcf (<= 11.4.1870-7), + libwxgtk2.6-0 (<< 2.6.3.2.2-1), + glabels (<< 2.1.3-3), + libeel2-2.18, + xfwm4 (<< 4.4.1-3), + metacity (<< 1:2.20.0-1) +Replaces: libgtk2.0-0png3 +Recommends: hicolor-icon-theme, + libgtk2.0-bin +Suggests: librsvg2-common, + gvfs +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the shared libraries. + +Package: libgtk-directfb-2.0-0 +Section: libs +Architecture: any +Depends: libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends} +Conflicts: libgtk+2.0-directfb0 +Description: The GTK+ graphical user interface library - DirectFB runtime + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This version uses DirectFB, a thin library providing an integrated + windowing system and hardware acceleration on top of the Linux + framebuffer. + +Package: libgtk-directfb-2.0-0-udeb +XC-Package-Type: udeb +Section: debian-installer +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Provides: gtk2.0-binver-2.10.0 +Description: The GTK+ graphical user interface library - minimal runtime + This is a udeb, or a microdeb, for the debian-installer. + . + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the minimal runtime library using DirectFB needed + by the Debian installer. + +Package: libgtk2.0-common +Section: misc +Architecture: all +Depends: ${misc:Depends} +Recommends: libgtk2.0-0 +Replaces: libgtk1.3-common, + libgtk2.0-data +Conflicts: libgtk1.3-common, + libgtk2.0-data +Description: Common files for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the common files which the libraries need. + +Package: libgtk2.0-bin +Section: misc +Architecture: all +Depends: ${misc:Depends}, + libgtk2.0-0 (>= ${source:Version}), + libgtk2.0-common +Replaces: libgtk2.0-common (<= 2.4.0-3), + libgtk2.0-dev (<= 2.4.3-1) +Conflicts: libgtk2.0-dev (<= 2.4.3-1) +Description: The programs for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the program files which is used for the libraries + and others. + +Package: libgtk2.0-dev +Section: libdevel +Architecture: any +Depends: libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends}, + libglib2.0-dev (>= 2.19.7), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.13.0), + libcairo2-dev (>= 1.6.4-6.1), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxinerama-dev (>= 1:1.0.1-4.1), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxcursor-dev, + libxfixes-dev (>= 1:3.0.0-3), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + pkg-config, + libxml2-utils +Recommends: python (>= 2.4), + debhelper +Suggests: libgtk2.0-doc +Replaces: libgtk1.3-dev, + gtk2-engines-pixbuf (<< 2.8.18-5) +Conflicts: libgtk1.3-dev +Description: Development files for the GTK+ library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications. + +Package: libgtk-directfb-2.0-dev +Section: libdevel +Architecture: any +Depends: libgtk-directfb-2.0-0 (= ${binary:Version}), + ${misc:Depends}, + libgtk2.0-dev (= ${binary:Version}), + libgtk2.0-common, + libcairo2-dev (>= 1.6.4-6.1) +Conflicts: libgtk+2.0-directfb-dev +Description: Development files for the GTK+ library - DirectFB version + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications on top of the DirectFB + library. + +Package: libgtk2.0-0-dbg +Section: libdevel +Priority: extra +Architecture: any +Depends: libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common, + ${misc:Depends} +Conflicts: libgtk2.0-dbg +Replaces: libgtk2.0-dbg +Description: The GTK+ libraries and debugging symbols + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgtk2.0-doc +Section: doc +Architecture: all +Depends: lynx | www-browser, + ${misc:Depends} +Replaces: libgtk1.3-doc +Conflicts: libgtk1.3-doc +Recommends: libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc +Description: Documentation for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the HTML documentation for the GTK+ library + in /usr/share/doc/libgtk2.0-doc/ . + +Package: gtk2.0-examples +Section: x11 +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + libgtk2.0-0 (= ${binary:Version}) +Replaces: libgtk1.3-dev +Description: Examples files for the GTK+ 2.0 + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the examples files and a demonstration program + for the GTK+-2.0. + +Package: gtk2-engines-pixbuf +Section: graphics +Priority: optional +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common +Conflicts: gtk2.0-engines-pixbuf +Replaces: gtk2.0-engines-pixbuf +Description: Pixbuf-based theme for GTK+ 2.x + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the pixbuf theme engine. + +Package: libgail18 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgtk2.0-0 (= ${binary:Version}) +Replaces: libgail17, libgtk2.0-0 (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- shared libraries + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the shared library. + +Package: libgail-common +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgail18 (= ${binary:Version}) +Description: GNOME Accessibility Implementation Library -- common modules + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains core shared libraries. + +Package: libgail-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, + libgail18 (= ${binary:Version}), + libgail-common (= ${binary:Version}), + libgtk2.0-dev (= ${binary:Version}), + pkg-config, + libatk1.0-dev (>= 1.13.0) +Suggests: libgail-doc +Replaces: libgtk2.0-dev (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- development files + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the development files for Gail. + +Package: libgail-dbg +Architecture: any +Section: libdevel +Priority: extra +Depends: ${misc:Depends}, libgail18 (= ${binary:Version}) +Replaces: libgtk2.0-0-dbg (<< 2.14.5) +Recommends: libgtk2.0-0-dbg +Description: Gail libraries and debugging symbols + Gail is the "GNOME Accessibility Implementation Library". + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgail-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, lynx | www-browser +Replaces: libgtk2.0-doc (<< 2.14.5) +Description: documentation files of the Gail library + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the documentation files for Gail. --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-dev.preinst +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-dev.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk-directfb-2.0-dev +oldsymtarget=libgtk-directfb-2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0-dbg.prerm +++ gtk+2.0-2.17.10/debian/libgtk2.0-0-dbg.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-0-dbg +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-bin.links.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-bin.links.in @@ -0,0 +1,8 @@ +@LIBDIR@/@SHARED_PKG@/gdk-pixbuf-query-loaders usr/bin/gdk-pixbuf-query-loaders +@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-@APIVER@ usr/bin/gtk-query-immodules-@APIVER@ +@LIBDIR@/@SHARED_PKG@/gtk-update-icon-cache usr/bin/gtk-update-icon-cache +@LIBDIR@/@SHARED_PKG@/update-gtk-immodules usr/sbin/update-gtk-immodules +@LIBDIR@/@SHARED_PKG@/update-gdkpixbuf-loaders usr/sbin/update-gdkpixbuf-loaders +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@BIN_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@BIN_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@BIN_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-dev.install.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-dev.install.in @@ -0,0 +1,14 @@ +# from Debian +debian/dh_gtkmodules usr/bin +# from the shared flavor +debian/install/shared/usr/bin/gdk-pixbuf-csource usr/bin +debian/install/shared/usr/bin/gtk-builder-convert usr/bin +debian/install/shared/usr/include/gtk* usr/include +debian/install/shared/@LIBDIR@/libg?k*.la @LIBDIR@ +debian/install/shared/@LIBDIR@/libg?k*.so @LIBDIR@ +debian/install/shared/@LIBDIR@/pkgconfig/g?k* @LIBDIR@/pkgconfig +debian/install/shared/@LIBDIR@/gtk-@APIVER@/include @LIBDIR@/gtk-@APIVER@ +debian/install/shared/usr/share/aclocal usr/share +debian/install/shared/usr/share/man/man1/gdk-pixbuf-csource.1 usr/share/man/man1/ +# from the static flavor +debian/install/static/@LIBDIR@/libg?k*.a @LIBDIR@ --- gtk+2.0-2.17.10.orig/debian/libgail18.opt +++ gtk+2.0-2.17.10/debian/libgail18.opt @@ -0,0 +1,2 @@ +# from the optimised flavor +debian/install/opt/@LIBDIR@/libgail*.so.* @OPTLIBDIR@ --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-dev.prerm +++ gtk+2.0-2.17.10/debian/libgtk2.0-dev.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-dev +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.links.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.links.in @@ -0,0 +1,9 @@ +usr/share/doc/@DOC_PKG@/gdk usr/share/gtk-doc/html/gdk +usr/share/doc/@DOC_PKG@/gdk-pixbuf usr/share/gtk-doc/html/gdk-pixbuf +usr/share/doc/@DOC_PKG@/gtk usr/share/gtk-doc/html/gtk +usr/share/doc/@DOC_PKG@/faq usr/share/gtk-doc/html/gtk-faq +usr/share/doc/@DOC_PKG@/tutorial usr/share/gtk-doc/html/gtk-tutorial +usr/share/doc/libatk1.0-doc/atk usr/share/doc/@DOC_PKG@/atk +usr/share/doc/libglib2.0-doc/glib usr/share/doc/@DOC_PKG@/glib +usr/share/doc/libglib2.0-doc/gobject usr/share/doc/@DOC_PKG@/gobject +usr/share/doc/libpango1.0-doc/pango usr/share/doc/@DOC_PKG@/pango --- gtk+2.0-2.17.10.orig/debian/update-gtk-immodules.fr.8 +++ gtk+2.0-2.17.10/debian/update-gtk-immodules.fr.8 @@ -0,0 +1,36 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH UPDATE-GTK-IMMODULES 8 "13 mars 2002" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NOM +update-gtk-immodules \- Script de mise à jour de la liste des modules +GTK+ IM +.SH SYNOPSIS +.B update-gtk-immodules +.I paquet\| version +.SH DESCRIPTION +\fIupdate-gtk-immodules\fP est un script d'analyse pour la mise à jour de +/etc/gtk-2.0/gtk.immodules en utilisant \fIgtk-query-immodules-2.0\fP. +.br +\fIupdate-gtk-immodules\fP reçoit un argument et /etc/gtk-2.0/gtk.immodules sera +généré pour cette version par \fIgtk-query-immodules-2.0\fP. +.SH VOIR AUSSI +.BR gtk-query-immodules-2.0 (1) +.SH AUTEUR +Cette page de manuel a été écrite par Akira TAGOH <tagoh@debian.org>, +pour le système Debian GNU/Linux. +.SH TRADUCTION +Julien Louis <leonptitlouis@ifrance.com> --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0-dbg.links.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-0-dbg.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DEBUG_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DEBUG_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DEBUG_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/update-gdkpixbuf-loaders.8 +++ gtk+2.0-2.17.10/debian/update-gdkpixbuf-loaders.8 @@ -0,0 +1,31 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH UPDATE-GDKPIXBUF-LOADERS 8 "6 January 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +update-gdkpixbuf-loaders \- Update wrapper script for the Gdkpixbuf loaders list +.SH SYNOPSIS +.B update-gdkpixbuf-loaders +.I package\| version +.SH DESCRIPTION +\fIupdate-gdkpixbuf-loaders\fP is a wrapper script for updating /etc/gtk-2.0/gdk-pixbuf.loaders using \fIgdk-pixbuf-query-loaders\fP. +.br +\fIupdate-gdkpixbuf-loaders\fP get a argument and /etc/gtk-2.0/gdk-pixbuf.loaders for that version will be generated by \fIgdk-pixbuf-query-loaders\fP. +.SH SEE ALSO +.BR gdk-pixbuf-query-loaders (1) +.SH AUTHOR +This manual page was written by Akira TAGOH <tagoh@debian.org>, +for the Debian GNU/Linux system. --- gtk+2.0-2.17.10.orig/debian/libgail-doc.install +++ gtk+2.0-2.17.10/debian/libgail-doc.install @@ -0,0 +1 @@ +debian/install/shared/usr/share/gtk-doc/html/gail* usr/share/gtk-doc/html --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.doc-base.gtk2-tutorial +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.doc-base.gtk2-tutorial @@ -0,0 +1,18 @@ +Document: gtk2-tutorial +Title: GTK+2.0 Tutorial +Author: Tony Gale and Ian Main +Abstract: GTK+ (GIMP Toolkit) is a library for creating graphical user + interfaces. It is licensed using the LGPL license, so you can develop + open software, free software, or even commercial non-free software + using GTK+ without having to spend anything for licenses or royalties. + . + This tutorial is an attempt to document as much as possible of GTK+, + but it is by no means complete. This tutorial assumes a good + understanding of C, and how to create C programs. It would be a great + benefit for the reader to have previous X programming experience, but + it shouldn't be necessary. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/tutorial/book1.html +Files: /usr/share/doc/libgtk2.0-doc/tutorial/*.html --- gtk+2.0-2.17.10.orig/debian/libgail-doc.links +++ gtk+2.0-2.17.10/debian/libgail-doc.links @@ -0,0 +1 @@ +/usr/share/gtk-doc/html/gail-libgail-util /usr/share/doc/libgail-doc/html --- gtk+2.0-2.17.10.orig/debian/rules +++ gtk+2.0-2.17.10/debian/rules @@ -0,0 +1,391 @@ +#!/usr/bin/make -f + +# Debian GNOME Maintainers +DISABLE_UPDATE_UPLOADERS := 1 +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +# get-orig-source target +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +GNOME_MODULE := gtk+ + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +STAMP_DIR := debian/stampdir + +PATCH_DIR := debian/patches + +# rules in this debian/rules Makefile can be built concurrently as well as +# upstream rules in Makefile; all $(MAKE) invocations will inherit this flag, +# if you recurse into debian/rules ($(MAKE) +# -f debian/rules in rules), you need to pass a flag to avoid adding "-jX" when +# the childs encounters this line +DEB_BUILD_OPTIONS_PARALLEL ?= $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) +PARALLEL_FLAGS += $(if $(DEB_BUILD_OPTIONS_PARALLEL),-j$(DEB_BUILD_OPTIONS_PARALLEL)) + +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) + +# relative libdir +ifneq (,$(findstring multiarch,$(DEB_BUILD_OPTIONS))) +LIBDIR := usr/lib/$(DEB_HOST_GNU_TYPE) +else +LIBDIR := usr/lib +endif + +# ppc64 support; see #386815 +# XXX Should probably be fixed in binutils +# XXX Use LDFLAGS instead of CFLAGS? +# XXX shouldn't we check the arch instead of the CPU? +ifeq ($(DEB_BUILD_GNU_CPU),powerpc64) + CFLAGS += -mminimal-toc +endif + +# default CFLAGS; these can be expanded with $(call flavor_get, ) +CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) + +# default LDFLAGS; these can be expanded with $(call flavor_get, ) +# used to fail in directfb code -- but this might be fixed -- currently fails +# in the cups gtkprint backend +#LDFLAGS += -Wl,-z,defs + +DEBVERSION := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') +VERSION := $(shell echo $(DEBVERSION) | sed -e 's/-[^-]*$$//') +APIVER := 2.0 +SONAME := 0 +SHVER := 2.17.10 + +# earliest version that this release has backwards binary compatibility for +GTK_BINARY_VERSION := 2.10.0 + +# Gtk binary version virtual Provide +GTK_BINVER_DEP := gtk$(APIVER)-binver-$(GTK_BINARY_VERSION) + +# relative base directory for all types of modules +MODULES_BASE_PATH := $(LIBDIR)/gtk-$(APIVER)/$(GTK_BINARY_VERSION) + +# relative directory to store the generated IM module files +IMMODULE_FILES_D := $(MODULES_BASE_PATH)/immodule-files.d + +# relative directory to store the generated GdkPixbuf loader files +LOADER_FILES_D := $(MODULES_BASE_PATH)/loader-files.d + +# package names +SHARED_PKG := libgtk$(APIVER)-$(SONAME) +COMMON_PKG := libgtk$(APIVER)-common +DEV_PKG := libgtk$(APIVER)-dev +DIRECTFB_PKG := libgtk-directfb-$(APIVER)-$(SONAME) +DIRECTFB_DEV_PKG := libgtk-directfb-$(APIVER)-dev +UDEB_PKG := $(DIRECTFB_PKG)-udeb +DOC_PKG := libgtk$(APIVER)-doc +BIN_PKG := libgtk$(APIVER)-bin +DEBUG_PKG := $(SHARED_PKG)-dbg +EXAMPLES_PKG := gtk$(APIVER)-examples +PIXBUF_PKG := gtk2-engines-pixbuf + +# package groups, used in rule dependencies and in cleanup +BINARY_INDEP_PKGS := $(COMMON_PKG) $(BIN_PKG) $(DOC_PKG) libgail-doc +BINARY_ARCH_PKGS := $(SHARED_PKG) $(DIRECTFB_PKG) $(UDEB_PKG) $(DEV_PKG) $(DIRECTFB_DEV_PKG) $(DEBUG_PKG) $(EXAMPLES_PKG) $(PIXBUF_PKG) libgail18 libgail-dbg libgail-dev libgail-common +ALL_PKGS := $(BINARY_INDEP_PKGS) $(BINARY_ARCH_PKGS) + +# list of flavors we build; each gets a builddir, a configure pass (configure +# args are defined below), a build pass, and an install pass (in two steps) +# Note: the shared flavor is required +FLAVORS := directfb shared static + +# optional optimized flavor for some arches +OPTLIBDIR := +# VFP opt flavor on armel +ifneq ($(filter $(DEB_HOST_ARCH), armel),) +FLAVORS += opt +OPTLIBDIR := $(LIBDIR)/vfp +opt_CFLAGS += $(CFLAGS) -mfpu=vfp -mfloat-abi=softfp +endif + +# list of flavors to run the test suite on +CHECK_FLAVORS := $(filter directfb opt shared static, $(FLAVORS)) +# don't run the directfb testsuite on kfreebsd as it hangs; see #431477 +ifeq ($(DEB_HOST_ARCH_OS), kfreebsd) +CHECK_FLAVORS := $(filter-out directfb, $(CHECK_FLAVORS)) +endif + +# current flavor we're building; this is only expanded in flavor specific +# targets +current_flavor = $* + +# macro to get a value for the current flavor we're building; for example +# when building the shared flavor, $(call flavor_get,GFLAGS) will expand to +# shared_CFLAGS if it's set or to CFLAGS otherwise; pay attention to not adding +# superflous spaces when for the arguments of $(call ); only some vars can +# be expanded in this way though +flavor_get = $(or $($(current_flavor)_$(1)),$($(1))) + +# build dir for the current flavor; this is only expanded in flavor specific +# targets +builddir = $(buildbasedir)/$(current_flavor) +buildbasedir = $(CURDIR)/debian/build + +# install dir for the current flavor; this is only expanded in flavor specific +# targets +installdir = $(installbasedir)/$(current_flavor) +installbasedir = $(CURDIR)/debian/install + +# configure flags +configure_flags := \ + --prefix=/usr \ + --libdir=/$(LIBDIR) \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --sysconfdir=/etc \ + --enable-test-print-backend \ + --build=$(DEB_BUILD_GNU_TYPE) +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + configure_flags += --host=$(DEB_HOST_GNU_TYPE) +endif + +shared_configure_flags := $(configure_flags) \ + --with-xinput=yes \ + --enable-shared \ + --disable-static \ + --with-libjasper +opt_configure_flags := $(shared_configure_flags) +static_configure_flags := $(configure_flags) \ + --with-xinput=yes \ + --with-included-loaders=yes \ + --disable-modules \ + --disable-shared \ + --enable-static --with-libjasper +directfb_configure_flags := $(configure_flags) \ + --with-xinput=no \ + --enable-shared \ + --disable-static \ + --enable-explicit-deps=yes \ + --with-gdktarget=directfb + +DH_INSTALLDOCS_FILES := NEWS README ChangeLog + +# macro computing the list of 'debian/<pkg>.*" files which have a corresponding +# ".in" file; pass the list of packages in $(1) +dh_subst_files = $(patsubst %.in,%,$(wildcard $(addprefix debian/, $(addsuffix *.in, $(1))))) + +# Gruik gruik generation of .devhelp files for the FAQ and tutorial +debian/gtk-%.devhelp: docs/%/html/book1.html + gawk -f debian/gruik2devhelp.awk -v name=gtk-$* $< > $@ +devhelpfiles: debian/gtk-faq.devhelp debian/gtk-tutorial.devhelp + +debian/dh_gtkmodules.1: debian/dh_gtkmodules + cd debian && pod2man -c "Gtk" -r "$(DEBVERSION)" dh_gtkmodules dh_gtkmodules.1 + +patch: $(STAMP_DIR)/patch-stamp + +$(STAMP_DIR)/patch-stamp: + dh_testdir + mkdir $(STAMP_DIR) + # apply patches + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null push -a || test $$? = 2 + # backup the original files to restore them in the clean target + -test -r config.sub && cp config.sub config.sub.orig + -test -r config.guess && cp config.guess config.guess.orig + -test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub + -test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess + touch $@ + +$(STAMP_DIR)/configure-stamp-%: $(STAMP_DIR)/patch-stamp + dh_testdir + mkdir -p $(builddir) + cd $(builddir) && \ + CFLAGS="$(call flavor_get,CFLAGS)" \ + LDFLAGS="$(call flavor_get,LDFLAGS)" \ + $(CURDIR)/configure $(call flavor_get,configure_flags) + touch $@ + +configure: $(addprefix $(STAMP_DIR)/configure-stamp-, $(FLAVORS)) + +$(STAMP_DIR)/build-stamp-%: $(STAMP_DIR)/configure-stamp-% + dh_testdir + LD_LIBRARY_PATH=$(builddir)/gdk-pixbuf/.libs:$(builddir)/gtk/.libs:$(builddir)/gdk/.libs:$(LD_LIBRARY_PATH) \ + $(MAKE) $(PARALLEL_FLAGS) -C $(builddir) + touch $@ + +build: $(addprefix $(STAMP_DIR)/build-stamp-, $(FLAVORS)) + +$(STAMP_DIR)/check-stamp-%: $(STAMP_DIR)/build-stamp-% + dh_testdir + # setting LD_LIBRARY_PATH for "make check" might be needed in the + # future, but doesn't seem necessary right now + #LD_LIBRARY_PATH=$(builddir)/gdk-pixbuf/.libs:$(builddir)/gtk/.libs:$(builddir)/gdk/.libs:$(LD_LIBRARY_PATH) + # testsuite failures are ignored + -$(MAKE) $(PARALLEL_FLAGS) -C $(builddir) check + touch $@ + +check: $(addprefix $(STAMP_DIR)/check-stamp-, $(CHECK_FLAVORS)) + +$(STAMP_DIR)/install-stamp-%: $(STAMP_DIR)/build-stamp-% + mkdir -p $(installdir) + $(MAKE) $(PARALLEL_FLAGS) -C $(builddir) install \ + DESTDIR=$(installdir) + touch $@ + +install: $(addprefix $(STAMP_DIR)/install-stamp-, $(FLAVORS)) + # Add necessary dependencies for the static build to Libs.private + a=$$(grep ^Libs: $(installbasedir)/shared/$(LIBDIR)/pkgconfig/gdk-pixbuf-2.0.pc) ; \ + b=$$(grep ^Libs: $(installbasedir)/static/$(LIBDIR)/pkgconfig/gdk-pixbuf-2.0.pc) ; \ + c=$$(for i in $$b; do echo $$a| grep -q -e $$i || echo $$i; done) ; \ + echo Libs.private: $$c >> $(installbasedir)/shared/$(LIBDIR)/pkgconfig/gdk-pixbuf-2.0.pc + +# gross kludge to force control generation with the %.in target +clean:: + touch debian/control.in + +debian/%: debian/%.in + dh_testdir + sed \ + -e "s#@SONAME@#$(SONAME)#g" \ + -e "s#@APIVER@#$(APIVER)#g" \ + -e "s#@VERSION@#$(VERSION)#g" \ + -e "s#@GTK_BINVER_DEP@#$(GTK_BINVER_DEP)#g" \ + -e "s#@SHARED_PKG@#$(SHARED_PKG)#g" \ + -e "s#@COMMON_PKG@#$(COMMON_PKG)#g" \ + -e "s#@DEV_PKG@#$(DEV_PKG)#g" \ + -e "s#@DIRECTFB_PKG@#$(DIRECTFB_PKG)#g" \ + -e "s#@DIRECTFB_DEV_PKG@#$(DIRECTFB_DEV_PKG)#g" \ + -e "s#@UDEB_PKG@#$(UDEB_PKG)#g" \ + -e "s#@DOC_PKG@#$(DOC_PKG)#g" \ + -e "s#@BIN_PKG@#$(BIN_PKG)#g" \ + -e "s#@DEBUG_PKG@#$(DEBUG_PKG)#g" \ + -e "s#@EXAMPLES_PKG@#$(EXAMPLES_PKG)#g" \ + -e "s#@PIXBUF_PKG@#$(PIXBUF_PKG)#g" \ + -e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \ + -e "s#@GTK_BINARY_VERSION@#$(GTK_BINARY_VERSION)#g" \ + -e "s#@LIBDIR@#$(LIBDIR)#g" \ + -e "s#@OPTLIBDIR@#$(OPTLIBDIR)#g" \ + -e "s#@MODULES_BASE_PATH@#$(MODULES_BASE_PATH)#g" \ + $@.in \ + $(wildcard $(if $(filter opt,$(FLAVORS)),$@.opt)) \ + > $@ + +clean:: debian/control + dh_testdir + dh_testroot + # remove install and build dirs + rm -rf $(installbasedir) + rm -rf $(buildbasedir) + # restore files from backup (before unpatching) + -test -r config.sub.orig && mv -f config.sub.orig config.sub + -test -r config.guess.orig && mv -f config.guess.orig config.guess + # unapply patches, if any + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null pop -a -R || test $$? = 2 + -rm -rf .pc + rm -f debian/*.devhelp + -rm -rf $(STAMP_DIR) + -rm -f $(call dh_subst_files,$(ALL_PKGS)) + -rm -f debian/update-gdkpixbuf-loaders debian/update-gtk-immodules debian/dh_gtkmodules debian/dh_gtkmodules.1 + dh_clean + +maybe_check = $(if $(findstring nocheck,$(DEB_BUILD_OPTIONS)),,check) + +binary-indep: build $(maybe_check) install $(call dh_subst_files,$(BINARY_INDEP_PKGS)) devhelpfiles + dh_testdir + dh_testroot + dh_install -i + # changelog.gz symlinks will be overwritten by dh_link + dh_installchangelogs -i ChangeLog + # do not merge the calls: dh_installdocs will only install some files + # in the first package + dh_installdocs -p$(COMMON_PKG) $(DH_INSTALLDOCS_FILES) + dh_installdocs -p$(DOC_PKG) $(DH_INSTALLDOCS_FILES) + # install copyright in all packages; the -p is for the special behavior + # of dh_installdocs (ship README.Debian etc. in the first package) + dh_installdocs -p$(COMMON_PKG) -i + dh_installman -i + dh_link -i + dh_compress -i -X.sgml -X.devhelp + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build $(maybe_check) install $(call dh_subst_files,$(BINARY_ARCH_PKGS)) debian/update-gdkpixbuf-loaders debian/update-gtk-immodules debian/dh_gtkmodules debian/dh_gtkmodules.1 + dh_testdir + dh_testroot + dh_install -s + # empty the dependency_libs in the *.la files + sed -i "/dependency_libs/ s/'.*'/''/" debian/$(DEV_PKG)/$(LIBDIR)/*.la + # we don't need the rpath in the udeb + chrpath -d debian/$(UDEB_PKG)/$(LIBDIR)/*directfb*.so.* + # fix permissions of binaries below /$(LIBDIR)/$(SHARED_PKG) + for f in update-gdkpixbuf-loaders update-gtk-immodules; do \ + chmod 755 debian/$(SHARED_PKG)/$(LIBDIR)/$(SHARED_PKG)/$$f; \ + done + # changelog.gz symlinks will be overwritten by dh_link + dh_installchangelogs -s ChangeLog + # do not merge the calls: dh_installdocs only installs in the first pkg + dh_installdocs -p$(EXAMPLES_PKG) $(DH_INSTALLDOCS_FILES) + dh_installdocs -p$(PIXBUF_PKG) $(DH_INSTALLDOCS_FILES) + # install copyright in all packages; the -p is for the special behavior + # of dh_installdocs (ship README.Debian etc. in the first package) + dh_installdocs -p$(PIXBUF_PKG) -s + dh_installman -s + # fix the permissions of the development package because it ships + # dh_gtkmodules which we need to invoke in this build + dh_fixperms -p$(DEV_PKG) + # generate a dependency on the Gtk binary version + debian/$(DEV_PKG)/usr/bin/dh_gtkmodules -p$(PIXBUF_PKG) + # generate an IM module file and a GdkPixbuf loader file for the shared + # library + LD_LIBRARY_PATH=debian/$(SHARED_PKG)/$(LIBDIR):$(LD_LIBRARY_PATH) \ + GTK_QUERYLOADERS=$(installbasedir)/shared/usr/bin/gdk-pixbuf-query-loaders \ + GTK_QUERYIMMODULES=$(installbasedir)/shared/usr/bin/gtk-query-immodules-2.0 \ + debian/$(DEV_PKG)/usr/bin/dh_gtkmodules \ + -k \ + -p$(SHARED_PKG) + # generate a GdkPixbuf loader config file for the udeb + LD_LIBRARY_PATH=debian/$(UDEB_PKG)/$(LIBDIR):$(LD_LIBRARY_PATH) \ + GTK_QUERYLOADERS=$(installbasedir)/directfb/usr/bin/gdk-pixbuf-query-loaders \ + debian/$(DEV_PKG)/usr/bin/dh_gtkmodules \ + -k \ + -p$(UDEB_PKG) + dh_installexamples -s + dh_link -s + dh_strip -s --dbg-package=$(DEBUG_PKG) -N$(UDEB_PKG) -Nlibgail18 -Nlibgail-common + dh_strip -plibgail18 -plibgail-common --dbg-package=libgail-dbg + dh_strip -p$(UDEB_PKG) + dh_compress -s -X.sgml -X.devhelp + dh_fixperms -s -X$(LIBDIR)/$(SHARED_PKG) + dh_makeshlibs -p$(SHARED_PKG) \ + -X$(MODULES_BASE_PATH) \ + -V"$(SHARED_PKG) (>= $(SHVER))" \ + --add-udeb=$(UDEB_PKG) + dh_makeshlibs -p$(DIRECTFB_PKG) \ + -X$(MODULES_BASE_PATH) \ + -V"$(DIRECTFB_PKG) (>= $(SHVER))" \ + --add-udeb=$(UDEB_PKG) + dh_makeshlibs -plibgail18 \ + -X$(MODULES_BASE_PATH) \ + -V"libgail18 (>= $(SHVER)), libgail-common (>= $(SHVER))" + dh_installdeb -s + # override shlibs for libraries from this source before computing + # dependencies of packages generated from this source; we already have + # inter-dependencies expressed manually in the control file, we do not + # need the shlibs to add duplicates + cat debian/*/DEBIAN/shlibs | \ + sed -n -r -e 's/(([^ ]+: )?([^ ]+) ([^ ]+)) .*/\1/p' \ + > debian/shlibs.local + dh_shlibdeps + -rm -f debian/shlibs.local + dh_gencontrol -s + dh_md5sums -s + dh_builddeb -s + +list-missing: + perl -w debian/dh_listmissing.pl $(foreach f,$(FLAVORS),$(subst $(CURDIR)/,,$(installbasedir))/$(f)) 2>&1 | \ + egrep -v '(\.la|$(LIBDIR)/gtk-2.0/$(GTK_BINARY_VERSION)/[^/]+/[^/]+\.a) has been installed' >&2 + +binary: binary-indep binary-arch +.PHONY: patch configure build check install clean binary-indep binary-arch list-missing binary devhelpfiles --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-0.links.in +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-0.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DIRECTFB_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DIRECTFB_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DIRECTFB_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.doc-base.gdk-pixbuf +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.doc-base.gdk-pixbuf @@ -0,0 +1,12 @@ +Document: gdk-pixbuf +Title: GDK-pixbuf Reference Manual +Author: Federico Mena Quintero +Abstract: The GDK-pixbuf library is used to manipulate images and + other image-like objects, similar to the imlib library. GDK and + GTK+ use it for image storage and manipulation. This document + covers programming using this library. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/gdk-pixbuf/index.html +Files: /usr/share/doc/libgtk2.0-doc/gdk-pixbuf/*.html --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-doc.doc-base.gtk.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-doc.doc-base.gtk.in @@ -0,0 +1,11 @@ +Document: gtk +Title: GTK+ Reference Manual +Author: Damon Chaplin et al. +Abstract: The GTK+ library provides a graphical user interface for + C programs, and is used in projects such as GIMP, GNOME, and Mozilla. + This document covers programming using the GTK+ library. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/@DOC_PKG@/gtk/index.html +Files: /usr/share/doc/@DOC_PKG@/gtk/*.html --- gtk+2.0-2.17.10.orig/debian/update-gdkpixbuf-loaders.in +++ gtk+2.0-2.17.10/debian/update-gdkpixbuf-loaders.in @@ -0,0 +1,28 @@ +#!/bin/sh + +# this script is a no-op since 2.10.3-2 +exit 0 + +set -e + +VERSION="@VERSION@" +APIVER="@APIVER@" +SHARED_PKG="@SHARED_PKG@" +TMPFILE=$(mktemp -t "gtk+$APIVER-$VERSION.XXXXXXXXXX") + +echo -n "Updating the gdk-pixbuf loaders list for Gtk+ $VERSION..." +"/@LIBDIR@/$SHARED_PKG/gdk-pixbuf-query-loaders" > $TMPFILE +if [ "x`cat "$TMPFILE" | grep -v '^#'`" = "x" ]; then + echo "no gdk-pixbuf loader found." +else + echo "done." +fi +if ! test -d "/etc/gtk-$APIVER"; then + echo -n "Creating /etc/gtk-$APIVER..." + mkdir "/etc/gtk-$APIVER" + echo "done." +fi +cp "$TMPFILE" "/etc/gtk-$APIVER/gdk-pixbuf.loaders" +chmod 644 "/etc/gtk-$APIVER/gdk-pixbuf.loaders" + +rm -f "$TMPFILE" --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-dev.links.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-dev.links.in @@ -0,0 +1,3 @@ +usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DEV_PKG@/changelog.gz +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DEV_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DEV_PKG@/README.gz --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-0-udeb.install.in +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-0-udeb.install.in @@ -0,0 +1,3 @@ +# from the directfb flavor +debian/install/directfb/@MODULES_BASE_PATH@/loaders/libpixbufloader-png.so @MODULES_BASE_PATH@/loaders +debian/install/directfb/@LIBDIR@/libg?k*.so.* @LIBDIR@ --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0-dbg.preinst +++ gtk+2.0-2.17.10/debian/libgtk2.0-0-dbg.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-0-dbg +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/dh_listmissing.pl +++ gtk+2.0-2.17.10/debian/dh_listmissing.pl @@ -0,0 +1,79 @@ +#!/bin/false /usr/bin/perl -w +# shebang disabled while this script resides in debian/ + +# similar to dh_install; needs some documentation + +use strict; +use File::Find; +use Debian::Debhelper::Dh_Lib; + +init(); + +# list of sourcedirs +my @sourcedirs = @ARGV; + +my @installed; + +my $srcdir = '.'; + +# dh_install code, but not doing any installation, just building @installed +# and stripping sourcedirs from these +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + my $file=pkgfile($package,"install"); + + my @install; + if ($file) { + @install=filedoublearray($file); # no globbing yet + } + + # Support for -X flag. + my $exclude = ''; + if ($dh{EXCLUDE_FIND}) { + $exclude = '! \( '.$dh{EXCLUDE_FIND}.' \)'; + } + + foreach my $set (@install) { + if (! defined $dh{AUTODEST} && @$set > 1) { + pop @$set; + } + foreach my $src (map { glob "$srcdir/$_" } @$set) { + next if excludefile($src); + + # strip source dir + foreach my $d (@sourcedirs) { + $src=~s/^\Q$srcdir\E\/\Q$d\E\///; + } + + # Keep track of what's installed. + # Kill any extra slashes. Makes the @installed stuff more robust. + $src=~y:/:/:s; + $src=~s:/+$::; + $src=~s:^(\./)*::; + push @installed, "\Q$src\E\/.*|\Q$src\E"; + } + } +} + +# dh_install code, but stripping sourcedirs +my @missing; +my $installed=join("|", @installed); +$installed=qr{^($installed)$}; +find(sub { + -f || -l || return; + $_="$File::Find::dir/$_"; + foreach my $d (@sourcedirs) { + s/^\Q$d\E\///; + } + if (! /$installed/ && ! excludefile($_)) { + my $file=$_; + push @missing, $file; + } +}, @sourcedirs); +if (@missing) { + warning "$_ has been installed upstream but is not in any package" foreach @missing; + if ($dh{FAIL_MISSING}) { + error("missing files, aborting"); + } +} + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-common.install +++ gtk+2.0-2.17.10/debian/libgtk2.0-common.install @@ -0,0 +1,3 @@ +# from the shared flavor +debian/install/shared/usr/share/locale usr/share +debian/install/shared/usr/share/themes usr/share --- gtk+2.0-2.17.10.orig/debian/changelog +++ gtk+2.0-2.17.10/debian/changelog @@ -0,0 +1,3016 @@ +gtk+2.0 (2.17.10-0ubuntu1) karmic; urgency=low + + * New upstream version: + Client-side windows: + - Regression fixes continue + - Multiple clipping issues have been fixed + - gdk_window_beep() works again + - gtk-demo now has a few offscreen window demos + GSEAL: + - Several more getters and setters have been added: + gtk_widget_is_toplevel(), gtk_widget_is_drawable(), gtk_widget_set_window() + Bugs fixed: + 592752 aisleriot card drag start makes card appear behind... + 592901 Crash in JPEG pixbuf loader instead of error + 592263 redraw problem in text view + 593011 Cannot move applet with middle click (lp: #399031, #404790) + 592624 BadAccess from gdk_window_x11_set_events + 592606 Activate the default button in a respose-request callback + 593249 emacs and acroread don't work properly + 592883 Spin cell rendererer problem with double click + 588199 GtkTreeView rendering glitch while using a default... + 543310 set_enable_tree_lines doesn't work when a cellrenderer... + 589636 csw broke DND from panel menus + 593595 broken clip handling in GtkLabel + 590921 NULL should not be a valid return value for gdk_window_new + 590861 cups_printer_create_cairo_surface() sets a fallback resolution... + 544724 delete new line requires two keystrokes + 593001 Emit 'update-custom-widget' on page setup change + 593317 gtkwindow leaks startup ID + 593080 mem leak + 593481 GtkEntryCompletion action-activated signal is emitted... + 593135 gtk_entry_set_icon_from_pixbuf only works one time + 593012 configure doesn't handle --enable-{cups,papi} correctly + 592862 There is a misprint on the returning value of gdk_pixmap_lookup + 586466 GtkPrintOperation printing fails if it is the only event source + 434318 printer detail acquisition needs events + 593712 configure fails to to check properly for cups... + - Translation updates + * debian/rules: + - updated shlib version + + -- Sebastien Bacher <seb128@ubuntu.com> Tue, 01 Sep 2009 18:39:11 +0200 + +gtk+2.0 (2.17.9-0ubuntu1) karmic; urgency=low + + * New upstream release: (LP: #419586) + 2.17.9 + - Client-side windows: + - Add a compatibility mode that falls back to always using native windows, + triggered by the GDK_NATIVE_WINDOWS environment variable + - Bugs fixed: + - 589367 gedit crashed with SIGSEGV in IA__g_list_last() + - 478519 GtkTooltip segfaults on NULL gdk-display-current-tooltip. + - 592461 preserve errno and use g_strerror + - 592403 crash when close the second terminal... + - 591549 Default printer in a network + - 526149 GtkCellRendererAccel editing conflicts with mnemonics + - 528283 Problems when using PageUp & PageDown to navigate Playlists pane + 2.17.8 + - Client-side windows: + - Various fixes to expose handling + - Fix memory leaks + - Minor API additions: + - New setter as part of the GSEAL effort: gtk_widget_set_allocation + - Bugs fixed: + - 585211 Add accessor function for GtkWidget->allocation + - 588437 gtk 2.17.3 causes dragging in firefox bookmarks sidebar t... + - 589367 gedit crashed with SIGSEGV in IA__g_list_last() + - 589877 Client side windows leak gdk regions + - 590959 Set child_has_focus flag properly + - 591432 There is incomplete information on the returning value of... + - 591434 firefox-3.5 crashed with SIGSEGV in _gdk_window_process_u... + - 591526 Accelerator keys with <super> modifier also triggered by ... + - 591751 bad memory access with duplicated id + - 591998 Support silent build rules with automake 1.11 + - 592003 Shift+click should always modify selection + * debian/control.in: + - Add BZR link + * debian/watch: + - Watch for unstable versions + * debian/patches/090_git_change_fix_gdk_crash.patch: + - Applied upstream + * debian/patches/001_static-linking-dont-query-immodules.patch: + * debian/patches/003_gdk.pc_privates.patch: + * debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch: + * debian/patches/009_gtk-export-filechooser.patch: + * debian/patches/010_gdkpixbuf_-lm.patch: + * debian/patches/021_loader-files-d.patch: + * debian/patches/022_module-files-append-compat-module-files-d.patch: + * debian/patches/041_ia32-libs.patch: + * debian/patches/042_treeview_single-focus.patch: + * debian/patches/061_use_pdf_as_default_printing_standard.patch: + * debian/patches/062_correct_manpages_install.patch: + * debian/patches/070_mandatory-relibtoolize.patch: + - Updated + + -- Robert Ancell <robert.ancell@canonical.com> Mon, 31 Aug 2009 09:04:57 +0200 + +gtk+2.0 (2.17.7-0ubuntu3) karmic; urgency=low + + * debian/patches/090_git_change_fix_gdk_crash.patch: + - git change to fix a lot of gdk crashes in firefox and gedit for example + (lp: #404423, #401934) + + -- Sebastien Bacher <seb128@ubuntu.com> Fri, 14 Aug 2009 11:52:00 +0200 + +gtk+2.0 (2.17.7-0ubuntu2) karmic; urgency=low + + * Clean a change file in the diff.gz + + -- Sebastien Bacher <seb128@ubuntu.com> Wed, 12 Aug 2009 13:09:51 +0200 + +gtk+2.0 (2.17.7-0ubuntu1) karmic; urgency=low + + * New upstream version: + - Client-side windows: a number of regressions related to embedding + have been fixed + - Printing: The file backend supports SVG output + - Minor API additions: + - GtkIconView gained an icon-padding property that can be used to fine-tune + how much space each column needs + - GtkTreeViewColumn grew a sort-column-id property that can be used to set + up sort columns in GtkBuilder files + - GdkWindow gained a cursor property and associated getter + - GtkFileChooser has a create-folders property to allow disabling the + "New Folder" button + - gtk_print_operation_get_n_pages_to_print: returns the number of pages + that are being printed + - New getters and setters as part of the GSEAL effort: + gtk_widget_get_allocation, gtk_widget_get_visible, gtk_widget_set_visible + - Bugs fixed: + 589336 Add GtkTreeViewColumn:sort-column-id property + 534462 Disable interactive search in the file chooser's shortcuts pane + 161489 n the file chooser, let the left/right arrow keys switch focus... + 514260 Better filtering for "Recently Used" files + 509650 ATK_STATE_SHOWING state is not set properly on menu items + 586374 code does not follow documentation (-> carshes when using... + 590442 csw broke gvim x11 embedding + 498010 gtk_tree_view_set_cursor fails if model!=NULL + 555109 Synthesized crossing events should have proper coordinates + 570516 Can't disable folder creation + 573321 additional check in gtk_tree_model_filter_convert_child_i... + 576601 Double clicking prints to the wrong printer + 586100 ITEM_PADDING breaks vertical icon views + 588438 awn uses 100% cpu with gtk+ 2.17.3 (lp: #398008) + 589732 behavior change of gdk_window_get_type_hint + 589745 Apply message in GtkAssistant + 590084 print to FILE with multiple pages per sheet has bad results + 590086 configure.in is broken on non-X platforms + 590309 Default cover pages for CUPS printers incorrectly set + 590448 [win32] build fails because gdk-pixbuf manges a path + 590959 Set child_has_focus flag properly + 591288 compat problem with draw_drawable being NULL + 539377 Unnecessary warnings when GtkTreeView is not realized. + 546005 priv->tree is not created for unrealized (I think) treeview + 564695 Pressing enter key in print to file "Name" box does not p... + 591218 Remove some unused variables + 357655 "Print to SVG file" for GtkPrintOperation + 591462 gdk_window_set_cursor doesn't work on the root window + - Updated translations + * debian/patches/092_bugzilla_fix_gdm_refresh_issue.patch: + - dropped, the bug is fixed in the new version now + * debian/patches/091_directfb_build_workaround.patch: + - dropped, the bug is fixed in the new version now + * debian/rules: + - updated shlib version + + -- Sebastien Bacher <seb128@ubuntu.com> Wed, 12 Aug 2009 10:30:01 +0200 + +gtk+2.0 (2.17.6-0ubuntu2) karmic; urgency=low + + * debian/patches/092_bugzilla_fix_gdm_refresh_issue.patch: + - upstream change to workaround a gdm refresh issue + (lp: #405392) + + -- Sebastien Bacher <seb128@ubuntu.com> Sun, 09 Aug 2009 22:17:11 +0200 + +gtk+2.0 (2.17.6-0ubuntu1) karmic; urgency=low + + * New upstream version: + - Client-side windows: + - Several optimizations, such as client-side tracking of viewable windows + - Clipping for drawing pixbufs on windows has been fixed + - Rendering to large subwindows has been fixed + - Changes that are relevant for translators: + - Markup has been removed from several strings + - Bugs fixed: + 588398 Leak with testgtk::preview_(color|gray) and more + 588943 set correct selection before emitting cursor-changed... + 588076 Gnumeric fonts stopped working on upgrading gtk+ 2.17.2 -... + 574674 GtkMenuItem gets Selected and Focused states when SelectC... + 582674 Menu item and menu accessibles retain "showing" state aft... + 588553 [csw] gdk_draw_pixbuf doesnt draw outside expose events s... + (lp: #398905) + 588897 Strange include x11/gdkx.h + 588958 Typo in startup-id window property + 589035 Context needed for a propoer translation + 589275 [csw] Trying to destroy NULL regions (lp: #402118) + 588964 Remove markup from translatable string in gtkfilechooserd... + 587337 Suggest to use Glade instead gtk-builder-convert script + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 27 Jul 2009 11:04:02 +0200 + +gtk+2.0 (2.17.5-0ubuntu1) karmic; urgency=low + + * New upstream version: + - Client-side windows: + - Quite a few fixes have happened for the win32 and directfb backends + - GSEAL: + - Accessors have been added for sealed members in GtkCellRenderer and + GtkWidget + - Changes that are relevant for distributors: + - The jpeg2000 pixbuf loader is now optional. Pass --with-libjasper + to configure to build it + - Bugs fixed + 588373 Menus broken by client-side-windows + 588379 testgtk::panes does not change the cursor on mouse over + 588388 shape rendering is back + 588461 gtk_editable_get_chars() behaviour change in 2.17.4 + 588666 Incorrect clamping of max_length + 588665 insert-text signal is not emitted + 588395 Crash when opening a GtkBuilder file + 524066 Mandatory jpeg2000? + 527583 GtkAssistant should set buttons as default widget + 588694 Missing % in C code + 588484 Iconview DnD fails when Destination is empty + 583522 Trivial error in GtkBuilder migration documentation + 150951 collapsed save dialog needs to indicate filesystem... + - Updated translations + * debian/patches/070_mandatory-relibtoolize.patch: + - new version update + debian/patches/091_directfb_build_workaround.patch: + - there is still one change required there + * debian/patches/092_git_fix_gtkentry_get_chars.patch, + debian/patches/093_git_fix_single_include_error.patch: + - those isses are fixed in the new version + * debian/rules: + - updated shlib version + - use the libjasper configure option + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 20 Jul 2009 16:19:08 +0200 + +gtk+2.0 (2.17.4-0ubuntu2) karmic; urgency=low + + * debian/patches/092_git_fix_gtkentry_get_chars.patch: + - git change to fix an issue with gtk_entry_get_chars (lp: #398849) + * debian/patches/093_git_fix_single_include_error.patch: + - git change to not enforce single include for gtkentry + * debian/rules: + - updated shlibs version + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 13 Jul 2009 19:47:54 +0200 + +gtk+2.0 (2.17.4-0ubuntu1) karmic; urgency=low + + * New upstream version: + - GtkEntry now has model-view separation, with GtkEntryBuffer. + One intended use case for this is to support 'secure memory' + for password entries. + - The print dialog can now optionally include the page setup + controls, avoiding the need for a separate page setup dialog + in many applications. + - Coloring of visited links in GtkLabel can now be turned off, with + the ::track-visited-links property. + - Support for clipmasks in gdk_draw_pixbuf now works, this will + introduce visual changes in code that uses clipmasks when drawing + pixbufs. However, since this never worked that is unlikely to happen. + Old code using gdk_pixbuf_render_threshold_alpha masks when rendering + pixbufs will now produce truncated results at the edges. + - A number of regressions from the client-side window merge have been fixed. + - The directfb GDK backend has been fixed to build with csw. + Bugs fixed: + 569393 gtk calendar localization YM note is wrong + 587559 Popup closes immediately + 551409 Print dialog should include page size and orientation + 588115 gvim clipboard broken + * debian/patches/090_directfb_csw_build.patch: + - the change is in the new version + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 13 Jul 2009 10:26:39 +0200 + +gtk+2.0 (2.17.3-0ubuntu1) karmic; urgency=low + + * New upstream version: + GtkFileChooser: + - Shows the size column by default now + GtkStatusIcon: + - Has a title property, which can be used by ATs when they read status icons + GtkInfoBar: + - The default theme now includes color definitions for infobars + - The ::use-tooltip-style style property has been removed + GtkMountOperation now supports interaction during unmount operations. + The client-side windows branch has been merged; GDK now maintains + its own window hierarchy client-side, and only uses X windows where + unavoidable. Some of the benefits of this change are + - Reduced flicker + - The ability to do transformed and animated rendering of widgets + - Easier embedding of GTK+ widgets e.g. into Clutter scene graphs + This is a fundamental change to the way GDK works, + so watch out for regressions. + Bugs fixed: + 586315 Crash in GTK+ 2.14 when calling gtk.FileChooser.list_shor... + 461944 pressing the volume icon in full screen shuts down the sound + (lp: #137041) + 490724 iconview item's height would be changed event with same m... + 564063 regression: Left margin in popup menus + 582025 Accelerators fail for submenus + 585626 Setting widget tooltip hammers X11 server on any TCP/IP X... + (lp: #386199) + 585802 Add API to make GtkStatusIcon accessible with a name + 585858 right-click Add-to-Booksmarks is sometimes greyed out + 586330 GtkButton ignores user_underline when an image is set + 318807 Offscreen windows and window redirection + 587716 GtkInfoBar broken on resize + 587485 GMountOperation::show-processes support + Updated translations + * debian/control.in: + - updated libglib requirement + * debian/patches/090_directfb_csw_build.patch: + - new patch from Cody Russel to fix the directfb build + * debian/patches/091_directfb_build_workaround.patch: + - workaround build issue + * debian/rules: + - updated shlibs version + + -- Sebastien Bacher <seb128@ubuntu.com> Thu, 09 Jul 2009 17:15:04 +0200 + +gtk+2.0 (2.17.2-0ubuntu2) karmic; urgency=low + + * Updated configure correctly + + -- Sebastien Bacher <seb128@ubuntu.com> Wed, 17 Jun 2009 00:16:13 +0200 + +gtk+2.0 (2.17.2-0ubuntu1) karmic; urgency=low + + * New upstream version: + GtkInfoBar: A new widget to show a transient 'message area' + inside a content pane. The API is similar to GtkDialog and + supports theming for different message types (warnings, errors, etc) + GtkFileChooser: + - Improve path bar by ellipsizing long names and preventing + vertical size changes + - Backup files are now hidden by default + - GTK+ remembers the file chooser sorting state now + GtkButtonBox: Implements the GtkOrientable interface now. + Printing: + - GTK+ supports printing an application-defined 'selection' now, + in addition to usual page ranges. + Changes that are relevant for theme authors: + - The new GtkInfoBar widget uses symbolic colors for theming + its background color depending on the message type. By default, + it uses the same background color as tooltips. This can be turned + off with style property. + - The GTK+ file chooser (as well as nautilus and other users of GIO + icon information) can now show different icons for xdg user dirs. + The icon names are folder-documents, folder-download, folder-music, + folder-pictures, folder-publicshare, folder-templates, folder-videos, + with an automatic fallback to the standard folder icon. + - Bugs fixed: + 584021 titchy leak + 579590 gtk_entry_set_icon_from_stock should warn when invalid st... + 584125 GtkAssistant asserts if last page is GTK_ASSISTANT_PAGE_C... + 171416 Resume editing if name of new folder is "Type name of new... + 420335 Page assignment when printing 4 pages to a sheet + 161670 Bad behaviour from gtk_file_chooser_set_filename + 327152 Long names in the FileChooserDialog directory buttons sho... + 355851 File Dialog shows Backup Files + 390312 Gtk grabs keyboard on DND + 486839 Filechooser 'Places' items should not move up and down th... + 562335 Deprecate gtk_tree_view_column_get_cell_renderers and gtk... + 565317 Resulting image of GtkCellRendererPixbuf depends on order... + 565998 configure script doesn't check for cairo-xlib.pc + 580079 Better configure detection of Xinerama on Solaris + 580511 gdk_x11_atom_to_xatom_for_display translates GDK_NONE as ... + 580560 Backspace key does not go to the parent directory + 584598 GtkButtonBox silently ignores gtk_orientable_set_orientation + 584637 Missing conditionals for X11 shape extension in GdkWindow + 584805 GtkEntryCompletion selection reset when calling gtk_entry... + 584832 Duplicate the exec string returned by gtk_recent_info_get... + 585024 some gtksettings properties need extra initialisation + 585371 Add additional sizes to the font selector + 585791 use g_*gettext instead of *gettext directly + 562579 [Patch] Remove error dialog when directory does not exist + 344519 custom print ranges + 484922 Should remember the sort state of columns + 555344 consider adding a message area widget + * debian/patches/003_gdk.pc_privates.patch: + - updated version thanks to Loïc Minier! + * debian/patches/091_workaround_no_gtk_init_incorrect_display.patch: + - the change is in the new version + + -- Sebastien Bacher <seb128@ubuntu.com> Tue, 16 Jun 2009 14:42:04 +0200 + +gtk+2.0 (2.17.0-0ubuntu1) karmic; urgency=low + + * New upstream version: + GtkBuilder: + - Scale marks can now be specified in builder markup + - GtkAssistant action widgets can be added in builder markup + Changes that are relevant for theme authors + - GtkEntry now has a ::invisible-char style property that allows + themes to set the preferred invisible character + Printing: + - GTK+ supports authentication of users against CUPS servers now. + Bugs fixed: + 578634 gtkdial example fails to compile + 580678 Minor improvement to GTK+ mediaLib code + 580511 gdk_x11_atom_to_xatom_for_display translates GDK_NONE... + 581110 Handlebox widget uses static variables, crashes in multi... + 553385 gtk-builder-convert creates untranslated combobox models + 580814 GtkTextLayout incorrectly assumes pango iterates in logi... + 579366 gtkbuilderparser leaks RequiresInfo objects + 579741 gailcombox should emit property-changed:accessible-name... + 574386 Remove deprecated call to gtk_status_icon_set_tooltip... + 384940 handle rejecting jobs and authentication meaningfully + * debian/patches/062_correct_manpages_install.patch: + - correctly install the manpage when not rebuilt + * debian/rules: + - updated shlibs version + + -- Sebastien Bacher <seb128@ubuntu.com> Tue, 02 Jun 2009 15:58:35 +0200 + +gtk+2.0 (2.16.1-0ubuntu3) karmic; urgency=low + + * Add missing backslash after --enable-print-backend which cause the --host + and --build args to be ignored and hence the wrong triplet to be used. + + -- Loic Minier <lool@dooz.org> Sun, 10 May 2009 19:34:06 +0200 + +gtk+2.0 (2.16.1-0ubuntu2) jaunty; urgency=low + + * Set $(opt_configure_flags) to $(shared_configure_flags) for the vfp flavor + to pick exactly the same options. + + -- Loic Minier <lool@dooz.org> Wed, 15 Apr 2009 00:48:15 +0200 + +gtk+2.0 (2.16.1-0ubuntu1) jaunty; urgency=low + + * New upstream version: + GtkBuilder: + - Accessible action names can now be marked as translatable. + - gtk-builder-convert correctly handles response ids in all dialogs. + - gtk-builder-convert warns about duplicate ids. + GDK: + - GDK no longer refuses to work on 30-bit visuals + Win32: + - The appearance of GTK+ menus on Vista has been improved. + Bugs fixed: + 575700 Crash when moving a GtkWindow + 574283 unused assignment and dead code in gtk_widget_set_tooltip_window + 538840 [Win32] GTK menu theming could be improved + 576254 <object> requires attribute "id" + 576306 gdkscreen.c: get_nearest_monitor too simple... + 437533 Implement draw_shape PangoRenderer method + 577224 crash when setting new icon after setting icon... + 576150 Doc bug for GtkMenuPositionFunc + 562863 GtkVscrollbar is hardly documented + 575644 Cygwin gail build patch + 571374 Add 30-bit visuals to the list of supported depths + 577650 gtkitemfactory.h fails to compile + 578094 ProcessIdToSessionId needs to be declared as WINAPI + 518642 Custom tags and translatable content + 532858 segv setting GBoxed subclass <property> + 557629 Response ID not converted for GtkFileChooserDialog + 577789 about dialogue doesn't linkify licence text + 577824 empathy_chat_window_init: GClosure is leaked + 577964 Page Range entry is not accessible + 578221 Assertion warning `GTK_IS_TEXT_LAYOUT (layout)' failed + 578271 PageSetup should be sent to the previewer + 578276 gtk-builder-convert improperly converts GtkComboBox + 578290 two memory leaks + 578354 Memory leak in gdkscreen-x11 + 578365 GtkMountOperation does not allow passwordless mount of sf... + 578366 file descriptor leak + 573922 Using NET_WM_USER_TIME even if startup notification times... + 561345 Title of Print Preview window should not be previewXXXXXX... + 577868 about dialogue changes appearance on style-set (change th... + 572797 GtkCellRendererAccel display string i18n in OTHER mode + * debian/patches/070_mandatory-relibtoolize.patch: + - new version update + * debian/patches/072_workaround_directfb_build.patch, + debian/patches/092_fix_printtest_include.patch, + debian/patches/093_git_change_fix_focus_issue.patch: + - the changes are in the new version + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 13 Apr 2009 12:06:09 +0200 + +gtk+2.0 (2.16.0-1ubuntu8) jaunty; urgency=low + + * Move back MODULES_BASE_PATH and friends. + + -- Loic Minier <lool@dooz.org> Fri, 10 Apr 2009 22:14:24 +0200 + +gtk+2.0 (2.16.0-1ubuntu7) jaunty; urgency=low + + * Move LIBDIR def around for OPTLIBDIR to be set properly. + + -- Loic Minier <lool@dooz.org> Fri, 10 Apr 2009 21:19:02 +0200 + +gtk+2.0 (2.16.0-1ubuntu6) jaunty; urgency=low + + * Also sed @OPTLIBDIR@. + + -- Loic Minier <lool@dooz.org> Fri, 10 Apr 2009 00:15:37 +0200 + +gtk+2.0 (2.16.0-1ubuntu5) jaunty; urgency=low + + [ Loic Minier ] + * Merge the following changes by Emmet Hikory: + + [ Emmet Hikory ] + * Port optimised flavor work by Loic Minier from pango1.0: + - Rework flavor-specific vars. + + Introduce $(flavor) which is set to $* to clarify implicit rules + + Rename common_configure_flags to configure_flags + + Introduce the flavor_get macro to use a flavor specific override or + fallback to the common defaults for make vars. + + Use $(call flavor_get, ) to retrieve configure_flags, CFLAGS, and + LDFLAGS allowing to override these per flavor. + - Add support for an optimised pass, implemented as a flavor + + Define a default OPTLIBDIR and replace it in the sed foo for %.in + files; this is like LIBDIR, but with some hwcaps extension, e.g. + usr/lib/vfp. + + Add vars to build an optimised vfp flavour for armel with + additional CFLAGS + + Add the "opt" special flavor to flavors to run the testuites on, + CHECK_FLAVORS + + Also sed and append %.opt after %.in when generating $ files from + %.in; the %.opt file is optional and only included if the opt flavor + is included. + + Add a debian/libgtk2.0-0.install.opt which lists files from the + optimised flavor to install in libgtk2.0-0. + + Add a debian/libgail18.install.opt which lists files from the + optimised flavor to install in libgail18. + + [ Loic Minier ] + * Enable VFP pass on armel; LP: #349460. + * Build-dep on autotools-dev for the config.guess / .sub updates to work. + + -- Loic Minier <lool@dooz.org> Thu, 09 Apr 2009 14:20:02 +0200 + +gtk+2.0 (2.16.0-1ubuntu4) jaunty; urgency=low + + * debian/patches/093_git_change_fix_focus_issue.patch: + - updated version which should really fix the issue (lp: #333366) + + -- Sebastien Bacher <seb128@ubuntu.com> Thu, 09 Apr 2009 10:41:37 +0200 + +gtk+2.0 (2.16.0-1ubuntu3) jaunty; urgency=low + + * debian/patches/093_git_change_fix_focus_issue.patch: + - upstream git change to fix a timestamp issue leading to get nautilus + dialog opening sometime unfocussed for example (lp: #333366) + + -- Sebastien Bacher <seb128@ubuntu.com> Wed, 08 Apr 2009 16:58:25 +0200 + +gtk+2.0 (2.16.0-1ubuntu2) jaunty; urgency=low + + * No-change rebuild to fix lpia shared library dependencies. + + -- Colin Watson <cjwatson@ubuntu.com> Thu, 19 Mar 2009 10:19:14 +0000 + +gtk+2.0 (2.16.0-1ubuntu1) jaunty; urgency=low + + * Sync on Debian + * debian/control.in: + - libgtk2.0-0 depends on libgail18 to workaround upgrade issue + - use required replaces due to different choice in intrepid and debian + * debian/rules: + - Fix the binary-arch/binary-indep targets to build + cleanly under make -j, by setting a PARALLEL_FLAGS variable and + passing it to make instead of exporting MAKEFLAGS. + + -- Sebastien Bacher <seb128@ubuntu.com> Mon, 16 Mar 2009 12:14:50 +0100 + +gtk+2.0 (2.16.0-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * Let libgtk2.0-0 suggest gvfs, as it's needed for some APIs like + gtk_show_uri. + + [ Josselin Mouette ] + * libgtk2.0-0 depends on shared-mime-info. Closes: #518090. + * Add dependent doc packages to b-d-i to ensure proper xrefs. + + [ Loic Minier ] + * Clean up dh_gtkmodules output: + - Demote warnings when skipping non-existent GtkPixbuf loaders and Gtk IM + modules dirs to verbose_print(); use -v to see them. + - Always print the number of GdkPixbuf loaders and Gtk IM modules found in + each package. + + [ Emilio Pozuelo Monfort ] + * New upstream stable release. + - Bump shlibs. + - debian/patches/070_mandatory-relibtoolize.patch: regenerated. + * Ship the gtk-builder-convert manpage in libgtk2.0-dev. + + -- Emilio Pozuelo Monfort <pochu@ubuntu.com> Sun, 15 Mar 2009 20:10:34 +0100 + +gtk+2.0 (2.15.5-2) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * debian/control.in: + - bump libglib2.0-dev build-dep requirement to >= 2.19.7 + - bump libxrandr-dev build-dep requirement to >= 1:1.2.99 + - also bump libgtk2.0-dev dependecies accordingly + (Closes: #518078) + + [ Gustavo Noronha Silva ] + * 042_treeview_single-focus.patch: + - removed FIXME note, since it was explained to me that the patch is + still necessary + * debian/rules: + - bumped SHVER to 2.15.5 + + [ Imported from Ubuntu ] + * 022_disable-viqr-im-for-vi-locale.patch, + 061_use_pdf_as_default_printing_standard.patch: + - for the rationale for the PDF for printing one see: + https://wiki.ubuntu.com/PDFasStandardPrintJobFormat + + -- Gustavo Noronha Silva <kov@debian.org> Tue, 03 Mar 2009 21:58:20 -0300 + +gtk+2.0 (2.15.5-1) experimental; urgency=low + + * New upstream development release + * 070_mandatory-relibtoolize.patch: refreshed. + * 031_directfb_dead-keys.patch, 032_gdkwindowimpl_directfb.patch, + 033_directfb_client-message.patch, 034_directfb_memleak.patch, + 071_jasper_link_fix.patch, 092_fix_printtest_include.patch: + - dropped; already featured in this release + * 030_gtkentry_password-char-circle.patch: + - dropped; upstream provides a different solution to setting the default + invisible char now, that takes the font being used into consideration + * 003_gdk.pc_privates.patch: + - refreshed + + -- Gustavo Noronha Silva <kov@debian.org> Mon, 02 Mar 2009 22:01:03 -0300 + +gtk+2.0 (2.14.7-3) experimental; urgency=low + + * 032_gdkwindowimpl_directfb.patch: new version of the patch. This + should restore the basic functionality of the backend, but there is + still work underway. + * 033_directfb_client-message.patch: stolen from the upstream SVN. Fix + the DirectFB client_message API. + * 034_directfb_memleak.patch: stolen from the upstream SVN. Fix memory + leak in the DirectFB code. + * Require DirectFB 1.0.0 for the 034 patch. + * 070_mandatory-relibtoolize.patch: updated accordingly. + + -- Josselin Mouette <joss@debian.org> Sat, 21 Feb 2009 14:59:45 +0100 + +gtk+2.0 (2.14.7-2) experimental; urgency=low + + * 008_implicit_pointer_conversion_gdkgc_directfb.patch: removed, it’s + obsolete and just defines the same macro a second time. + * 007_implicit_pointer_conversion_gdkdrawable_directfb.patch: removed, + it’s not needed anymore with the latest directfb. + * 006_proper-directfb-modules.patch: removed from the package, it + won’t be necessary anymore. + * 001_static-linking-dont-query-immodules.patch, + 002_static-linking-dont-build-perf.patch, + 003_gdk.pc_privates.patch, + 004_gtk+-ximian-gtk2-filesel-navbutton-5.patch: refreshed. + * Remove 071_correct_directfb_declarations.patch, and replace it by + 032_gdkwindowimpl_directfb.patch, a patch from Sven Neumann to + (hopefully) fix DirectFB support for GTK+ 2.14. + + -- Josselin Mouette <joss@debian.org> Tue, 17 Feb 2009 23:17:56 +0100 + +gtk+2.0 (2.14.7-1) experimental; urgency=low + + [ Loic Minier ] + * Don't purge /etc/gtk-2.0/gdk-pixbuf.loaders and /etc/gtk-2.0/gtk.immodules + during first configuration. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge <slomo@debian.org> Thu, 08 Jan 2009 08:06:02 +0100 + +gtk+2.0 (2.14.5-1) experimental; urgency=low + + [ Josselin Mouette ] + * Really install the faq and tutorial files correctly so that the + devhelp file is read. + * Update doc-base files accordingly. + * gruik2devhelp.awk: new script to generate the devhelp files + automatically for the FAQ and tutorial, based on the HTML doc. + * Build-depend on gawk, run the script appropriately. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge <slomo@debian.org> Tue, 25 Nov 2008 11:00:35 +0100 + +gtk+2.0 (2.14.4-3) experimental; urgency=low + + * libgail*.install: fix installation paths. Closes: #505105. + * Do not ship .la files for gail modules. + * Generate shlibs for libgail. + * Bump shlibs version to 2.14.0. + * Do not install libgailutil in libgtk2.0-0. + * Do not install gtk libs in libgail-dev. + * Rework docs installation. + * Add doc links where needed. + * Install .devhelp files at the correct places. Closes: #504807. + * Bump dependencies for the development package. + * Fix dependencies of gail packages. + * Don’t install libgail in the udeb. + * Stop shipping /usr/lib/pkgconfig/libgtk-directfb-2.0-0/, nobody uses + it. + * Remove versioned conflicts with libgail packages. + * Remove libgail18.shlibs. + * Put debugging symbols of libgail modules in libgail-dbg. + * dh_gtkmodules.in: fix a pod2man error. + * Disable 006_proper-directfb-modules.patch. + * Update 070_mandatory_relibtoolize.patch accordingly. + + -- Josselin Mouette <joss@debian.org> Tue, 11 Nov 2008 14:44:21 +0100 + +gtk+2.0 (2.14.4-2) experimental; urgency=low + + * debian/control, debian/rules, debian/libgail*: + - split libgail packages + + -- Gustavo Noronha Silva <kov@debian.org> Wed, 05 Nov 2008 14:54:08 -0200 + +gtk+2.0 (2.14.4-1) experimental; urgency=low + + [ Gustavo Noronha Silva ] + * New upstream release + * debian/patches/006_proper-directfb-modules.patch: + - refreshed + * debian/patches/008_implicit_pointer_conversion_gdkgc_directfb.patch, + debian/patches/009_gtk-export-filechooser.patch, + debian/patches/020_immodules-files-d.patch, + debian/patches/021_loader-files-d.patch, + - update borrowed from Ubuntu's package + * debian/patches/071_correct_directfb_declarations.patch, + debian/patches/072_workaround_directfb_build.patch: + - borrowed from ubuntu + * debian/patches/033_treeview_resizing.patch, + debian/patches/095_gtk-im-module-setting.patch: + - removed; fixed upstream + * debian/patches/070_mandatory-relibtoolize.patch: + - refreshed + * debian/control.in: + - added libjasper-dev to the Build-Depends, as GTK+ now supports + JPEG2000 + - make GTK+ packages conflict/replace with gail ones, since they are now + included in GTK+ + * debian/patches/092_fix_printtest_include.patch: + - new patch, to fix build problem in print test + * debian/patches/071_jasper_link_fix.patch: + - make gdk-pixbuf-csource link correctly with libjasper + * debian/rules, debian/control: + - newer libcairo2-dev contains everything needed to build the directfb + target, so disable building with the dummy libcairo-directfb2-dev + - this makes us have to build depend on libcairo2-dev >= 1.6.4-6.1 + + [ Loic Minier ] + * Let libgtk2.0-dev recommend debhelper for dh_gtkmodules. + * Let libgtk2.0-dev depend on libxml2-utils as it's required for + gtk-builder-convert to work and might be relied upon by packages bdeping + on libgtk2.0-dev. + + [ Emilio Pozuelo Monfort ] + * Update build-dependencies for the new version: + - libglib2.0-dev >= 2.17.6 + - libpango1.0-dev >= 1.20 + - libatk1.0-dev >= 1.13.0 + - libcairo2-dev >= 1.6.0 + + -- Gustavo Noronha Silva <kov@debian.org> Wed, 24 Sep 2008 21:38:58 -0300 + +gtk+2.0 (2.12.11-3) unstable; urgency=low + + * 031_directfb_dead-keys.patch: patch from Jérémy Bobbio to fix dead + keys in the DirectFB backend. Closes: #394871. + * Now require DirectFB 0.9.26. + * 070_mandatory_relibtoolize: updated to match the dependency bump. + * 033_treeview_resizing.patch: + + Fix crasher introduced by the patch. Closes: #491611. + + Add references. + + -- Josselin Mouette <joss@debian.org> Mon, 21 Jul 2008 15:22:38 +0200 + +gtk+2.0 (2.12.11-2) unstable; urgency=low + + * 033_treeview_resizing.patch: + + Enable again, it was disabled by mistake. + + Update to new version provided by Kristian Rietveld. + Closes: #471073. + * libgtk2.0-doc.doc-base.gtk2-tutorial: fix spelling of GTK+. + * *.doc-base.*: fix doc-base sections. + + -- Josselin Mouette <joss@debian.org> Fri, 18 Jul 2008 14:53:17 +0200 + +gtk+2.0 (2.12.11-1) unstable; urgency=low + + [ Emilio Pozuelo Monfort ] + * Build-depend on libcups2-dev instead of libcupsys2-dev, as cups + is transitioning to that new name. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/patches/092_openoffice-menus.patch: + - Dropped, merged upstream. + * debian/control.in: + + Updated Standards-Version to 3.8.0, no additional changes needed. + + -- Sebastian Dröge <slomo@debian.org> Wed, 02 Jul 2008 06:37:51 +0200 + +gtk+2.0 (2.12.10-2) unstable; urgency=low + + * debian/patches/092_openoffice-menus.patch: + + Patch from upstream SVN to fix regression in menu placement + in openoffice.org (Closes: #484580). + + -- Sebastian Dröge <slomo@debian.org> Sat, 07 Jun 2008 10:27:50 +0200 + +gtk+2.0 (2.12.10-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/009_gtk-export-filechooser.patch: + - Updated to apply cleanly again. + + debian/patches/031_gtksearchenginetracker_fixes.patch, + debian/patches/061_foreign_colormaps.patch, + debian/patches/092_implicit-g-fopen.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge <slomo@debian.org> Wed, 04 Jun 2008 08:14:08 +0200 + +gtk+2.0 (2.12.9-4) unstable; urgency=low + + [ Loic Minier ] + * Flip back gdkpixbuf_module_files_d_str after gdkpixbuf_module_file_str in + patch 021_loader-files-d; this fixes config of gdk loaders and hence the + current ia32-libs implementation; the change in 2.12.0-3 was incorrect in + that it flipped the order for im modules and pixbuf loaders, but only im + modules had to be flipped; the reason im modules had to be flipped is that + the first list of modules wins for im modules as there is some duplicate + checking, while in the case of gdk pixbufs, the last file wins. What + remains to be done here is: + - biarch support, similar to pango, by loading /usr/lib32 and /usr/lib64 + stuff before /usr/lib; allows dropping the config file hack in + ia32-libs. + - loading of modules from multiarch locations (not multiarch); allows + dropping the config file hack in ia32-libs. + * Bump build-deps and libgtk2.0-dev's deps to ensure we get Xorg dev + packages with .pc files, see list below; thanks Anon Sricharoenchai; + closes: #370693. + libxext-dev >= 1:1.0.1-2, libxinerama-dev >= 1:1.0.1-4.1, libxi-dev >= + 1:1.0.1-4, libxrandr-dev >= 1:1.0.2-2, libxfixes-dev >= 1:3.0.0-3, + libxcomposite-dev >= 1:0.2.0-3, libxdamage-dev >= 1:1.0.1-3. + + [ Josselin Mouette ] + * 061_foreign_colormaps.patch: stolen from upstream SVN. Don't call + XFreeColormap on foreign colormaps, this causes crashes in e.g. + vinagre. Closes: #477199. + * Apply multiarch patch by Javier Serrano Polo, replacing all + occurrences of usr/lib by $(LIBDIR). Closes: #468100. + * rules: don't compress .sgml and .devhelp files. + + [ Loic Minier ] + * Fix broken second dh_strip invocation which was not only acting on the + udeb but also on binary packages (-s -pUDEB should have been -pUDEB). + * Update patch 021_loader-files-d to use PIXBUF_FILES_LIBDIR which is + defined in gdk-pixbuf/Makefile.am, similarly to PIXBUF_LIBDIR, and based + on the newly defined loaderfilesdir, similar to loaderdir; update + 070_mandatory-relibtoolize. + * New patch, 022_module-files-append-compat-module-files-d, prefer + /usr/lib32/gtk-2.0/<gtk-binary-version>/loader-files.d and + /immodule-files.d over the /usr/lib/.../*.d pathnames added in + 020_immodules-files-d and 021_loader-files-d when available; this is + useful for ia32-libs support; other modules might need additional support + depending on how they are loaded, for example GTK_MODULES will probably + still be looked up below libdir, as well as engines, printbackends, + filesystems, and generic modules. See also Ubuntu #205223 and #190227 for + examples. + + -- Loic Minier <lool@dooz.org> Sun, 11 May 2008 00:47:26 +0200 + +gtk+2.0 (2.12.9-3) unstable; urgency=low + + [ Loic Minier ] + * Refresh patches 009_gtk-export-filechooser, + 030_gtkentry_password-char-circle, 033_treeview_resizing, + 042_treeview_single-focus, 060_ignore-random-icons + * Fix offsets in patch 095_gtk-im-module-setting; thanks Akira TAGOH; + closes: #473699. + + [ Sebastian Dröge ] + * debian/rules: + + Don't include the udeb in the debug package to get a working debug + package in case the udeb libraries differ from the real ones. + + -- Sebastian Dröge <slomo@debian.org> Sat, 12 Apr 2008 14:00:22 +0200 + +gtk+2.0 (2.12.9-2) unstable; urgency=low + + * debian/patches/092_implicit-g-fopen.patch: + + Include glib/gstdio.h for g_fopen to prevent crashes on 64 bit + architectures. Thanks to Dann Frazier for the patch (Closes: #470665). + + -- Sebastian Dröge <slomo@debian.org> Wed, 12 Mar 2008 18:52:53 +0100 + +gtk+2.0 (2.12.9-1) unstable; urgency=low + + [ Josselin Mouette ] + * update-icon-caches: always exit with a 0 code to avoid breaking + upgrades when a cache is corrupt. Display a big fat warning instead. + Closes: #466083. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + 092_recentfiles-recursion-fix, dropped merged upstream. + + 070_mandatory-relibtoolize.patch, regenerated for the new version. + * debian/rules, + debian/*.links.in: + + Don't ship very old upstream changelogs and news as they're quite large. + + -- Sebastian Dröge <slomo@debian.org> Wed, 12 Mar 2008 09:41:23 +0100 + +gtk+2.0 (2.12.8-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/040_filechooser_single-click.patch, + debian/patches/093_directfb-type-changes.patch, + debian/patches/094_directfb-deprecation-fixes.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge <slomo@debian.org> Wed, 13 Feb 2008 09:11:50 +0100 + +gtk+2.0 (2.12.7-1) unstable; urgency=low + + * Fix GNOME casing in gtk-faq and gtk doc base descriptions. + * Drop cruft trying to convert /usr/share/doc/libgtk2.0-0 directory into a + symlink in libgtk2.0-0.postinst; thanks Sven Joachim; closes: #462057. + * New upstream stable release; no API change; bug fixes and translation + updates. + - Refresh patches 033_treeview_resizing, 042_treeview_single-focus to + apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize + - New patch, 094_directfb-deprecation-fixes, fixes directfb build with + GLib 2.15 deprecation of G_GNUC_FUNCTION in favor of G_STRLOC. + * Fix ordering in series. + * New patch, 095_gtk-im-module-setting, adds XSETTINGS support for immodule; + from GNOME 502446. + * New upstream release; no change tarball update. + + -- Loic Minier <lool@dooz.org> Mon, 21 Jan 2008 18:42:28 +0100 + +gtk+2.0 (2.12.5-2) unstable; urgency=medium + + * Add ${shlibs:Depends} to libgtk2.0-dev. + * Rework /usr/share/doc symlinks completely; closes: #461440. + - Use a real directory for all packages using a symlink previously: + libgtk2.0-bin, libgtk-directfb-2.0-dev, libgtk2.0-dev, libgtk2.0-0-dbg, + libgtk-directfb-2.0-0, libgtk2.0-0; add a preinst snippet removing the + path on upgrade if it's a symlink and points to the proper directory; + add a prerm snippet removing the path on upgrade (for downgrades) if + it's a directory (and not a symlink). + - Create symlinks for changelog.gz, NEWS.gz, NEWS.pre-1-0.gz, and + README.gz in the /usr/share/doc dirs of these packages as well as for + gtk2-engines-pixbuf; add a libgtk2.0-common unversionned dependency for + all these packages. + - Split dh_installdocs and dh_installchangelogs calls on multiple packages + and use one call per package as the intent was to install in all the + specified packages; also call dh_installdocs and dh_installchangelogs + without any extra file for all packages to install copyright and Debian + changelog. + - Factor the list of dh_installdocs files in DH_INSTALLDOCS_FILES in + rules. + + -- Loic Minier <lool@dooz.org> Fri, 18 Jan 2008 10:38:43 +0100 + +gtk+2.0 (2.12.5-1) unstable; urgency=low + + [ Loic Minier ] + * Drop the version in the libgtk2.0-0 -> libgtk2.0-common dependency; the + translations and gtkrc files aren't critical to libgtk's working and have + been compatible with other libgtk versions since years. + * New patch, 094_fix-jpeg-loader-big-buffers, fixes spinguard logic for big + buffers in the JPEG pixbuf loader; GNOME #494667; from SVN r19135. + * New upstream stable releases; no API change; bug fixes and translation + updates. + - Drop patches 092_notebook-critical-warnings, + 094_fix-jpeg-loader-big-buffers, merged upstream. + - Refresh patches 040_filechooser_single-click, 093_directfb-type-changes + to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + [ Sebastian Dröge ] + * Upload to unstable. + * Fixes FTBFS caused by not installing the png pixbuf loader correctly + (Closes: #461037). + * Update Standards-Version to 3.7.3, no additional changes needed. + * 092_recentfiles-recursion-fix.patch: Guard against recursion in + gtk_recent_files_menu_populate(). Patch from upstream SVN by + William Pitcock (Closes: #459393). + * Drop duplicated ${misc:Depends} from Recommends. + + -- Sebastian Dröge <slomo@debian.org> Thu, 17 Jan 2008 10:49:09 +0100 + +gtk+2.0 (2.12.3-2) unstable; urgency=low + + * 092_notebook-critical-warnings.patch: Fix removal of tab labels to not + ref and unref a NULL pointer. Patch from upstream SVN, see BGO #388321. + * 093_directfb-type-changes.patch: Define __u32 and __u8 to fix compilation + with latest directfb from unstable while still supporting older versions. + Patch from BGO #503190. + + -- Sebastian Dröge <slomo@debian.org> Wed, 12 Dec 2007 05:36:40 +0100 + +gtk+2.0 (2.12.3-1) unstable; urgency=low + + * Let update-icon-caches skip args which are not dirs or don't exist; fixes + postrm behavior of packages with an icon cache. + * New upstream stable release; no API change; bug fixes and translation + updates. + - Refresh patch 042_treeview_single-focus to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Tue, 04 Dec 2007 22:39:07 +0100 + +gtk+2.0 (2.12.2-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes and translation + updated. + - Drop patches 034_gtkcupsutils_type_fix, 071_fix_gdk_window_null_crasher + fixed upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Sebastian Dröge <slomo@debian.org> Tue, 27 Nov 2007 05:15:01 +0100 + +gtk+2.0 (2.12.1-3) unstable; urgency=low + + * Conflict against metacity < 1:2.20.0-1. Closes: #450693. + * Suggest librsvg2-common for SVG pixbuf support. + * 033_treeview_resizing.patch: fix segmentation fault introduced by + an API inconsistency. + * 003_gdk.pc_privates.patch: generate correct Requires.private for + gdk-2.0.pc containing all necessary dependencies for static linking. + * 006_proper-directfb-modules.patch: refreshed. + * 010_gdkpixbuf_-lm.patch: fix gdk-pixbuf-2.0.pc by adding back -lm, + which is required by some macros. Closes: #451512. + * 070_mandatory-relibtoolize.patch: regenerated. + * rules: copy the extraneous libraries generated in the static build + to the Libs.private of the shared build. + + -- Josselin Mouette <joss@debian.org> Sun, 18 Nov 2007 01:30:52 +0100 + +gtk+2.0 (2.12.1-2) unstable; urgency=low + + * Stop suggesting gtk-engines-pixmap. + * Remove the --enable-explicit-deps flag. Closes: #343711, thanks Tom + Parker. If some other packages still rely on having explicit X11 + dependencies, they are buggy and need to be fixed anyway. + * Keep --enable-explicit-deps in the directfb build; otherwise this + breaks any binary linking against it because the rpath isn't passed. + * 033_treeview_resizing.patch: updated patch from Kristian Rietveld. + + Add a new sizing fix for the case where there is a scrollbar. + * 031_gtksearchenginetracker_fixes.patch: added back, only the name + change was fixed upstream. + * 034_gtkcupsutils_type_fix.patch: type-casting fix from Herbert + Valerio Riedel that allows remote printing. Closes: #448071. + * 040_filechooser_single-click.patch: allow a situation where no + shortcut is selected, to avoid issues for keyboard users. + Closes: #448674. + * 042_treeview_single_focus.patch: don't select the focused item for + GTK_SELECTION_SINGLE type treeviews. Allows the fix in + 040_filechooser_single-click.patch to work. + * Conflict against libeel2-2.18. Closes: #443701, #499070. + * Conflict against xfwm4 < 4.4.1-3 (previous versions freeze on + startup). + * 021_loader-files-d.patch: enclose process_module_file in correct + #ifdef's. + * 040_filechooser_single-click.patch: filter out duplicate entries in + bookmarks. This avoids a situation where the selection is changed to + the duplicate during DnD, causing an assertion error. + Closes: #447279. + + -- Josselin Mouette <joss@debian.org> Sun, 04 Nov 2007 16:22:31 +0100 + +gtk+2.0 (2.12.1-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes and translation + updates. + - Drop patches 031_gtksearchenginetracker_fixes, + 080_from_bugzilla_workaround_eclipse_crash, 081_icon-cache-validate + fixed upstream. + - Refresh patches 033_treeview_resizing, 040_filechooser_single-click to + apply cleanly. + - Drop patches 060_opening-display-by-env-error-message, + 065_gtk-filechooser-locale-time merged upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Chech the exit status of close() in dh_gtkmodules; closes: #427654. + * New patch, 060_ignore-random-icons, don't list images from unknown + directories in icon cache; closes: #443571, #443574, #444285, #446188. + + -- Loic Minier <lool@dooz.org> Sun, 21 Oct 2007 22:05:42 +0200 + +gtk+2.0 (2.12.0-3) unstable; urgency=low + + [ Josselin Mouette ] + * 031_gtksearchenginetracker_fixes.patch: new patch. + + Use libtrackerclient.so.0 (closes: #443403). + + Check that tracker actually works before using it. + + [ Loic Minier ] + * Conflict with libwxgtk2.6-0 << 2.6.3.2.2-1 to prevent the migration of gtk + to testing until the wxwidgets2.6 fix is there too; see #441766 and + friends. + + [ Josselin Mouette ] + * Conflict with glabels << 2.1.3-3 to prevent a segmentation fault + from showing up. + + [ Loic Minier ] + * Cleanup whitespace. + * Add comments to relibtoolizing patch, 070_mandatody-relibtoolize, to + mention the age of the upstream libtool in released tarballs which make + relibtoolizing important for hurd-i386; GNOME #484426; Debian #445001. + + [ Josselin Mouette ] + * 020_immodules-files-d.patch, 021_loader-files-d.patch: read the + GDK_PIXBUF_MODULE_FILE and GTK_IM_MODULE_FILE variables before the + Debian directories. Thanks Thadeu Lima de Souza Cascardo. + Closes: #439004. + + [ Loic Minier ] + * New patch, 080_from_bugzilla_workaround_eclipse_crash, fixes crash when + displaying tooltips in SWT apps such as Eclipse; GNOME #410194; LP + #128232; closes: #445613. + * New patch, 060_opening-display-by-env-error-message, fixes error message + on opening of display to include the display when it was set via the + DISPLAY env var; GNOME #486636; closes: #283076. + * New patch, 065_gtk-filechooser-locale-time, fixes conversion of localized + week days in non-UTF-8 locales in the file chooser; GNOME #482504; + closes: #444927. + * Enable 091_workaround_no_gtk_init_incorrect_display to allow the non-free + Flash plugin to work for users of non-Gtk browsers; please do bug Adobe + about this; closes: #443661, #440165. + * New patch, 071_fix_gdk_window_null_crasher, fixes potential crashes in + IceWeasel's print preview dialog; GNOME #482531; LP #144326; found in the + Ubuntu package. + + -- Loic Minier <lool@dooz.org> Sun, 14 Oct 2007 20:46:29 +0200 + +gtk+2.0 (2.12.0-2) unstable; urgency=low + + [ Josselin Mouette ] + * Add a conflict against openoffice.org-core (<< 2.2.1-8). + Closes: #439256. + + [ Loic Minier ] + * Upload to unstable; drop check-dist include. + + -- Loic Minier <lool@dooz.org> Thu, 20 Sep 2007 11:59:26 +0200 + +gtk+2.0 (2.12.0-1) experimental; urgency=low + + [ Alan Baghumian ] + * New upstream stable release + - Regenerated 070_mandatory-relibtoolize.patch + * Added 081_icon-cache-validate.patch, GNOME #476342 + + [ Loic Minier ] + * Refresh patches 033_treeview_resizing and 040_filechooser_single-click to + apply cleanly. + * Drop patch 080_from_svn_fix_dangling_tooltip, merged upstream. + * Bump shlibs to 2.12.0 in the new upstream release for the addition of + gdk_window_thaw_toplevel_updates_libgtk_only() and + gdk_window_freeze_toplevel_updates_libgtk_only() to the ABI. + * Add disabled patch 091_workaround_no_gtk_init_incorrect_display, taken + from the Ubuntu package; it works around broken applications missing a + call to gtk_init() but the breakage should better be exposed now so that + applications can be fixed in time for release. + + -- Loic Minier <lool@dooz.org> Tue, 18 Sep 2007 22:30:39 +0200 + +gtk+2.0 (2.11.6-1) experimental; urgency=low + + [ Loic Minier ] + * Don't run the directfb testsuite on kfreebsd as it hangs; proposed patch + by Petr Salinger; closes: #431477. + + [ Josselin Mouette ] + * Move manual pages of binaries in /usr/sbin to section 8. + * update-icon-caches: new script, updates the icon caches in a given + list of directories. It is meant to be used by packages shipping + icons, in the postinst/postrm. + For transition purposes, icon caches are currently updated but not + created if they don't already exist. + * Install this script and its manual page in libgtk2.0-bin. + + [ Loic Minier ] + * Call dh_shlibdeps separately for the udeb and add a + -l/usr/lib/libcairo-directfb/lib/ flag to ensure libcairo-directfb2 is + found. + * New upstream development release, with API additions. + - Bump up shlibs to >= 2.11.6. + - Refresh patches 006_proper-directfb-modules, + 015_default-fallback-icon-theme, 040_filechooser_single-click to apply + cleanly. + - Update patches 009_gtk-export-filechooser, 033_treeview_resizing to + apply; update relibtoolizing patch, 070_mandatory-relibtoolize. + * Update patch 009_gtk-export-filechooser: + - gtk/Makefile.am (gtk_private_h_sources, gtk_semi_private_h_sources): + export gtkquery.h and gtksearchengine.h as semi-private. + - gtk/gtkquery.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef guard. + - gtk/gtksearchengine.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef + guard. + + -- Loic Minier <lool@dooz.org> Tue, 24 Jul 2007 10:43:23 +0200 + +gtk+2.0 (2.11.5-1) experimental; urgency=low + + * New upstream development release, with API additions; the new API may + still change incompatibly, especially the tooltips API. + - Bump shlibs to >= 2.11.5. + - Bump up libpango1.0-dev build-dep to >= 1.17.3. + - Ship the new gtk-builder-convert Python script to convert Glade files to + GtkBuilder syntax in libgtk2.0-dev; don't call dh_py* to generate a + ${python:Depends} but Recommend python (>= 2.4) to avoid pulling python + on buildds; the script requires python >= 2.4, but this is not enforced + in the dependencies. + - Refresh patches 001_static-linking-dont-query-immodules, + 006_proper-directfb-modules, 040_filechooser_single-click to apply + cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Use -s instead of -a in arch-specific dh_* calls. + + -- Loic Minier <lool@dooz.org> Tue, 03 Jul 2007 13:01:25 +0200 + +gtk+2.0 (2.11.4-1) experimental; urgency=low + + [ Josselin Mouette ] + * 040_filechooser_single-click.patch: fix the patch to apply cleanly + again, and enable it. + + [ Loic Minier ] + * Pass -mminimal-toc in CFLAGS for ppc64 support; thanks Andreas Jochens; + closes: #386815. + * New upstream development release, with API additions; the new API may + still change incompatibly. + - Bump shlibs to >= 2.11.3. + - Refresh patches 006_proper-directfb-modules, + 008_implicit_pointer_conversion_gdkgc_directfb, + 009_gtk-export-filechooser, 030_gtkentry_password-char-circle, + 033_treeview_resizing, 040_filechooser_single-click, and 041_ia32-libs + to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Add a debian/dh_listmissing.pl script based on dh_install snippets but + customized to handle multiple source installation dirs which can report + files which were not installed to a package. + * New list-missing rule to list files which were not installed to a package + calling debian/dh_listmissing.pl. + * Also depend on libxcomposite-dev, libxdamage-dev; thanks Sébastien Bacher. + * Ship etc/gtk-2.0/im-multipress.conf in the shared library. + * New upstream development release, with incompatible API changes; the new + API may still change incompatibly. + - Bump shlibs to >= 2.11.4. + - Refresh relibtoolizing patch, 070_mandatory-relibtoolize. + - Bump up libglib2.0-dev build-dep to >= 2.11.5. + + -- Loic Minier <lool@dooz.org> Wed, 20 Jun 2007 10:47:42 +0200 + +gtk+2.0 (2.11.2-1) experimental; urgency=low + + * New upstream release series; these are development releases, the new API + may still change incompatibly. + - Target at experimental; include check-dist. + - Bump shlibs to >= 2.11.2. + - Refresh patches 001_static-linking-dont-query-immodules, 005_xpmico, + 009_gtk-export-filechooser, 015_default-fallback-icon-theme, + 033_treeview_resizing, 041_ia32-libs to apply cleanly. + - Update patch 021_loader-files-d to apply with the upstream G_MODULE + changes and the support for included modules. + - Update patch 030_gtkentry_password-char-circle to apply. + - Drop patch 031_cursor-blinking-timeout, merged upstream. + - Disable 040_filechooser_single-click for now as it doesn't apply cleanly + and doesn't seem critical; add a description and cross-refs. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + - Bump up build-deps to libglib2.0-dev >= 2.13.1, libpango1.0-dev >= + 1.15.3, gtk-doc-tools >= 1.6. + - Build-dep on libxcomposite-dev for composite support. + - Build-dep on libxdamage-dev for damage support. + - Enable test print backend by passing --enable-test-print-backend to + configure. + * Update 007_implicit_pointer_conversion_gdkdrawable_directfb to include + cairo.h instead of defining the directfb feature manually. + * New patch, 006_proper-directfb-modules, fixes pkg-config modules included + to build directfb stuff, uncovered by the change in + 007_implicit_pointer_conversion_gdkdrawable_directfb; refresh + relibtoolizing patch. + * Add cross-refs to patch headers. + * Clean up CFLAGS. + * Prepare passing -z defs via LDFLAGS in the future. + + -- Loic Minier <lool@dooz.org> Wed, 13 Jun 2007 16:57:47 +0200 + +gtk+2.0 (2.10.13-1) unstable; urgency=low + + * Bump Conflicts to iiimf-client-gtk << 12.3.91-4. + * Upload to unstable; drop check-dist include. + * New upstream release; no API change. + - Drop patches 011_directfb-build-fixes-from-head, + 013_gdkproperty-directfb-strdup, 032_filechooser-sizing, + 090_capslock-numlock-im-thai merged upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Wed, 13 Jun 2007 10:06:49 +0200 + +gtk+2.0 (2.10.12-3) experimental; urgency=low + + * Use printf instead of echo in dh_gtkmodules to write to write data to + files in complex_doit() calls as dash's echo will always honor escape + sequences. + * Conflict with gtk2-engines-ubuntulooks (<= 0.9.11-1). + * New patch, 009_gtk-export-filechooser, exports some filechooser API for + use in maemo / Hildon; from Nokia, taken from the Ubuntu package; update + patch 032_filechooser-sizing to apply cleanly; bump shlibs to 2.10.12-3; + update patch 070_mandatory-relibtoolize. + * Kill patch 025_dfb-window-destroy-leak from source tree as well now. + * Include check-dist to prevent accidental uploads to unstable. + + -- Loic Minier <lool@dooz.org> Thu, 07 Jun 2007 00:13:00 +0200 + +gtk+2.0 (2.10.12-2) unstable; urgency=low + + [ Loic Minier ] + * New patch, 15_default-fallback-icon-theme, sets the default + gtk-fallback-icon-theme to "gnome"; closes: #421353. + * Also honor parallel=n in DEB_BUILD_OPTIONS. + + [ Josselin Mouette ] + * 032_filechooser-sizing.patch: patch from Carlos Garnacho in bugzilla + #420285, committed in trunk. Fixes (among many other things) infinite + flickering with some window managers (closes: #420021). + * Refresh other patches. + + [ Loic Minier ] + * New patch 090_capslock-numlock-im-thai, fixes Thai input method when + NumLock/CapsLock is on; thanks Theppitak Karoonboonyanan; GNOME #438261; + closes: #414698. + * Re-add patch 031_cursor-blinking-timeout to patch series. + + [ Josselin Mouette ] + * 033_treeview_resizing.patch: fix column resizing in GtkTreeView when + there is an expander column. See bugzilla #316087. + + -- Josselin Mouette <joss@debian.org> Fri, 18 May 2007 19:02:20 +0200 + +gtk+2.0 (2.10.12-1) unstable; urgency=low + + * Bump Conflicts to gtk-im-libthai <= 0.1.4-2. + * Document that 2.10.11-2 bumped the conflict on scim-gtk2-immodule to <= + 1.4.4-7. + * Post-transition bump of conflicts to gtk2-engines-wonderland << 1.0-4, + imhangul (<< 0.9.13-5), gcin (<< 1.3.4-2), gtk-im-libthai (<< 0.1.4-3), + scim-gtk2-immodule (<< 1.4.4-8), uim-gtk2.0 (<< 1:1.4.1-3), + gtk2-engines-cleanice (<< 2.4.0-1.1), gtk2-engines-magicchicken + (<< 1.1.1-7.1), gtk2-engines-qtpixmap (<< 0.28-1.2), libginspx0 + (<< 20050529-1.1), tamil-gtk2im (<< 2.2-4.4), gtk2-engines-xfce + (<< 2.4.0-1), scim-bridge-client-gtk (<< 0.4.10-1.1), swf-player + (<< 0.3.6-2.3), gtk-qt-engine (<< 1:0.8~svn-rev36-1). + * Let the udeb provide the Gtk+ module ABI (binver); closes: #419592. + * Add a -k flag to dh_gtkmodules, matching the change in dh_pangomodules. + * Use this new flag for the udeb and the shared library packages. + * Add ${misc:Depends}. + * Drop "libtool_is_fool" snippet patching hardcode_libdir_flag_spec and + archive_cmds which is probably dangerous with newer libtools. + * Drop patch 000_gtk+-2.0.6-exportsymbols which made all libs export way too + many symbols and hence was dangerous; closes: #327652. + - Update patch 070_mandatory-relibtoolize. + * Fix description of the -dbg package. + * New upstream release; no ABI change. + - Refresh patches 011_directfb-build-fixes-from-head and + 040_filechooser_single-click. + - Update relibtoolizing patch. + + -- Loic Minier <lool@dooz.org> Thu, 03 May 2007 15:13:54 +0200 + +gtk+2.0 (2.10.11-2) unstable; urgency=low + + [ Loic Minier ] + * Bump libwmf conflicts to << 0.2.8.4-5. + * Fix control generation. + * Include the new uploaders.mk from gnome-pkg-tools instead of duplicating + its logic; build-dep on gnome-pkg-tools >= 0.11. + * Run "make check" test suite for all flavors except if DEB_BUILD_OPTIONS + contains the "nocheck" keyword; ignore failures. + * Add support for DEB_BUILD_OPTIONS_PARALLEL. + * Re-enable FAQ and Tutorial which were fixed upstream at some point; update + installation dirs. + * Call dh_installman -a. + + [ Josselin Mouette ] + * 040_filechooser_single-click.patch: remove shortcut-related actions + in the response callback. This fixes the annoying bug where you need + to click twice on "save" after clicking on a shortcut. + + [ Loic Minier ] + * Initialize CFLAGS to -Wall -g; pass debian/rules' CFLAGS and LDFLAGS to + configure, doh! + * Document that 2.10.8 (and 2.10.9) fixed CVE-2007-0010. + * Stop shipping engines in the udeb again. + * New patch, 040_ia32-libs.patch, for ia32-libs support via ia32-libs-gtk; + based on a patch by Goswin von Brederlow with the following changes: a) + use .32 and .64 suffixes in all cases (compatible with Ubuntu), b) fix + typo, c) use g_file_test() instead of g_access(); does not cover module + loading via env vars; closes: #406453. + * Upload to unstable; drop check-dist include. + * Wrap build-deps and deps. + * Add Conflicts on gcin (<= 1.3.4-1), gtk-qt-engine (<= 1:0.8~svn-rev31-3), + iiimf-client-gtk (<= 12.3.91-3), libginspx0 (<= 20050529-1), + scim-bridge-client-gtk (<= 0.4.10-1), iiimgcf (<= 11.4.1870-7). + * Bump Conflicts to gtk2-engines-gtk-qt << 1:0.7-2, imhangul <= + 0.9.13-3.1, libgnomeui-0 <= 2.14.1-3, swf-player <= 0.3.6-2.2, + tamil-gtk2im <= 2.2-4.3, uim-gtk2.0 <= 1:1.2.1-9, scim-gtk2-immodule (<= + 1.4.4-7). + * Drop docbook-utils and linuxdoc-tools-text from the build-deps. + + -- Loic Minier <lool@dooz.org> Fri, 13 Apr 2007 22:25:49 +0200 + +gtk+2.0 (2.10.11-1) experimental; urgency=low + + * Move build and install base dirs to debian/build and debian/install + instead of debian/tmp/build and debian/tmp/install. + * Cleanup rules. + * Make debian/control PHONY. + * Use @DOC_PKG@ to point at the HTML doc as well. + * Tune udeb description. + * New upstream releases. + - Drop patch 003_default_fallback_icon_theme, upstream added a fallback on + hicolor. + - Drop patch 015_gdkmain-x11_button-mask.patch, merged upstream. + - Refresh patches. + - Relibtoolize. + * Remove 031_cursor-blinking-timeout from patch series as it causes a + regression in the Thai IM; closes: #414698. + + -- Loic Minier <lool@dooz.org> Wed, 14 Mar 2007 14:11:58 +0100 + +gtk+2.0 (2.10.9-1) experimental; urgency=low + + [ Josselin Mouette ] + * 024_filechooser_single-click.patch: + + Monitor selection changes instead of monitoring the cursor. + + Miscellaneous fixes. + * 015_gdkmain-x11_button-mask.patch, stolen from upstream SVN: fix the + issue of resizing columns needing two tries in some cases + (closes: #406906). + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + * Rename patch 023_gtkentry_password-char-circle to + 030_gtkentry_password-char-circle. + * Rename patch 024_filechooser_single-click to 040_filechooser_single-click. + * New patch, 031_cursor-blinking-timeout.patch, to stop blinking the cursor + after a configurable timeout; helps saving energy by not waking up all Gtk + processes with a cursor continuously; from upstream SVN r16366 (trunk); + GNOME #353670, #352442. + * Include the new check-dist Makefile to prevent accidental uploads to + unstable; bump build-dep on gnome-pkg-tools to >= 0.10. + * Bump up libglib2.0-dev of libgtk2.0-dev dep to >= 2.12.0 as well; thanks + Marc Brockschmidt. + + [ Josselin Mouette ] + * New upstream release. + - Fixes CVE-2007-0010; RedHat #218755, #218932. + * Remove patches integrated upstream: + + 009_directfb_build.patch + + 010_fix-stuc-vs-stub-typo.patch + + 012_missing-stub-files.patch + + 014_gtktreeview_missing-icons.patch + * Refresh patches: + + 020_immodules-files-d.patch + + 031_cursor-blinking-timeout.patch + + 040_filechooser_single-click.patch + + 070_mandatory-relibtoolize.patch + + -- Josselin Mouette <joss@debian.org> Thu, 1 Mar 2007 21:50:34 +0100 + +gtk+2.0 (2.10.7-1) experimental; urgency=low + + * New upstream release. + * Refresh patches. + * 022_gtkcupsutils_multipage.patch: removed, integrated upstream. + * Regenerate 070_mandatory-relibtoolize.patch. + * 014_gtktreeview_missing-icons.patch: update patch with the upstream + fix that was committed. + * 009_directfb_build.patch: new patch, fix typo in configure.in for + the directfb build. + + -- Josselin Mouette <joss@debian.org> Wed, 10 Jan 2007 00:03:03 +0100 + +gtk+2.0 (2.10.6-5) experimental; urgency=low + + [ Loic Minier ] + * Really update gtk2-engines conflict to << 2.8.2-2. + + [ Josselin Mouette ] + * 022_gtkcupsutils_multipage.patch: new patch, stolen upstream. + Properly pass multi-value options to cups (closes: #404867). + * 023_gtkentry_password-char-circle.patch: new patch to replace stars by + black circles in password fields; thanks Sven Arvidsson; found in Fedora + and OpenSuse (closes: #401568). + * 024_filechooser_single-click.patch: patch from UHU-Linux to make the + side pane in the filechooser usable with a single click + (closes: #405296). + + -- Josselin Mouette <joss@debian.org> Wed, 3 Jan 2007 00:14:28 +0100 + +gtk+2.0 (2.10.6-4) experimental; urgency=low + + [ Loic Minier ] + * Update gtk2-engines conflict to << 2.8.2-2. + + [ Josselin Mouette ] + * 014_gtktreeview_missing-icons.patch, stolen from bugzilla: fix + missing icon in "save as" filechooser dialogs. + + -- Josselin Mouette <joss@debian.org> Thu, 30 Nov 2006 20:42:44 +0100 + +gtk+2.0 (2.10.6-3) experimental; urgency=low + + [ Loic Minier ] + * Update gtk2-engines conflict to <= 2.8.1-4. + * Update gtk2-engines-pixbuf conflict to <= 2.10. + * Bump up libcairo-directfb2-dev build-dep to 1.2.4-4. + + [ Josselin Mouette ] + * 070_mandatory-relibtoolize.patch: recreate with autoconf 2.59, to + avoid the AM_GLIB_DEFINE_LOCALEDIR bug (making GTK+ applications + untranslated). + * Make gtk2-engines conflict less strict. + + -- Josselin Mouette <joss@debian.org> Sat, 11 Nov 2006 00:04:46 +0100 + +gtk+2.0 (2.10.6-2) experimental; urgency=medium + + * New patch, 013_gdkproperty-directfb-strdup, to g_strdup() strings returned + by gdk_atom_name(); GNOME #357611; thanks Attilio Fiandrotti. + + -- Loic Minier <lool@dooz.org> Sun, 8 Oct 2006 16:03:08 +0200 + +gtk+2.0 (2.10.6-1) experimental; urgency=low + + * New upstream release. + - Drop patch 013_stock-icons-typo-in-rm, merged upstream. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Wed, 4 Oct 2006 11:41:37 +0200 + +gtk+2.0 (2.10.5-1) experimental; urgency=low + + * Fail if dh_gtkmodules called query helpers on module files, but no module + could be written to the module file. + * Parse stderr as well as the stdout of query helpers and bail out if + g_module_open(); suggest adjusting LD_LIBRARY_PATH. + * Fix some probably harmless typos. + * New patch, 030_gtkfilechooserbutton-update-combo-box-null-base-path, to + avoid a segfault when opening some filechoosers; thanks Sam Morris for + reporting and testing; from CVS HEAD; GNOME #358405; closes: #390231. + * New upstream release; no API change. + - Drop patch 030_gtkfilechooserbutton-update-combo-box-null-base-path, + merged upstream. + - New patch, 013_stock-icons-typo-in-rm, to fix a typo in gtk/Makefile.am; + GNOME #358931. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Mon, 2 Oct 2006 16:59:18 +0200 + +gtk+2.0 (2.10.4-1) experimental; urgency=low + + * New upstream release; no API change. + - Switch from tar-in-tar and sys-build to regular source and quilt + patching; build-depend on quilt; remove occurrences of $(TOP_SRC_DIR) + and @TOP_SRC_DIR@ which isn't needed anymore. + - Refresh patch 021_loader-files-d. + - New patch, 010_fix-stuc-vs-stub-typo, to replace "stuc" with "stub" in + gtk/Makefile.am; from HEAD, not commited in the gtk-2-10 branch. + - New patch, 011_directfb-build-fixes-from-head, to backport directfb + build fixes; from HEAD not commited in the gtk-2-10 branch. Thanks + Attilio Fiandrotti for pointing me at the actual log entry. + - New patch, 012_missing-stub-files, to add gtk/gtkplug-stub.c and + gtksocket-stub.c missing from the tarball; from the gtk-2-10 branch. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Sun, 24 Sep 2006 12:24:31 +0200 + +gtk+2.0 (2.10.3-3) experimental; urgency=medium + + * Update patch 021_loader-files-d to not warn about missing module files or + unreadable files as is already the case for immodules; see #388450 for + more background. + * Fix awful typo which broke generation of the udeb shlibs and which I + didn't notice with debdiff; thanks Frans Pop. + * Drop debian/docs.in and pass the list of files to dh_installdocs instead; + should fix the missing README and NEWS files. + + -- Loic Minier <lool@dooz.org> Thu, 21 Sep 2006 17:35:16 +0200 + +gtk+2.0 (2.10.3-2) experimental; urgency=low + + * Drop obsolete --with-cairo-backend configure flag. + * Make update-gtk-immodules and update-gtk-immodules no-ops, to avoid + modules to recreate the /etc modules files on upgrades or by mistake; + remove the generated module files in /etc on upgrades. closes: #388450 + * Merge 2.8.20-2; drop patch 009_revert-gdkdrawable-directfb, merged + upstream. + + -- Loic Minier <lool@dooz.org> Wed, 20 Sep 2006 22:17:30 +0200 + +gtk+2.0 (2.10.3-1) experimental; urgency=low + + * New upstream releases; with API additions in the filesystem modules API, + probably only used by gtk-demo, and in the quartz gdk backend, not used in + Debian. + - Bump shlibs to >= 2.10.3. + - Drop patch 009_configurable-cairo-backend-module, it was not really + required to select a cairo backend dynamically as the backend is always + cairo-directfb for a directfb gdk. + - Drop patch 010_gdk-require-cairo-module, merged upstream. + - Drop patch 011_gdk-directfb-cvs-changes, this release includes the + changes that were pulled back then. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier <lool@dooz.org> Tue, 19 Sep 2006 20:42:38 +0200 + +gtk+2.0 (2.10.1-2) experimental; urgency=low + + * Drop obsolete scary warning in 2.10.1-1. + * Drop update-gtk-immodules and update-gdkpixbuf-loaders calls from + libgtk2.0-0's postinst, this isn't needed for backwards compatibility. + * Use /usr/lib/libgtk2.0-0/gdk-pixbuf-query-loaders and + /usr/lib/libgtk2.0-0/gtk-query-immodules-2.0 instead of + /usr/bin/gdk-pixbuf-query-loaders and /usr/bin/gtk-query-immodules-2.0 in + dh_gtkmodules. + + -- Loic Minier <lool@dooz.org> Tue, 19 Sep 2006 16:40:22 +0200 + +gtk+2.0 (2.10.1-1) experimental; urgency=low + + * Add a missing x11proto-xext-dev build-dep for X SYNC checks. + * Add a missing libatk1.0-dev (>= 1.9.0) build-dep for ATK. + * Replace GTK_BINARY_VERSION in debian/*.in to set the binary version of + binary modules; it is set via debian/scripts/vars and currently in use in + update-gdkpixbuf-loaders.in and update-gtk-immodules.in. + * Remove fake support for version argument from update-gdkpixbuf-loaders and + update-gtk-immodules. + * New upstream development releases with API additions, and non-public API + changes and removals. + - Target at experimental. + - Update copyright from AUTHORS. + - Update upstream URL. + - Bump up libglib2.0-dev build-dep to >= 2.12.0. + - Add a libdirectfb-dev (>= 0.9.24) build-dep for DirectFB. + - Add a libcupsys2-dev (>= 1.2) build-dep for CUPS printing backend. + - Bump shlibs to >= 2.10.0. + - Update list of docs to ship; now includes NEWS. (Closes: #384225) + - Update watch file to track stable releases and use HTTP. + - Set GTK_BINARY_VERSION to 2.10.0. + - Add or bump Conflicts with packages shipping modules for the 2.4.0 + binary version of Gtk: gtk2-engines-wonderland <= 1.0-3, + gtk2-engines-cleanice <= 2.4.0-1, gtk2-engines <= 1:2.6.10-2, + gtk2-engines-magicchicken <= 1.1.1-7, gtk2-engines-pixbuf <= 2.8.20-1, + gtk2-engines-gtk-qt <= 1:0.7-1, gtk2-engines-qtpixmap <= 0.28-1.1, + librsvg2-common <= 2.14.4-2, gtk2-engines-xfce <= 2.3.90.2-1, + libgnomeui-0 <= 2.14.1-2, tamil-gtk2im <= 2.2-4.2, imhangul <= 0.9.13-3, + iiimgcf <= 11.4.1870-7.3, scim-bridge <= 0.2.4-1, scim-gtk2-immodule <= + 1.4.4-4, gtk-im-libthai <= 0.1.4-1, uim-gtk2.0 <= 1:1.2.1-3, libwmf-dev + <= 0.2.8.4-2, libwmf0.2-7 <= 0.2.8.4-2, swf-player <= 0.3.6-2.1. + - Replace 001_gtk+-2.2.0-buildfix-immodule patch with + 001_static-linking-dont-query-immodules which has more chances to be + merged upstream; see GNOME #346531. + - Drop 006_gtk+-2.8.17-directfb patch, merged upstream. + - Refresh patches: 000_gtk+-2.0.6-exportsymbols, + 003_default_fallback_icon_theme, + 004_gtk+-ximian-gtk2-filesel-navbutton-5, + 007_implicit_pointer_conversion_gdkdrawable_directfb. + - Update 070_mandatory-relibtoolize with libtoolize --force --copy && + aclocal-1.7 -I m4macros && autoconf && automake-1.7. + - New patch, 002_static-linking-dont-build-perf, to avoid building the + perf measurement tools in static builds; see GNOME #346559; needs + the 001_gtk+-2.2.0-buildfix-immodule patch. + - New patch, 009_configurable-cairo-backend-module, to add a new + --with-cairo-backend flag which will select a cairo-$backend.pc + pkg-config module instead of the default of cairo.pc; see GNOME #351509. + - Configure with --with-cairo-backend=directfb for the dfb build. + - New patch, 010_gdk-require-cairo-module, to require the Cflags and Libs + from the cairo-directfb module (as $cairo_module); see GNOME #351519. + - New patch, 011_gdk-directfb-cvs-changes, backport of CVS only build + fixes to permit compilation against directfb 0.9.25.1. + * Fix bashishms in debian/rules. (Closes: #385473) + * Generate a Provides: gtk2.0-binver-@BINVER@ in libgtk2.0-@SONAME@ to track + the binary version of Gtk and to permit Gtk modules to depend on it. + * Define the flags for each flavor (shared, static, and udeb) in Makefile + vars and share the common flags. + * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE + differ. + * Stop shipping *.la and *.a files of modules (all module types). + * Move GTK_BINARY_VERSION back to rules. + * Use GTK_BINVER_DEP instead of BINVER. + * Build flavors out-of-tree; saves 25% of required build space (315 MB) and + some build time / IO load; this clutters the headers a little (full build + path is mentionned instead of ".") though. + * Rewrite and cleanup the build process completely. + * Install the full set of pkg-config files from the dfb flavor in + /usr/lib/pkgconfig/libgtk-directfb-2.0; to use this feature, set + PKG_CONFIG_PATH while invoking pkg-config (or configure); the + /usr/lib/pkgconfig/*directfb*.pc files will be removed when Debian sources + have been converted. + * In the same spirit, gdkconfig.h is in /usr/lib/gtk-2.0/include/directfb; + to use it, prepend -I/usr/lib/gtk-2.0/include/directfb to CFLAGS. + * Fix generation of /etc/gtk-2.0/gdk-pixbuf.loaders for the udeb. + (Closes: #382435) + * Build-depend on libcairo-directfb2-dev >= 1.2.4-2 to get PDF/PS support in + the directfb flavor of libcairo. + * Recommend the linked source packages in libgtk2.0-doc instead of simply + suggesting them. + * Rewrite update-gdkpixbuf-loaders and update-gtk-immodules. + * Drop double libatk1.0-dev build-dep. + * Empty the dependency_libs in the *.la files of libgtk2.0-dev. + * New immodule files handling with *.immodules files below + /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d. + - New patch, 020_immodules-files-d, to split the module search path on + ":", as is done in Pango, prepend + /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d to the search path, + and to read all *.immodules files when a directory is encountered in the + search path. + - Pre-generate + /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d/libgtk2.0-0.immodules + for the shared library. + - Continue generating /etc/gtk-2.0/gtk.immodules until packages are + updated. + * Add the libpixmap engine to the udeb for the new Bladr GTK theme for g-i. + * New loader files handling with *.loaders files below + /usr/lib/gtk-2.0/<BINARY_VERSION>/loaders-files.d. + - New patch, 021_loader-files-d, to split the module search path on + ":", as is done in Pango, prepend + /usr/lib/gtk-2.0/<BINARY_VERSION>/loader-files.d to the search path, + and to read all *.loaders files when a directory is encountered in the + search path. + - Pre-generate + /usr/lib/gtk-2.0/<BINARY_VERSION>/loader-files.d/libgtk2.0-0.loaders + for the shared library and libgtk-directfb-2.0-0-udeb.loaders for the + udeb. + - Continue generating /etc/gtk-2.0/gdk-pixbuf.loaders until packages are + updated. + - This particular patch uses two ugly workarounds and needs work before + being sent upstream. + * New Debhelper-based command, dh_gtkmodules, to create module files for IM + modules and GdkPixbuf loaders; it will still add a dependency on the + binary version of Gtk for other modules. + * Make use of the new dh_gtkmodules during the build (override the path to + gtk-query-immodules-2.0 and gdk-pixbuf-query-loaders. + * Add ${misc:Depends} to gtk2-engines-pixbuf. + + -- Loic Minier <lool@dooz.org> Tue, 19 Sep 2006 15:13:38 +0200 + +gtk+2.0 (2.8.20-2) unstable; urgency=low + + * New patch, 009_revert-gdkdrawable-directfb, to revert a fix for Italic + letters which caused ugly unneeded horizontal/vertical lines; thanks + Davide Viti. (Closes: #386860) + * Fix typo, install-dfb depends on build-dfb, not build-shared. + * Fix typo (DFB_PKGFIR versus DFB_PKGDIR), use the BUILD_DFB_DIR version of + gdk-pixbuf-query-loaders, and set LD_LIBRARY_PATH to the udeb's /usr/lib; + should fix the empty /etc/gtk-2.0/gdk-pixbuf.loaders. (Closes: #382435) + * Ship all engines of the DirectFB build in the udeb, that is + engines/libpixmap.so. + + -- Loic Minier <lool@dooz.org> Wed, 20 Sep 2006 21:36:04 +0200 + +gtk+2.0 (2.8.20-1) unstable; urgency=low + + * New upstream releases; no API changes. + + -- Loic Minier <lool@dooz.org> Mon, 14 Aug 2006 16:52:04 +0200 + +gtk+2.0 (2.8.18-7) unstable; urgency=medium + + * Rename patches to reflect the order in which they are applied: + - 000_gtk+-2.2.0-buildfix-immodule to 001_gtk+-2.2.0-buildfix-immodule + - 001_default_fallback_icon_theme to 003_default_fallback_icon_theme + - 001_gtk+-ximian-gtk2-filesel-navbutton-5 to + 004_gtk+-ximian-gtk2-filesel-navbutton-5 + - 002_xpmico to 005_xpmico + - 003_gtk+-2.8.17-directfb to 006_gtk+-2.8.17-directfb + - 005_implicit_pointer_conversion to + 007_implicit_pointer_conversion_gdkdrawable_directfb + - 006_implicit_pointer_conversion to + 008_implicit_pointer_conversion_gdkgc_directfb + * Change the 000_gtk+-2.0.6-exportsymbols, and + 001_gtk+-2.2.0-buildfix-immodule patches to only patch the + non-autogenerated files. + * Rename 004_reautoconf to 070_mandatory-relibtoolize; update it for the + previous changes; use an older autoconf version to work around a bug + in the glib-gettext macro which broke localization in dialog boxes; thanks + Mike Hommey. + + -- Loic Minier <lool@dooz.org> Sun, 6 Aug 2006 11:49:48 +0200 + +gtk+2.0 (2.8.18-6) unstable; urgency=low + + * 005_implicit_pointer_conversion.patch: patch from Dann Frazier to + fix an implicit pointer conversion error on 64-bit architectures + (closes: #381081). + * 006_implicit_pointer_conversion.patch: fix another implicit + conversion by allowing deprecated functions in the necessary header + file (closes: #381082). + + -- Josselin Mouette <joss@debian.org> Wed, 2 Aug 2006 14:48:54 +0200 + +gtk+2.0 (2.8.18-5) unstable; urgency=low + + [ Loic Minier ] + * Set Priority to extra to sync with overrides. + + [ Josselin Mouette ] + * Set priority to extra for the udeb. + * Bump build dependencies for libcairo to the stable version. + * Lots of cleanup in debian/rules. + * Rename directfb packages to libgtk-directfb-2.0-*. + * Move .a and .la files from the engine package to the development + package. + + Add appropriate Replaces: field. + + -- Josselin Mouette <joss@debian.org> Sun, 30 Jul 2006 18:21:37 +0200 + +gtk+2.0 (2.8.18-4) experimental; urgency=low + + * Bump libcairo build dependencies. + * Only install the PNG loader in the udeb. + * Rebuild against a fixed glib. + + -- Josselin Mouette <joss@debian.org> Mon, 26 Jun 2006 22:34:27 +0200 + +gtk+2.0 (2.8.18-3) experimental; urgency=low + + [ Loïc Minier ] + * Bump libgtk2.0-dev dependency and build-dep on libx11-dev to >= 2:1.0.0-6 + as it ships x11.pc which ends up in the Requires of gdk-x11-2.0.pc. + (Closes: #326199, #370693) + [debian/control, debian/control.in] + + [ Josselin Mouette ] + * 003_gtk+-2.8.17-directfb.patch: new patch, bringing a new directfb + backend. + * 004_reautoconf.patch: new patch, result of "libtoolize --force + --copy; aclocal; autoheader; automake -acf; autoconf; rm -rf + autom4te.cache" with the previous patches applied. + * Make 3 new packages: libgtk+2.0-directfb0-udeb, + libgtk+2.0-directfb-dev and libgtk+2.0-directfb0. + * Add a new build flavour for directfb (only the shared version). + * Use chrpath to remove the rpath in the udeb. + * Generate a fake shlibs.local to handle all intra-gtk dependencies by + hand. + * Switch to debhelper compatibility mode 5 and require 5.0.22. + * Standards-version is 3.7.2. + * Break the circular dependency between libgtk2.0-0, libgtk2.0-bin and + libgtk2.0-common (closes: #309604). + + Remove libgtk2.0-common dependency on libgtk2.0-0. + + Remove libgtk2.0-0 dependency on libgtk2.0-bin. + + Use ${binary:Version} and ${source:Version} to ensure strict + dependencies. + + Build-depend on dpkg-dev 1.13.19. + + Invert the libgtk2.0-common -> libgtk2.0-0 symbolic link. + + libgtk2.0-common.preinst, libgtk2.0-0.postinst: dance the symbolic + link samba. + + Move support binaries and scripts to libgtk2.0-0 and make + libgtk2.0-bin a binary-all package containing only scripts. + + Move /usr/sbin/update-* calls to libgtk2.0-0. + + update-*: call binaries at their new location. + + -- Josselin Mouette <joss@debian.org> Mon, 26 Jun 2006 22:31:14 +0200 + +gtk+2.0 (2.8.18-1) unstable; urgency=low + + * New upstream version: + Bugs fixed: + - search box positioning has some bugs + - Gdk does not translate VK_NUMPADx to GDK_KP_x + - sanely handle late (re)setting of dnd image + - Text is shifted off-by-one in Add to panel + - gtk_widget_create_pango_layout docs typo + - GtkLayout In GtkScrolledWindow does not receive the scroll_event + - gtktreeview has RTL problems with toggle buttons if using gtktreestore + as a model + - Wrong drop location in GtkEntry + - GtkImage animation CRITICALS on switching themes + - DnD: Conditional jump or move depends on uninitialised value + - cursor blocked to dnd mode after using shift and dnd on a GtkCalendar + - Crashes while creating source code w/GtkFontSelection + - the right edge tab does not appear when switching tab + - Warning in gtk_paned_compute_position + - gdk should set resolution on PangoCairoFontmap, not PangoCairoContext + - GtkTreeView does not resize correctly + - gtk_tree_view_get_cell_area() forgets depth-one expander + - expander animation not working in RTL mode + - Multiple issues discovered by Coverity + - Make gtk_file_chooser_button_new() friendlier for language bindings + + -- Sebastien Bacher <seb128@debian.org> Tue, 30 May 2006 17:02:26 +0200 + +gtk+2.0 (2.8.17-1) unstable; urgency=low + + * New upstream version: + Bugs fixed: + - Expander disclosure button is too small + - gtk_image_clear doesn't cause redraw + - typo in configure.in yields suspicious warning + - gtk_icon_view_set_cursor causes Segmentation fault + - garbage output of --help in non UTF-8 locale + - GtkNotebook does not destroy its children on destroy() + - TreeView DnD between-row highlight colo + - Gtk-Criticals occur when scrolling a text_view that is not realized + - Hidden menubar still activates submenus with kbd + - GtkTreeItem broken + - Clean up button press handling (use one-grab-op-at-a-time pattern) + - broken scrolling when selecting + - GTK+ File-chooser dialog crashes + - Nautilus crashes when dragging icons to another screen + - mixed line separators confuse gtk_text_iter_ends_line + - Textview child is covered by window border + - gdk_pixbuf_loader_new_with_type(): What image types are allowed? + - Missing progress bar label + - Fix a problem which caused grab-notify signal to be missed in some cases + * debian/control.in: + - clear the Build-Depends on xlibs-static-pic | xlibs-pic, not required + - updated the Build-Depends on libpango1.0-dev so it build with + the xorg transitioned version + * * debian/patches/001_default_fallback_icon_theme.patch: + - set the default fallback icon theme to "gnome", fixes the issues with + the moves of icons from hicolor to gnome + + -- Sebastien Bacher <seb128@debian.org> Sun, 9 Apr 2006 21:54:11 +0200 + +gtk+2.0 (2.8.16-1) unstable; urgency=low + + * New upstream version + + -- Sebastien Bacher <seb128@debian.org> Wed, 15 Mar 2006 19:26:46 +0100 + +gtk+2.0 (2.8.15-1) unstable; urgency=low + + * New upstream version: + * Bugs fixed: + - Keys P and N in "open file" dialog have special meaning + - MS-Windows theme (GTK-Wimp) shows all funky characters + - Optimize gdk on win32 + - Hollow polygons have wrong linecaps + - panel crash with a11y enabled + * Updated translations (bg,bn,cs,eu,ro) + + -- Sebastien Bacher <seb128@debian.org> Tue, 14 Mar 2006 15:41:56 +0100 + +gtk+2.0 (2.8.13-1) unstable; urgency=low + + * New upstream version: + * Bugs fixed: + - Can't select some items in GtkIconView + - gtk_icon_theme_list_icons: example contexts don't work + - gnopernicus crashes on changing display screen source for magnifier + - evince crashes in gdk_region_union_with_rect + - Small error in _gdk_gc_update_context + - gtk.Notebook.get_current_page() returns incorrect page number + when pages hidden + - GtkAboutDialog not responsive to Escape key + - GtkNotebook popup menu not keynavigatable + - GtkRadioButton does not issue notify::active + - Make more use of G_DISABLE_ASSERT in TextView code + * Updated translations + + -- Sebastien Bacher <seb128@debian.org> Sat, 25 Feb 2006 23:56:58 +0100 + +gtk+2.0 (2.8.12-1) unstable; urgency=low + + * New upstream bugfix release. + * [debian/copyright] Updated FSF's address. + + -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 12 Feb 2006 14:11:11 +0100 + +gtk+2.0 (2.8.11-1) unstable; urgency=low + + * New upstream version + * Avoid memory overruns in the pixbuf theme engine with nonsensical + gradient specifications. [Matthias] + * Bugs fixed: + - Cursor doesn't move as expected + - Segfault from combination of gtk_container_set_resize_mode() + and GtkComboBox + - segfault in update_cursor on amd64 + - eog crashes at launch under AIX + - "~" should bring up the location dialog + - gtk_text_layout_get_cursor_locations() chokes on layout=0x0 + * Documentation improvements [Federico Mena Quintero] + * Translation updates (es,pt_BR,zh_HK,zh_TW) + + -- Sebastien Bacher <seb128@debian.org> Fri, 27 Jan 2006 22:28:05 +0100 + +gtk+2.0 (2.8.10-1) unstable; urgency=low + + * New upstream version + * debian/control.in: + - updated the glib requirement + * debian/patches/001_fs_documents.patch: + - dropped, stick with upstream behaviour rather + + -- Sebastien Bacher <seb128@debian.org> Thu, 12 Jan 2006 13:34:37 +0100 + +gtk+2.0 (2.8.9-2) unstable; urgency=low + + * Upload to unstable + + -- Sebastien Bacher <seb128@debian.org> Thu, 15 Dec 2005 15:13:32 +0100 + +gtk+2.0 (2.8.9-1) experimental; urgency=low + + * New upstream version: + Bugs fixed: + - File chooser filter behaves weird + - 2.8.4 to 2.8.6: sound-juicer crash, fileselector assertions + - On unsetting the Model, GtkTreeView does not clear + it's associated TreeSelection + - Crash on selecting a file of null mime-type + - gtktoolbutton leaks a pixbuf + - GdkEvent leaked in gtktreeview.c / gtk_tree_view_key_press + - Typo in trap_activate_cb() + - gtkcalendar.c: The identifier is already declared. + - gtk_menu_attach_to_widget() does not take NULL detacher + - Unhinted fonts are measured incorrectly and drawing + problems occur as a result + - unwanted scrolling in recent gtk + - Toolbars without icons are invisible in icon-only mode + - Search-entry in the TreeView not working properly + - gtktoolbutton.c:562: warning: 'image' is used + uninitialized in this function + - reference count of textbuffer increases with each paste + - gtk_selection_data_get_uris leaks memory + Other changes: + - Remove GMemChunk from public header files to + support building against GLib 2.10 + - Report errors in option parsing + - Merge upstream xdgmime changes to handle duplicate glob patterns + + -- Sebastien Bacher <seb128@debian.org> Sat, 10 Dec 2005 18:22:50 +0100 + +gtk+2.0 (2.8.8-1) experimental; urgency=low + + * New upstream version: + GtkFileChooser: + - Make F2 work for renaming bookmarks + GtkEntry: + - Turn off input methods in password entries + - Other fixes * Documentation improvements + - Updated translations + + -- Sebastien Bacher <seb128@debian.org> Tue, 29 Nov 2005 16:00:32 +0100 + +gtk+2.0 (2.8.7-1) experimental; urgency=low + + * New upstream version. + * Security fixes: + - Add check to XPM reader to prevent integer overflow for specially crafted + number of colors (CVE-2005-3186) (Closes: #339431). + - Fix endless loop with specially crafted number of colors (CVE-2005-2975). + * debian/patches/001_fs_documents.patch: + - updated. + * debian/rules: + - fix confusing cp usage. + + [ Loic Minier ] + * Drop xlibs-dev deps and build-deps. + [debian/control, debian/control.in] + + -- Sebastien Bacher <seb128@debian.org> Wed, 16 Nov 2005 11:54:11 +0100 + +gtk+2.0 (2.8.3-1) experimental; urgency=low + + * New upstream version: + - Fix problems with the handling of initial settings + for font options and cursor themes. + - Add a --ignore-theme-index option to gtk-update-icon-cache. + + -- Jordi Mallach <jordi@debian.org> Thu, 1 Sep 2005 19:45:50 +0200 + +gtk+2.0 (2.8.2-1) experimental; urgency=low + + * New upstream version: + - Fix a crash with custom icon themes, which affected + the gnome-theme-manager. + - Make sure font and cursor settings are propaged down + to the screen initially. + * debian/control.in: + - require the current pango. + + -- Sebastien Bacher <seb128@debian.org> Thu, 25 Aug 2005 00:36:18 +0200 + +gtk+2.0 (2.8.1-1) experimental; urgency=low + + * New upstream version: + - gtk-update-icon-cache no longer stores copies of symlinked icons, + and it has a --index-only option to omit image data from the cache. + - Make large GtkSizeGroups more efficient. + - Improve positioning of menus in GtkToolbar. + - Make scrolling work on unrealized icon views. + - Avoid unnecessary redraws on range widgets. + - Make sure that all GTK+ applications reload icon themes promptly. + - Ensure that gdk_pango_get_context() and gtk_widget_get_pango_context() + use the same font options and dpi value. + - Multiple memory leak fixes. + * debian/control.in: + - updated the libgtk2.0-dev Depends according to the changes. + * debian/rules: + Add --enable-explicit-deps=yes to make sure stuff like x11 gets listed as a + Requires: in gdk(-x11)-2.0.pc, because otherwise linkage against -lX11 and + friends doesn't get carried through. Whether or not this is correct is + arguable, since libgdk-x11-2.0.so.0* ends up linked against it anyway, but + stuff like gnome-panel seems to be relying on this transience. + Change by Daniel Stone. + + -- Sebastien Bacher <seb128@debian.org> Wed, 24 Aug 2005 11:24:16 +0200 + +gtk+2.0 (2.8.0-1) experimental; urgency=low + + * New upstream version. + * debian/control.in: + - build with the new cairo (Closes: #323705). + - updated the Build-Depends for xorg (Closes: #323080). + * debian/copyright: + - use License instead of Copyright (Closes: #323209). + * debian/patches/001_fs_documents.patch: + - default to Documents. + * debian/rules: + - updated the shlibs. + * debian/watch: + - updated. + + -- Sebastien Bacher <seb128@debian.org> Thu, 18 Aug 2005 12:19:41 +0200 + +gtk+2.0 (2.7.2-1) experimental; urgency=low + + * New upstream version. + * debian/control.in: + - updated the Build-Depends. + * debian/rules: + - updated the shlibs. + - use cairo. + * debian/watch: + - updated. + + -- Sebastien Bacher <seb128@debian.org> Tue, 12 Jul 2005 01:06:55 +0200 + +gtk+2.0 (2.6.8-1) unstable; urgency=low + + * New upstream version. + * debian/patches/003_focus_issues.patch: + - fixed with the new version. + + -- Sebastien Bacher <seb128@debian.org> Thu, 16 Jun 2005 12:52:35 +0200 + +gtk+2.0 (2.6.7-2) unstable; urgency=low + + * Upload to unstable. + * Forward patches from 2.6.4 branch: + + 003_focus_issues.patch: stolen from CVS HEAD to fix focus issues. + + debian/gtk-tutorial.devhelp: updated to reflect the reality of the + html files. + * Loïc Minier: + + Document the configuration of Emacs-style key bindings in README.Debian, + with additional instructions for GNOME users. [debian/README.Debian] + (Closes: #309530) + + -- Josselin Mouette <joss@debian.org> Mon, 6 Jun 2005 22:39:27 +0200 + +gtk+2.0 (2.6.7-1) experimental; urgency=low + + * New upstream version: + - Fix compilation with gcc 4.0 (Closes: #303646). + * debian/rules: + - clean from the mips changes. + * debian/patches/002_bmp.patch: + - the new version fixes that. + * debian/patches/004_fs_newdir.patch: + - the new version fixes that. + + -- Sebastien Bacher <seb128@debian.org> Thu, 14 Apr 2005 22:06:53 +0200 + +gtk+2.0 (2.6.4-1) unstable; urgency=medium + + * New upstream release. + * debian/patches/004_fs_newdir.patch: + - fix a crash in the fileselector when creating a directory. + * debian/patches/003_iconcache.patch: + - this bug is fixed in the new version. + * debian/patches/004_mipsbuild.patch: + - dropped, this change is not required. + * debian/patches/002_bmp.patch: + - fix CAN-2005-0891: BMP double free Dos (Closes: #303141). + + -- Sebastien Bacher <seb128@debian.org> Tue, 5 Apr 2005 21:09:01 +0200 + +gtk+2.0 (2.6.2-4) unstable; urgency=high + + * Sjoerd Simons: + - debian/patches/003_iconcache.patch + + Updated. Let updateiconcache.c include config.h so it's correctly build + with large file support (Closes: #295777). + * Sebastien Bacher: + - debian/shlibs.local: + + dropped, fix the self depends (Closes: #296175). + * Loic Minier: + - debian/control* + + added gtk2-engines-pixbuf subsection and priority to sync with + the override. + * Use high urgency so that icon themes can propagate to testing. + + -- Josselin Mouette <joss@debian.org> Wed, 2 Mar 2005 22:28:38 +0100 + +gtk+2.0 (2.6.2-3) unstable; urgency=low + + * Patch from Steve Langasek <vorlon@debian.org>: + Add a --disable-testsuite argument to upstream configure, to permit + skipping the testsuite on architectures where large static binaries + are currently problematic (i.e., mips). Closes: #295048. + + -- Sebastien Bacher <seb128@debian.org> Sun, 13 Feb 2005 19:23:39 +0100 + +gtk+2.0 (2.6.2-2) unstable; urgency=low + + * debian/libgtk2.0-bin.postinst: + - don't run gtk-update-icon-cache, the themes should do that + (Closes: #293568). + * debian/patches/003_iconcache.patch: + - should fix the gtk-update-icon-cache issue on sparc. + + -- Sebastien Bacher <seb128@debian.org> Sun, 6 Feb 2005 19:57:57 +0100 + +gtk+2.0 (2.6.2-1) unstable; urgency=low + + * New upstream release: + - fix the loop in gtkdialog (Closes: #291051). + - should fix the issue on sparc (Closes: #293711). + + -- Sebastien Bacher <seb128@debian.org> Sun, 6 Feb 2005 00:16:52 +0100 + +gtk+2.0 (2.6.1-2) unstable; urgency=low + + * Upload to unstable. + * debian/patches/004_gtkmodules.patch: + - don't reverse the order of modules, that fix a crash with the modules. + + -- Sebastien Bacher <seb128@debian.org> Wed, 2 Feb 2005 18:28:09 +0100 + +gtk+2.0 (2.6.1-1) experimental; urgency=low + + * New upstream release. + + -- Sebastien Bacher <seb128@debian.org> Sun, 9 Jan 2005 14:23:07 +0100 + +gtk+2.0 (2.6.0-1) experimental; urgency=low + + * New upstream release (Closes: #275239). + * debian/control.in: + - create a gtk2-engines-pixbuf package. + - recommends hicolor-icon-theme (Closes: #287334). + - rename libgtk2.0-dbg to libgtk2.0-0-dbg. + - updated the Build-Depends. + * debian/gtk2-engines-pixbuf.files: + - added. + * debian/libgtk2.0-bin.files: + - install gtk-update-icon-cache here. + * debian/libgtk2.0-bin.postinst: + - call gtk-update-icon-cache. + * debian/patches/001_gtk+-debian-aclocal-pass_all.patch: + - removed, should not be needed with the new version. + * debian/patches/003_treeview-typeahead.patch, + debian/patches/003_filechooser-search.patch, + debian/patches/004_treeview-activate.patch, + debian/patches/005_modifiers.patch: + - removed, these changes are in the new version. + * debian/rules: + - updated the shlibs. + - use dh_strip to make the debug package. + * update-gtk-immodules.in: + * update-gdkpixbuf-loaders.in: + - module version is 2.4.0. + * debian/watch: + - updated. + + -- Sebastien Bacher <seb128@debian.org> Wed, 29 Dec 2004 18:55:11 +0100 + +gtk+2.0 (2.4.14-2) unstable; urgency=low + + * debian/patches/003_filechooser-search.patch: + - open the path entry if "/" is enter in the file-selector. + * debian/patches/004_treeview-activate.patch: + - typeahead active the row. + * debian/patches/005_modifiers.patch: + - accept shift-/ for bringing up the location popup. + + -- Sebastien Bacher <seb128@debian.org> Tue, 21 Dec 2004 16:21:15 +0100 + +gtk+2.0 (2.4.14-1) unstable; urgency=low + + * New upstream release (Closes: #286021). + * debian/control.in: + - set myself as maintainer. + * debian/patches/003_treeview-typeahead.patch: + - backport of the typeahead feature for the treeviews. + + -- Sebastien Bacher <seb128@debian.org> Sun, 19 Dec 2004 14:55:07 +0100 + +gtk+2.0 (2.4.13-1) unstable; urgency=low + + * New upstream release: + - make new notebook tabs appear again (Closes: #276266). + + -- Sebastien Bacher <seb128@debian.org> Wed, 13 Oct 2004 16:48:13 +0200 + +gtk+2.0 (2.4.11-1) unstable; urgency=low + + * New upstream release. + + -- Sebastien Bacher <seb128@debian.org> Mon, 11 Oct 2004 19:48:52 +0200 + +gtk+2.0 (2.4.10-1) unstable; urgency=low + + * New upstream release. + * debian/patches/002_xpmico.patch: + - updated, the two xpm fixes are in the new version. + + -- Sebastien Bacher <seb128@debian.org> Sun, 19 Sep 2004 00:19:27 +0200 + +gtk+2.0 (2.4.9-2) unstable; urgency=high + + * debian/patches/002_xpmico.patch: + - fix CAN-2004-0782 Heap-based overflow in pixbuf_create_from_xpm. + - fix CAN-2004-0783 Stack-based overflow in xpm_extract_color. + - fix CAN-2004-0788 ico loader integer overflow. + + -- Sebastien Bacher <seb128@debian.org> Fri, 17 Sep 2004 12:23:02 +0200 + +gtk+2.0 (2.4.9-1) unstable; urgency=medium + + * GNOME team upload. + * New upstream release. + * debian/patches/002_gtk+-pixbuf-breakage.patch: removed, included in + upstream version 2.4.8. + + -- Jordi Mallach <jordi@debian.org> Thu, 26 Aug 2004 14:41:17 +0200 + +gtk+2.0 (2.4.7-1) unstable; urgency=medium + + * GNOME team upload. + * New upstream release. + * debian/patches/002_gtk+-pixbuf-breakage.patch: new, apply patch + from CVS to fix thumbnail corruption in nautilus. + + -- Jordi Mallach <jordi@debian.org> Wed, 25 Aug 2004 20:12:28 +0200 + +gtk+2.0 (2.4.4-2) unstable; urgency=medium + + * Rebuilt with libtiff4. + * debian/control.in: + - Build-Depends on libtiff4-dev. + + -- Sebastien Bacher <seb128@debian.org> Wed, 28 Jul 2004 23:11:54 +0200 + +gtk+2.0 (2.4.4-1) unstable; urgency=low + + * New upstream release + - fix the problem with directories displayed twice in the file chooser + (Closes: #249057). + * debian/control.in: + - libgtk2.0-bin Conflicts with old libgtk2.0-dev. + + -- Sebastien Bacher <seb128@debian.org> Sun, 11 Jul 2004 00:33:45 +0200 + +gtk+2.0 (2.4.3-3) unstable; urgency=low + + * debian/control.in: + - since manpages have moved from libgtk2.0-dev to libgtk2.0-bin we need + to update the Replaces. + + -- Sebastien Bacher <seb128@debian.org> Mon, 5 Jul 2004 21:15:25 +0200 + +gtk+2.0 (2.4.3-2) unstable; urgency=low + + * debian/libgtk2.0-bin.files: + - moved gdk-pixbuf-query-loader and gtk-query-immodules-2.0 manpages + to libgtk2.0-bin. (Closes: #257399). + * debian/libgtk2.0-doc.doc-base.gtk-faq, + debian/libgtk2.0-doc.doc-base.gtk-tutorial: + - changed index.html with book1.html. + * Included devehelp files from Richard Cohen <richard@daijobu.co.uk> + for the faq and the tutorial (Closes: #256844). + + -- Sebastien Bacher <seb128@debian.org> Sat, 3 Jul 2004 12:14:38 +0200 + +gtk+2.0 (2.4.3-1) unstable; urgency=medium + + * New upstream release + - fix the button size allocation logic (Closes: #253971, #253974). + * debian/rules + - updated the shlibs. + + -- Sebastien Bacher <seb128@debian.org> Tue, 15 Jun 2004 11:29:13 +0200 + +gtk+2.0 (2.4.2-1) unstable; urgency=low + + * New upstream release (Closes: #252690). + + -- Sebastien Bacher <seb128@debian.org> Sat, 5 Jun 2004 17:23:57 +0200 + +gtk+2.0 (2.4.1-4) unstable; urgency=low + + * Conflict with librsvg2-common << 2.6.3-1 (closes: #250714, #250647). + + -- Josselin Mouette <joss@debian.org> Tue, 25 May 2004 14:15:22 +0200 + +gtk+2.0 (2.4.1-3) unstable; urgency=low + + * GNOME Team Upload. + * Upload to unstable + + close bug fixed in experimental uploads + (Closes: #161244, #201429, #201507, #203677, #208744, #223316, #228603) + (Closes: #232081, #234902, #238479, #241860) + * Marc Brockschmidt <he@debian.org> + + debian/rules: Really, *really* surpress warnings when removing directories + (using >/dev/null 2>&1 instead of 2>&1 >/dev/null) + + -- Sebastien Bacher <seb128@debian.org> Sat, 22 May 2004 15:23:21 +0200 + +gtk+2.0 (2.4.1-2) experimental; urgency=low + + * debian/control.in: + + Conflict with old versions of packages that need a rebuild to work with + gtk+2.4 to force the updates. + + -- Sebastien Bacher <seb128@debian.org> Sat, 15 May 2004 23:24:07 +0200 + +gtk+2.0 (2.4.1-1) experimental; urgency=low + + * New upstream release. + * Akira TAGOH <tagoh@debian.org> + + debian/control: + - added libgtk2.0-0 to Depends for libgtk2.0-common. (from 2.2.4-6). + - libgtk2.0-dev requires libxext-dev. (Closes: #247469) + * Sebastien Bacher <seb128@debian.org> + + debian/rules: + - updated shlib to 2.4.1. + + -- Sebastien Bacher <seb128@debian.org> Wed, 5 May 2004 23:32:54 +0200 + +gtk+2.0 (2.4.0-4) experimental; urgency=low + + * Akira TAGOH <tagoh@debian.org> + + debian/control: + - moved arch-independent files to libgtk2.0-common again. + - separated arch-dependent files to libgtk2.0-bin. + + -- Akira TAGOH <tagoh@debian.org> Sat, 24 Apr 2004 02:11:52 +0900 + +gtk+2.0 (2.4.0-3) experimental; urgency=low + + * Akira TAGOH <tagoh@debian.org> + + debian/rules: + - modified the sed script to strip the version properly. + (closes: Bug#241860) + - clean up. + + debian/control: + - updated the dependencies for the separated xlibs-dev. (from 2.2.4-4) + - separated arch-independent data to libgtk2.0-data package. + (from 2.2.4-4) + + -- Akira TAGOH <tagoh@debian.org> Fri, 23 Apr 2004 22:43:58 +0900 + +gtk+2.0 (2.4.0-2) experimental; urgency=low + + * debian/control.in: + + Added build dependency on libxcursor-dev. (Closes: #239886) + + Sebastien Bacher <seb128@debian.org>: + * debian/rules: + + Updated shver. + * debian/control.in: + + Added again Build-Depends removed in 2.4.0-1. + + -- J.H.M. Dassen (Ray) <jdassen@debian.org> Thu, 25 Mar 2004 11:18:48 +0100 + +gtk+2.0 (2.4.0-1) experimental; urgency=low + + * First upload of new GTK+ branch in experimental (Closes: #238479): + + back out locale-dependent interpretation of KP_Decimal (Closes: #234902). + + change scrolling method (Closes: #161244). + + first day of the week depends of the locale (Closes: #228603). + + fix fileselector multiple selection handling after keyboard validation + (Closes: #208744). + + fix gtktreeview crash when expanding nodes (Closes: #232081). + + fix quotes missing in gtk-2.0.m4 (Closes: #223316). + + use the new file selector (Closes: #203677, #201429, #201507). + + and probably a lot of other bug fixes and improvements ... + * Sebastien Bacher <seb128@debian.org>: + * debian/control.in: + - removed Build-Depends on docbook-utils and linuxdoc-tools-text. + * patches/001_gtk+-debian-docfix-dtds.patch: + - removed since we have a xml catalog now. + * Rob Taylor <robtaylor@fastmail.fm>: + * debian/control.in, debian/sources, debian/scripts/vars, debian/watch: + - updated for 2.4.0. + * debian/patches/: + - 002_gtk+-debian-freetype.patch: + + removed, not needed any more, configure already has the changes. + - 000_gtk+-2.2.4-non-weak-symbols.patch: + + removed, fixed in upstream source. + - 000_gtk+-2.2.4-socketfocus.patch: + + removed, fixed in upstream source. + - 001_gtk+-debian-aclocal-pass_all.patch : + + updated. + - 000_gtk+-2.2.0-buildfix-immodule.patch + + updated. + - 000_gtk+-debian-xinerama-pic.patch + + updated. + + -- Sebastien Bacher <seb128@debian.org> Mon, 22 Mar 2004 22:00:09 +0100 + +gtk+2.0 (2.2.4-6) unstable; urgency=low + + * Akira TAGOH <tagoh@debian.org> + + debian/control: + - added libxt-dev to fix FTBFS. (closes: Bug#246450) + - added libgtk2.0-0 to Depends for libgtk2.0-common. + + -- Akira TAGOH <tagoh@debian.org> Tue, 4 May 2004 11:30:56 +0900 + +gtk+2.0 (2.2.4-5) unstable; urgency=low + + * Akira TAGOH <tagoh@debian.org> + + debian/control: + - moved arch-independent files to libgtk2.0-common again. + - separated arch-dependent files to libgtk2.0-bin. + + -- Akira TAGOH <tagoh@debian.org> Sat, 24 Apr 2004 01:12:08 +0900 + +gtk+2.0 (2.2.4-4) unstable; urgency=low + + * Akira TAGOH <tagoh@debian.org> + + debian/rules: + - bumped the shlib version to 2.2.1-3. (closes: Bug#208671) + + debian/control: + - separated arch-independent data to libgtk2.0-data package. + (closes: Bug#233396) + - fixed the dependencies for the separated xlibs-dev. + (closes: Bug#241782, Bug#241522) + + debian/libgtk2.0-data.{dir,files}: + - added. + + -- Akira TAGOH <tagoh@debian.org> Thu, 22 Apr 2004 00:42:02 +0900 + +gtk+2.0 (2.2.4-3) unstable; urgency=low + + * debian/patches/: + - 002_gtk+-debian-freetype.patch: patch from Daniel Schepler to fix the + build failure due to freetype (Closes: #225129). + + -- Sebastien Bacher <seb128@debian.org> Sat, 27 Dec 2003 13:00:17 +0100 + +gtk+2.0 (2.2.4-2) unstable; urgency=low + + * debian/control: + - added Uploaders to maintain as team. + - added gnome-pkg-tools to Build-Depends. + * debian/gtk-options.7: + - included a manpage with the help on the options (Closes: Bug#216897). + * debian/libgtk2.0-doc.doc-base.gtk-faq + * debian/libgtk2.0-doc.doc-base.gtk-tutorial: + - replaced book1.html by index.html (closes: Bug#215382). + * debian/patches/: + - 000_gtk+-2.2.4-socketfocus.patch: new patch to fix a GtkSocket focus + problem that hang the system tray applet. + (closes: Bug#210813, Bug#212772). + - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: updated + (closes: Bug#216660). + * debian/rules: + - modified to generate debian/control using gnome-pkg-tools. + + -- Sebastien Bacher <seb128@debian.org> Fri, 31 Oct 2003 21:32:29 +0100 + +gtk+2.0 (2.2.4-1) unstable; urgency=low + + * New upstream release. + - implemented the im module that produces C_WITH_CEDILLA rather than + C_WITH_ACUTE for dead_acute+c combinations. it will be used as default + im module for fr and pt. (closes: Bug#168557) + - reworked the handling of XIM's status window. (closes: Bug#203009) + * debian/control: + - removed libgtk2.0-0png3 which is unnecessary anymore. + - added non-versioned Conflicts: libgtk2.0-0png3. + - bumped Standards-Version to 3.6.1.0. + * debian/patches/: removed the backported patches. + - 000_gtk+-2.2.2-docfix-gtk2compliant.patch + - 000_gtk+-2.2.2-docfix-gtktreemodel.patch + - 000_gtk+-2.2.2-gtkwidget-viewable.patch + - 000_gtk+-2.2.2-imxim-reconnect.patch + + -- Akira TAGOH <tagoh@debian.org> Mon, 8 Sep 2003 03:42:18 +0900 + +gtk+2.0 (2.2.2-3) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.2-docfix-gtk2compliant.patch: applied a backported patch + from CVS to fix the old documentation. (closes: Bug#146723) + - 000_gtk+-2.2.2-docfix-gtktreemodel.patch: applied a backported patch + from CVS to fix the sample code. (closes: Bug#201322) + - 000_gtk+-2.2.2-gtkwidget-viewable.patch: applied a backported patch from + CVS to fix the garbled pixmaps. (closes: Bug#201808, Bug#202486) + - 000_gtk+-2.2.2-imxim-reconnect.patch: applied a backported patch from + CVS to fix the segfaults if the XIM server is killed during running gtk2 + applications. + - 001_gtk+-debian-docfix-dtds.patch: applied to use the local DTD. + * debian/control: + - added Build-Depends-Indep: gtk-doc-tools, docbook-xml to re-generate the + fixed documents. + + -- Akira TAGOH <tagoh@debian.org> Thu, 7 Aug 2003 01:42:46 +0900 + +gtk+2.0 (2.2.2-2) unstable; urgency=low + + * debian/patches/: + - 001_gtk+-debian-aclocal-pass_all.patch: re-applied a patch to fix FTBFS + on arm. (closes: Bug#201443) + + -- Akira TAGOH <tagoh@debian.org> Thu, 24 Jul 2003 03:14:10 +0900 + +gtk+2.0 (2.2.2-1) unstable; urgency=low + + * New upstream release. (closes: Bug#200350) + - Fixed threadlocks on GtkTreeView. (closes: Bug#192136) + - Fixed the crash on moving the cursor when the cursor is invisible. + (closes: Bug#187858) + - Fixed the compose table for ascending order. (closes: Bug#182073) + * debian/control: + - fix the FTBFS. Thanks to Daniel Baeyens. + - bumped Standards-Version to 3.6.0. + * debian/rules: + - removed dh_undocumented. + - don't claim the newer shlibs. + * debian/patches/: + - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch: removed. + - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch: removed. + - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch: removed. + - 000_gtk+-2.2.1-gtktreeview-scroll.patch: removed. + - 000_gtk+-debian-xinerama-pic.patch: updated. + - 001_gtk+-debian-aclocal.patch: removed. + - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: applied a Ximian patch + to improve the GtkFileSel UI. Requested from Ross Burton. + - 000_gtk+-2.2.2-non-weak-symbols.patch: applied to fix the undefined non + weak symbols. (closes: Bug#193774) + + -- Akira TAGOH <tagoh@debian.org> Sun, 13 Jul 2003 21:26:49 +0900 + +gtk+2.0 (2.2.1-6) unstable; urgency=low + + * debian/patches/001_gtk+-debian-aclocal.patch: + - damn. forgot to re-run automake and autoconf. fix again. + (closes: Bug#190569) + + -- Akira TAGOH <tagoh@debian.org> Sat, 3 May 2003 16:56:18 +0900 + +gtk+2.0 (2.2.1-5) unstable; urgency=low + + * debian/control: + - changed a section for libgtk2.0-dbg to libdevel. + * debian/patches/000_gtk+-debian-aclocal.patch: + - applied to fix Xinerama library linkage broken on arm and m68k. + (closes: Bug#190569) + Thanks to James Troup and Phil Blundell. + + -- Akira TAGOH <tagoh@debian.org> Sat, 3 May 2003 01:50:52 +0900 + +gtk+2.0 (2.2.1-4) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch: + applied a backported patch from CVS. (closes: Bug#185066) + - 000_gtk+-2.2.1-gtktreeview-scroll.patch: + applied a patch from Red Hat to fix infinite expose loops in TreeView. + (closes: Bug#187312) + * debian/control: + - bumped Standards-Version to 3.5.9. + - changed a section for libgtk2.0-dev to libdevel. + * debian/rules: + - fixed the symlinks on /usr/share/gtk-doc/html. (closes: Bug#183377) + * debian/compat: + - use it instead of DH_COMPAT. + + -- Akira TAGOH <tagoh@debian.org> Fri, 4 Apr 2003 01:55:35 +0900 + +gtk+2.0 (2.2.1-3) unstable; urgency=low + + * build against the latest xlibs and xlibs-pic. so now correct + libXinerama_pic.a is linked and supporting xinarama is re-enabled. + (closes: Bug#177318) + * debian/control: + - depend on xlibs-pic (>= 4.2.1-6) + * debian/README.Debian: + - improve description of static libraries issue. (closes: Bug#181879) + Thanks to Marcelo E. Magallon <mmagallo@debian.org> + - mention gtk-key-theme-name and gnome-settings-daemon. + * debian/rules: + - create the symlinks in /usr/share/gtk-doc + + -- Akira TAGOH <tagoh@debian.org> Mon, 3 Mar 2003 01:35:04 +0900 + +gtk+2.0 (2.2.1-2) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch: + backport from CVS to fix wrong pointer returned. (closes: Bug#180786) + - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch: + applied to fix a crash when using xinput. (closes: Bug#178908) + + -- Akira TAGOH <tagoh@debian.org> Wed, 19 Feb 2003 03:10:55 +0900 + +gtk+2.0 (2.2.1-1) unstable; urgency=low + + * New upstream release. + * debian/patches/: removed patches. they were fixed in this release. + - 000_gtk+-2.2.0-buildfix-modules.patch + - 000_gtk+-2.2.0-fix-es.po.patch + - 000_gtk+-2.2.0-fnmatch-undef.patch + - 002_gtk+-2.2.0-fixtypo-xinput.patch + * debian/patches/000_gtk+-debian-xinerama-pic.patch: update. + + -- Akira TAGOH <tagoh@debian.org> Fri, 7 Feb 2003 03:37:44 +0900 + +gtk+2.0 (2.2.0-3) unstable; urgency=low + + * debian/: clean the unnecessary files up. (closes: Bug#177809) + * debian/rules: + remove the old debug libraries on install process if exists. (closes: + Bug#177376) + * debian/patches/: + - 002_gtk+-2.2.0-fixtypo-xinput.patch: + fix to enable XFree86 xinput extension. (closes: Bug#176104) + - 000_gtk+-2.2.0-fix-es.po.patch: + applied to fix es.po. (closes: Bug#178870) + + -- Akira TAGOH <tagoh@debian.org> Wed, 29 Jan 2003 23:01:43 +0900 + +gtk+2.0 (2.2.0-2) unstable; urgency=low + + * debian/control: + - add Conflicts libgnomeui-0 (<< 2.0.6-2) to avoid the gtk+ 2.2 breakage. + (closes: Bug#175946) + - add Conflicts gtk2.0-examples (<< 2.2.0) (closes: Bug#175868) + - add dependency of libgtk2.0-common. (closes: Bug#175873) + - removed libgtk-common package. it's no longer needed. I hope the loop + dependency will be disappeared. + - used libpng12-0-dev instead of libpng3-dev for Build-Depends. + * debian/patches/001_gtk+-2.2.0-xinerama-pic.patch: + disabled Xinerama support until xlibs-pic has libXinerama_pic.a. + (closes: Bug#175923) + + -- Akira TAGOH <tagoh@debian.org> Sat, 11 Jan 2003 05:09:12 +0900 + +gtk+2.0 (2.2.0-1) unstable; urgency=low + + * New upstream release. + - upstream bug were closed. so it should be fixed. (closes: Bug#147697) + * debian/control: + - updated Build-Depends. + - bumped Standards-Version to 3.5.8. + - fix description-synopsis-ends-with-full-stop stuff. + * debian/update-gdkpixbuf-loaders: add brand-new wrapper script. + * debian/update-gdkpixbuf-loaders.1: add manpage. + * debian/rules: + modified to build the static libraries. (closes: Bug#161938) + * debian/README.Debian: updated. + * debian/patches/: + - 000_gtk+-2.0.6-extranotify.patch: removed. + - 000_gtk+-2.0.6-scroll_to.patch: removed. + - 000_gtk+-2.2.0-fnmatch-undef.patch: + applied to fix having main() in the library. + - 000_gtk+-2.2.0-buildfix-immodule.patch: + applied to build the static libraries. + - 000_gtk+-2.2.0-buildfix-modules.patch: + applied to fix a typo in configure.in. + + -- Akira TAGOH <tagoh@debian.org> Mon, 6 Jan 2003 18:34:31 +0900 + +gtk+2.0 (2.0.9-1) unstable; urgency=low + + * New upstream release. + * debian/patches/000_gtk+-2.0.8-refcolormap.patch: this release contains it. + removed. + + -- Akira TAGOH <tagoh@debian.org> Sun, 24 Nov 2002 00:08:42 +0900 + +gtk+2.0 (2.0.8-2) unstable; urgency=low + + * debian/patches/000_gtk+-2.0.8-refcolormap.patch: applied to fix the crash + problem with close. For solve your problem, I recommend you restart all + processes related gtk+2.0. (closes: Bug#169005) + + -- Akira TAGOH <tagoh@debian.org> Fri, 15 Nov 2002 09:16:40 +0900 + +gtk+2.0 (2.0.8-1) unstable; urgency=low + + * New upstream release. + * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: it's no longer needed. + * debian/rules: fix twice called ldconfig. (closes: Bug#168071) + + -- Akira TAGOH <tagoh@debian.org> Sun, 10 Nov 2002 16:36:45 +0900 + +gtk+2.0 (2.0.7-1) unstable; urgency=low + + * New upstream release. + * debian/rules: + - support noopt option for DEB_BUILD_OPTIONS. + - add symlink for gobject. (closes: Bug#167755) + * Hm, closed a bug which is marked as NMU due to mis-upload. (closes: + Bug#166442) + * debian/patches: these patches are no longer needed, so removed. + - 000_gtk+-2.0.6-64bitfix.patch + - 000_gtk+-2.0.6-imenvvar.patch + - 000_gtk+-2.0.6-keycode.patch + - 000_gtk+-2.0.6-usintl.patch + * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: applied to fix the + undefined symbol issue on libpixbufloader-gif.so. + + -- Akira TAGOH <tagoh@debian.org> Wed, 6 Nov 2002 01:42:22 +0900 + +gtk+2.0 (2.0.6-4) unstable; urgency=low + + * debian/patches/000_gtk+-2.0.6-64bitfix.patch: applied to fix a segfault on + IA64. (closes: Bug#166442) + + -- Akira TAGOH <tagoh@debian.org> Sun, 27 Oct 2002 03:07:59 +0900 + +gtk+2.0 (2.0.6-3) unstable; urgency=low + + * debian/control: moved libgtk2.0-0png3 to the last entry. + * debian/rule: fix invalid symlink. + + -- Akira TAGOH <tagoh@debian.org> Sat, 31 Aug 2002 09:46:36 +0900 + +gtk+2.0 (2.0.6-2) unstable; urgency=low + + * debian/control: + - bumped Standards-Version and depends debhelper (>> 4). + - revert to libgtk2.0-0 and remove Conflicts libgtk2.0-0, then add + versioned conflict to work eog2, gnome-panel2, celestia, gimp1.3 and + metatheme. (closes: Bug#155689, Bug#155854) + - add libgtk2.0-0png3 to Conflicts, Replaces. + - add a dummy package for libgtk2.0-0png3. + - remove the image libraries dependency. (closes: Bug#158858) + - clean up -dev's Depends. + - add libglib2.0-doc, libatk1.0-doc and libpango1.0-doc to Suggests. + * debian/patches/: from Red Hat. + - 000_gtk+-2.0.6-exportsymbols.patch: + applied to fix stripping the wrong symbols due to libtool's bug. but + it's not affected about the symbols used by ld and ld.so. mainly for nm, + gdb and etc. + - 000_gtk+-2.0.6-extranotify.patch: + applied to fix extra settings notifies on startup that were causing + significant performance problems as fonts were reloaded. + - 000_gtk+-2.0.6-imenvvar.patch: + applied to fix a bug with GTK_IM_MODULE environment variable. + - 000_gtk+-2.0.6-keycode.patch: applied to fix a problem with keycodes + passed to GtkIMContextXIM. + - 000_gtk+-2.0.6-usintl.patch: + applied to fix to GtkIMContextSimple compose for us-intl keyboards. + should be fixed. (closes: Bug#149515) + - 000_gtk+-2.0.6-scroll_to.patch: + applied to fix gtk_tree_view_scroll_to_cell. + * debian/rules: add symlink to fix the missing symlink for glib, atk and + pango. (closes: Bug#158107) + * debian/update-gtk-immodules.fr.1: added. Thanks Julien Louis. (closes: + Bug#156985) + + -- Akira TAGOH <tagoh@debian.org> Sat, 31 Aug 2002 05:22:33 +0900 + +gtk+2.0 (2.0.6-1) unstable; urgency=low + + * New upstream release. + * Build against libpng3 (closes: 147852) + + -- Akira TAGOH <tagoh@debian.org> Sun, 4 Aug 2002 18:31:53 +0900 + +gtk+2.0 (2.0.5-2) unstable; urgency=low + + * debian/rules: add --with-xinput=xfree. (closes: Bug#151668) + * debian/control: + - add Conflicts: libgdkxft0 to avoid some problem. (closes: Bug#151439). + - changed a summary from 'Dummy' to 'Empty'. + + -- Akira TAGOH <tagoh@debian.org> Thu, 4 Jul 2002 00:18:53 +0900 + +gtk+2.0 (2.0.5-1) unstable; urgency=low + + * New upstream release. + * debian/control: fix typo (closes: Bug#150147) + + -- Akira TAGOH <tagoh@debian.org> Mon, 17 Jun 2002 01:07:20 +0900 + +gtk+2.0 (2.0.4-1) unstable; urgency=low + + * New upstream release. + - should be fixed in this release. (closes: Bug#149667) + - now it's not linked to the Pango docs (closes: Bug#149143) + * debian/libgtk2.0-doc.doc-base.{gdk,gdk-pixbuf,gtk,gtk-faq,gtk-tutorial}: + add a new line before Format: (closes: Bug#149548, Bug#150043) + + -- Akira TAGOH <tagoh@debian.org> Sun, 16 Jun 2002 05:16:29 +0900 + +gtk+2.0 (2.0.3-1) unstable; urgency=low + + * New upstream release. + * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}: + changed an index file. + + -- Akira TAGOH <tagoh@debian.org> Thu, 30 May 2002 23:35:52 +0900 + +gtk+2.0 (2.0.2-5) unstable; urgency=high + + * debian/control: add libtiff3g-dev, libpng2-dev and libjpeg62-dev to + Depends for -dev. + * set urgency=high because previous version violated our policy 2.3.4. + it should be into woody as far as possible. + + -- Akira TAGOH <tagoh@debian.org> Thu, 23 May 2002 00:31:52 +0900 + +gtk+2.0 (2.0.2-4) unstable; urgency=high + + * debian/patches/000_gtk+2.0-2.0.2-bigendian.patch: applied to fix a problem + for big endian machines. (closes: Bug#145285) + * set urgency=high because it should be in woody. + + -- Akira TAGOH <tagoh@debian.org> Wed, 1 May 2002 02:46:12 +0900 + +gtk+2.0 (2.0.2-3) unstable; urgency=low + + * debian/update-gtk-immodules: create /etc/gtk-2.0 directory for workaround, + if it's not found. oh, why didn't you have it? (closes: Bug#143508, + Bug#144673) + + -- Akira TAGOH <tagoh@debian.org> Sun, 28 Apr 2002 04:46:30 +0900 + +gtk+2.0 (2.0.2-2) unstable; urgency=low + + * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}: + Grr, fix again... (closes: Bug#141069) + * debian/scripts/vars.build: fix bashism. + + -- Akira TAGOH <tagoh@debian.org> Sat, 6 Apr 2002 04:26:14 +0900 + +gtk+2.0 (2.0.2-1) unstable; urgency=low + + * New upstream release. + - this release has bug fix only. + * debian/control: forgot to update versioned dependency for -dev. + * debian/libgtk2.0-doc.doc-base.gtk-faq, + debian/libgtk2.0-doc.doc-base.gtk-tutorial: + fix wrong index. (closes: Bug#141069) + + -- Akira TAGOH <tagoh@debian.org> Thu, 4 Apr 2002 02:49:49 +0900 + +gtk+2.0 (2.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/update-gtk-immodules: check the immodules directory. + + -- Akira TAGOH <tagoh@debian.org> Sun, 31 Mar 2002 00:59:03 +0900 + +gtk+2.0 (2.0.0-3) unstable; urgency=low + + * debian/rules: removed regenerate shlibs. all packages no longer needs to + depend on -common. + + -- Akira TAGOH <tagoh@debian.org> Sat, 16 Mar 2002 21:51:08 +0900 + +gtk+2.0 (2.0.0-2) unstable; urgency=low + + * debian/control: changed Build-Depends to libpango1.0-dev (>= 1.0.0-3) + * debian/{control,rules}: add libgtk-common as dummy package for upgrading. + * debian/rules: fix the missing directory. + * debian/update-gtk-immodules: fix file attribute for gtk.immodules. + + -- Akira TAGOH <tagoh@debian.org> Sat, 16 Mar 2002 04:34:39 +0900 + +gtk+2.0 (2.0.0-1) unstable; urgency=low + + * Initial Release. + + -- Akira TAGOH <tagoh@debian.org> Wed, 13 Mar 2002 00:07:25 +0900 + --- gtk+2.0-2.17.10.orig/debian/gtk2.0-examples.install.in +++ gtk+2.0-2.17.10/debian/gtk2.0-examples.install.in @@ -0,0 +1,3 @@ +# from the shared flavor +debian/install/shared/usr/bin/gtk-demo usr/bin +debian/install/shared/usr/share/gtk-@APIVER@/demo usr/share/gtk-@APIVER@ --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-dev.manpages +++ gtk+2.0-2.17.10/debian/libgtk2.0-dev.manpages @@ -0,0 +1,2 @@ +debian/dh_gtkmodules.1 +debian/install/shared/usr/share/man/man1/gtk-builder-convert.1 --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-bin.preinst +++ gtk+2.0-2.17.10/debian/libgtk2.0-bin.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-bin +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/update-gtk-immodules.in +++ gtk+2.0-2.17.10/debian/update-gtk-immodules.in @@ -0,0 +1,31 @@ +#!/bin/sh + +# this script is a no-op since 2.10.3-2 +exit 0 + +set -e + +VERSION="@VERSION@" +GTK_BINARY_VERSION="@GTK_BINARY_VERSION@" +APIVER="@APIVER@" +SHARED_PKG="@SHARED_PKG@" +TMPFILE=$(mktemp -t "gtk+$APIVER-$VERSION.XXXXXXXXXX") + +echo -n "Updating the IM modules list for Gtk+ $VERSION..." +"/@LIBDIR@/$SHARED_PKG/gtk-query-immodules-$APIVER" \ + $(find "/@LIBDIR@/gtk-$APIVER/$GTK_BINARY_VERSION/immodules" -name '*.so') \ + > "$TMPFILE" +if [ "x`cat "$TMPFILE" | grep -v '^#'`" = "x" ]; then + echo "no Gtk+ IM modules found." +else + echo "done." +fi +if ! test -d "/etc/gtk-$APIVER"; then + echo -n "Creating /etc/gtk-$APIVER..." + mkdir "/etc/gtk-$APIVER" + echo "done." +fi +cp "$TMPFILE" "/etc/gtk-$APIVER/gtk.immodules" +chmod 644 "/etc/gtk-$APIVER/gtk.immodules" + +rm -f "$TMPFILE" --- gtk+2.0-2.17.10.orig/debian/libgail-dbg.dirs +++ gtk+2.0-2.17.10/debian/libgail-dbg.dirs @@ -0,0 +1 @@ +usr/lib/debug/ --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-bin.manpages +++ gtk+2.0-2.17.10/debian/libgtk2.0-bin.manpages @@ -0,0 +1,5 @@ +debian/gtk-options.7 +debian/update-gtk-immodules.8 +debian/update-gtk-immodules.fr.8 +debian/update-gdkpixbuf-loaders.8 +debian/update-icon-caches.8 --- gtk+2.0-2.17.10.orig/debian/README.Debian +++ gtk+2.0-2.17.10/debian/README.Debian @@ -0,0 +1,50 @@ +GTK+2.0 for Debian +------------------- + +Static libraries issue +====================== +If you wish to link the GTK+ 2.0 libraries statically into your program, +please note that you *can not* use the '-static' flag to gcc. +Instead, you have to link your program *dynamically* and link *only* +the GTK+ 2.0 libraries statically, like this: + +$ gcc -export-dynamic -o foo foo.c \ + -Wl,-Bstatic `pkg-config --cflags --libs gtk+-2.0` -Wl,-Bdynamic \ + [other dynamically linked libraries] + +The reason for this is that GTK+ 2.0 uses dlopen(3) in order to load +some modules. Undefined symbols in these modules are resolved by the +dynamic linker. If the program is linked statically, the linker has +no way of finding out which symbols are already present in the program +and might causes strange problem so that proper symbols isn't used -- +Initialize function in statically linked libraries is called, and some +global variable is initialized, dynamically loaded modules might also +expects those initialized global variable. + + +Key binding +=========== +gnome-settings-daemon overrides gtk-key-theme-name in your gtkrc. so if you +use GNOME 2, it won't work, and it's not a bug. +Please use gnome-keybinding-properties instead of gtk-key-theme-name in your +gtkrc. + + +Emacs-style key bindings +======================== +Gtk provides a way of configuring key bindings in Gtk Widgets, especially +to move the cursor in text fields. The default behavior in older Gtk versions +was similar to Emacs, and still available for users to configure. You can +configure the Emacs-style key binding theme in your ~/.gtkrc-2.0 file as +follows: + gtk-key-theme-name = "Emacs" + +Please note that applications can still override this configuration, and this +is the case of the GNOME Desktop: gnome-settings-daemon loads the key theme +from the "/desktop/gnome/interface/gtk_key_theme" GConf entry. This can be +modified with gconf-editor. + + +This file is the initial work of Akira TAGOH <tagoh@debian.org> and was updated +by Loic Minier <lool@dooz.org>. + --- gtk+2.0-2.17.10.orig/debian/libgail-dev.install +++ gtk+2.0-2.17.10/debian/libgail-dev.install @@ -0,0 +1,5 @@ +debian/install/shared/usr/include/gail* /usr/include +debian/install/shared/usr/lib/libgail*.so /usr/lib +debian/install/shared/usr/lib/libgail*.la /usr/lib +debian/install/static/usr/lib/libgail*.a /usr/lib +debian/install/shared/usr/lib/pkgconfig/gail*.pc /usr/lib/pkgconfig --- gtk+2.0-2.17.10.orig/debian/gtk2.0-examples.examples +++ gtk+2.0-2.17.10/debian/gtk2.0-examples.examples @@ -0,0 +1,2 @@ +# from the source +examples/* --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-0.preinst +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-0.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk-directfb-2.0-0 +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-dev.preinst +++ gtk+2.0-2.17.10/debian/libgtk2.0-dev.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-dev +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/dh_gtkmodules.in +++ gtk+2.0-2.17.10/debian/dh_gtkmodules.in @@ -0,0 +1,232 @@ +#!/usr/bin/perl -w + +=head1 NAME + +dh_gtkmodules - create Gtk module files for Gtk modules + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; +use Cwd; + +=head1 SYNOPSIS + +B<dh_gtkmodules> [S<I<debhelper options>>] + +=head1 DESCRIPTION + +B<dh_gtkmodules> is a debhelper program that handles correctly +generating Gtk module files for GdkPixbuf loaders and IM modules +that it finds in the standard module directory. + +This command automatically adds a "<package>.loaders" file to the +current package with the package name or "<package>.immodules" if it +finds any GdkPixbuf loaders or IM modules. + +If this command finds the versionned standard module directory in the +current package, it will generate a dependency on the earliest Gtk +version that Gtk currently has compatibility for in ${misc:Depends} +("binary version"). + +=head1 OPTIONS + +=over 4 + +=item B<-k> + +Do not generate any dependencies in ${misc:Depends}. + +=cut + +init(); + +# 'abs_path' from Cwd resolves symlinks, and we don't want that to happen +# (otherwise it's harder to remove the prefix of the generated output) +sub make_absolute_path { + my $path = shift; + if ($path =~ m#^/#) { + return $path; + } + my $cwd = getcwd; + return "$cwd/$path"; +} + +# gdk-pixbuf-query-loaders helper (generates a GdkPixbuf loaders module +# file on its stdout with *.so passed on its command-line) +my $queryloaders; +if ($ENV{GTK_QUERYLOADERS}) { + $queryloaders = $ENV{GTK_QUERYLOADERS}; +} else { + $queryloaders = '/@LIBDIR@/libgtk2.0-0/gdk-pixbuf-query-loaders'; +} + +# gtk-query-immodules-2.0 helper (generates an IM module file on its +# stdout with *.so passed on its command-line) +my $queryimmodules; +if ($ENV{GTK_QUERYIMMODULES}) { + $queryimmodules = $ENV{GTK_QUERYIMMODULES}; +} else { + $queryimmodules = '/@LIBDIR@/libgtk2.0-0/gtk-query-immodules-2.0'; +} + +# relative Gtk base module path +my $modules_base_path = '@MODULES_BASE_PATH@'; + +# relative path to GdkPixbuf loaders modules (separated by ":") +my $loaders_modules_path = "$modules_base_path/loaders"; +# relative directory to store the generated loader module file +my $loader_module_files_d = "$modules_base_path/loader-files.d"; + +# relative path to IM modules (separated by ":") +my $im_modules_path = "$modules_base_path/immodules"; +# relative directory to store the generated IM module file +my $im_module_files_d = "$modules_base_path/immodule-files.d"; + +# Gtk binary version virtual Provide +my $gtk_binver_dep = '@GTK_BINVER_DEP@'; + +sub find_modules { + # where to store the modules we find + my $modules_ref = shift; + # base directory to prepend to the list of locations + my $basedir = shift; + # list of locations to search relative to $basedir separated with ":" + my $path = shift; + + foreach (map("$basedir/$_", split(/:/, $path))) { + # it's necessary to make the path absolute to strip the build-time + # prefix later on + my $path = make_absolute_path($_); + if (! -e $path) { + verbose_print("skipping $path."); + next; + } + if (-d $path) { + # if path is a directory (or symlink to a directory), search for + # *.so files or symlinks + open(FIND, + "find '$path' -name '*.so' \\( -type f -or -type l \\) |") + or die "Can't run find: $!"; + while (<FIND>) { + chomp; + push @$modules_ref, $_; + } + close FIND or die "Error while running find: $!"; + } elsif (-f $path or -l $path) { + # if path is a file or symlink, simply add it to the list + push @$modules_ref, $path; + } else { + error("$path has unknown file type."); + } + } +} + +sub query_modules { + # absolute pathname to query helper + my $querymodules = shift; + # base directory to prepend to the output module file and to strip + # of the output + my $basedir = shift; + # relative directory where to write the module file + my $module_files_d = shift; + # relative path of the module file + my $module_file = shift; + # modules to query + my @modules = @_; + + my $do_query = join ' ', $querymodules, @modules; + open(QUERY, "$do_query 2>&1 |") + or die "Can't query modules with $querymodules: $!"; + + doit("rm", "-f", "$module_file"); + if (! -d "$basedir/$module_files_d") { + doit("install", "-d", "$basedir/$module_files_d"); + } + complex_doit("printf '%s\\n' '# automatically generated by dh_gtkmodules, do not edit' >>$module_file"); + + my $absolute_basedir = make_absolute_path($basedir); + my $n_lines = 0; + while (<QUERY>) { + next if m/^#/; + chomp; + # if some module couldn't be loaded by the query helper, bail out + if (m#^g_module_open\(\) failed for #) { + error("$querymodules could not load a module:\n$_\nYou should probably make the libraries built by your package available via LD_LIBRARY_PATH."); + } + # strip build-time prefix from output + if (m#^\Q"$absolute_basedir/\E#) { + s#^\Q"$absolute_basedir/\E#"/#; + } + complex_doit("printf '%s\\n' '$_' >>$module_file"); + $n_lines++; + } + # nothing written to the module file, fail miserably + if (0 == $n_lines) { + doit("rm", "-f", "$module_file"); + error("Internal error: could not find any module in the output of $querymodules."); + } + + doit("chmod", 644, "$module_file"); + doit("chown", "0:0", "$module_file"); + + close QUERY or die "Error while querying modules with $querymodules: $!"; +} + +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp = tmpdir($package); + my @loaders_modules = (); + my @im_modules = (); + + # if the versionned directory isn't present, give up on package + if (! -d "$tmp/$modules_base_path") { + next; + } + + # since the versionned module directory exists, generate a dependency + # on the Gtk binary version + if (! $dh{K_FLAG}) { + addsubstvar($package, "misc:Depends", $gtk_binver_dep); + } + + # search for specific module types + find_modules(\@loaders_modules, $tmp, $loaders_modules_path); + find_modules(\@im_modules, $tmp, $im_modules_path); + + warning("Package $package has " + @loaders_modules + " GdkPixbuf loaders and " + @im_modules + " Gtk IM modules."); + + # if no modules of these types were found, we're done + if (0 == @loaders_modules + @im_modules) { + next; + } + + if (@loaders_modules) { + query_modules($queryloaders, + $tmp, + $loader_module_files_d, + "$tmp/$loader_module_files_d/$package.loaders", + @loaders_modules); + } + if (@im_modules) { + query_modules($queryimmodules, + $tmp, + $im_module_files_d, + "$tmp/$im_module_files_d/$package.immodules", + @im_modules); + } +} + +=back + +=head1 SEE ALSO + +L<debhelper> + +This program relies on Debhelper, but is shipped with the Gtk +development files. + +=head1 AUTHOR + +Loic Minier <lool@dooz.org> + +=cut --- gtk+2.0-2.17.10.orig/debian/gtk2-engines-pixbuf.install.in +++ gtk+2.0-2.17.10/debian/gtk2-engines-pixbuf.install.in @@ -0,0 +1,2 @@ +# from the shared flavor +debian/install/shared/@MODULES_BASE_PATH@/engines/*.so @MODULES_BASE_PATH@/engines --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-0.install.in +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-0.install.in @@ -0,0 +1,2 @@ +# from the directfb flavor +debian/install/directfb/@LIBDIR@/*directfb*.so.* @LIBDIR@ --- gtk+2.0-2.17.10.orig/debian/control.in +++ gtk+2.0-2.17.10/debian/control.in @@ -0,0 +1,392 @@ +Source: gtk+@APIVER@ +Section: libs +Priority: optional +Maintainer: Sebastien Bacher <seb128@ubuntu.com> +Uploaders: @GNOME_TEAM@ +Build-Depends: debhelper (>= 5.0.22), + gettext, + pkg-config, + autotools-dev, + libglib2.0-dev (>= 2.21.3), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.13.0), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxt-dev, + libxrender-dev, + libxft-dev, + libxcursor-dev, + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + libxkbfile-dev, + libxinerama-dev (>= 1:1.0.1-4.1), + libxfixes-dev (>= 1:3.0.0-3), + libcairo2-dev (>= 1.6.4-6.1), + libtiff4-dev, + libjpeg62-dev, + libjasper-dev, + libpng12-dev, + gnome-pkg-tools (>= 0.11), + chrpath, + dpkg-dev (>= 1.13.19), + x11proto-xext-dev, + libdirectfb-dev (>= 1.0.0), + libcups2-dev (>= 1.2), + quilt, + gawk +Build-Depends-Indep: gtk-doc-tools (>= 1.8), + docbook-xml, + libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc, + libcairo2-doc +Standards-Version: 3.8.0 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu + +Package: @SHARED_PKG@ +Section: libs +Architecture: any +Depends: @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends}, + shared-mime-info +Provides: @GTK_BINVER_DEP@ +Conflicts: libgtk2.0-0png3, + eog2 (<< 1.0.1-4), + gnome-panel2 (<< 2.0.4-1), + celestia (<< 1.2.4-4), + gimp1.3 (<< 1.3.7-1.1), + metatheme (<< 0.9.7-3), + libgnomeui-0 (<= 2.14.1-3), + gtk2.0-examples (<< 2.2.0), + libgdkxft0, + openoffice.org-core (<< 2.2.1-8), + gtk2-engines-wonderland (<< 1.0-4), + gtk2-engines-cleanice (<< 2.4.0-1.1), + gtk2-engines-thinice (<< 2.6), + gtk2-engines-crux (<< 2.6), + gtk2-engines-mist (<< 2.6), + gtk2-engines-highcontrast (<< 2.6), + gtk2-engines-lighthouseblue (<< 2.6), + gnome-themes (<< 2.6), + gtk2-engines-industrial (<< 0.2.32-5), + gtk2-engines-pixbuf (<= 2.10), + gtk2-engines-redmond95 (<< 2.2.0-2.1), + gtk2-engines-metal (<< 2.2.0-2.1), + gtk2-engines-magicchicken (<< 1.1.1-7.1), + gtk2-engines-qtpixmap (<< 0.28-1.2), + gtk2-engines-smooth (<< 0.5.6-3), + gtk2-engines-ubuntulooks (<= 0.9.11-1), + gtk2-engines-xfce (<< 2.4.0-1), + tamil-gtk2im (<< 2.2-4.4), + imhangul (<< 0.9.13-5), + librsvg2-common (<= 2.14.4-2), + gtk2-engines (<< 1:2.8.2-2), + gtk2-engines-gtk-qt (<< 1:0.7-2), + iiimgcf (<= 11.4.1870-7.3), + scim-bridge (<= 0.2.4-1), + scim-gtk2-immodule (<< 1.4.4-8), + gtk-im-libthai (<< 0.1.4-3), + uim-gtk2.0 (<< 1:1.4.1-3), + libwmf-dev (<< 0.2.8.4-5), + libwmf0.2-7 (<< 0.2.8.4-5), + swf-player (<< 0.3.6-2.3), + gcin (<< 1.3.4-2), + gtk-qt-engine (<< 1:0.8~svn-rev36-1), + iiimf-client-gtk (<< 12.3.91-4), + libginspx0 (<< 20050529-1.1), + scim-bridge-client-gtk (<< 0.4.10-1.1), + iiimgcf (<= 11.4.1870-7), + libwxgtk2.6-0 (<< 2.6.3.2.2-1), + glabels (<< 2.1.3-3), + libeel2-2.18, + xfwm4 (<< 4.4.1-3), + metacity (<< 1:2.20.0-1) +Replaces: libgtk2.0-0png3 +Recommends: hicolor-icon-theme, + @BIN_PKG@ +Suggests: librsvg2-common, + gvfs +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the shared libraries. + +Package: @DIRECTFB_PKG@ +Section: libs +Architecture: any +Depends: @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends} +Conflicts: libgtk+2.0-directfb0 +Description: The GTK+ graphical user interface library - DirectFB runtime + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This version uses DirectFB, a thin library providing an integrated + windowing system and hardware acceleration on top of the Linux + framebuffer. + +Package: @UDEB_PKG@ +XC-Package-Type: udeb +Section: debian-installer +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Provides: @GTK_BINVER_DEP@ +Description: The GTK+ graphical user interface library - minimal runtime + This is a udeb, or a microdeb, for the debian-installer. + . + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the minimal runtime library using DirectFB needed + by the Debian installer. + +Package: @COMMON_PKG@ +Section: misc +Architecture: all +Depends: ${misc:Depends} +Recommends: @SHARED_PKG@ +Replaces: libgtk1.3-common, + libgtk2.0-data +Conflicts: libgtk1.3-common, + libgtk2.0-data +Description: Common files for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the common files which the libraries need. + +Package: @BIN_PKG@ +Section: misc +Architecture: all +Depends: ${misc:Depends}, + @SHARED_PKG@ (>= ${source:Version}), + @COMMON_PKG@ +Replaces: libgtk2.0-common (<= 2.4.0-3), + libgtk2.0-dev (<= 2.4.3-1) +Conflicts: libgtk2.0-dev (<= 2.4.3-1) +Description: The programs for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the program files which is used for the libraries + and others. + +Package: @DEV_PKG@ +Section: libdevel +Architecture: any +Depends: @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends}, + libglib2.0-dev (>= 2.19.7), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.13.0), + libcairo2-dev (>= 1.6.4-6.1), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxinerama-dev (>= 1:1.0.1-4.1), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxcursor-dev, + libxfixes-dev (>= 1:3.0.0-3), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + pkg-config, + libxml2-utils +Recommends: python (>= 2.4), + debhelper +Suggests: @DOC_PKG@ +Replaces: libgtk1.3-dev, + gtk2-engines-pixbuf (<< 2.8.18-5) +Conflicts: libgtk1.3-dev +Description: Development files for the GTK+ library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications. + +Package: @DIRECTFB_DEV_PKG@ +Section: libdevel +Architecture: any +Depends: @DIRECTFB_PKG@ (= ${binary:Version}), + ${misc:Depends}, + @DEV_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + libcairo2-dev (>= 1.6.4-6.1) +Conflicts: libgtk+2.0-directfb-dev +Description: Development files for the GTK+ library - DirectFB version + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications on top of the DirectFB + library. + +Package: @DEBUG_PKG@ +Section: libdevel +Priority: extra +Architecture: any +Depends: @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + ${misc:Depends} +Conflicts: libgtk2.0-dbg +Replaces: libgtk2.0-dbg +Description: The GTK+ libraries and debugging symbols + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: @DOC_PKG@ +Section: doc +Architecture: all +Depends: lynx | www-browser, + ${misc:Depends} +Replaces: libgtk1.3-doc +Conflicts: libgtk1.3-doc +Recommends: libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc +Description: Documentation for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the HTML documentation for the GTK+ library + in /usr/share/doc/@DOC_PKG@/ . + +Package: @EXAMPLES_PKG@ +Section: x11 +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + @SHARED_PKG@ (= ${binary:Version}) +Replaces: libgtk1.3-dev +Description: Examples files for the GTK+ 2.0 + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the examples files and a demonstration program + for the GTK+-2.0. + +Package: @PIXBUF_PKG@ +Section: graphics +Priority: optional +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@ +Conflicts: gtk2.0-engines-pixbuf +Replaces: gtk2.0-engines-pixbuf +Description: Pixbuf-based theme for GTK+ 2.x + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the pixbuf theme engine. + +Package: libgail18 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + @SHARED_PKG@ (= ${binary:Version}) +Replaces: libgail17, libgtk2.0-0 (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- shared libraries + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the shared library. + +Package: libgail-common +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgail18 (= ${binary:Version}) +Description: GNOME Accessibility Implementation Library -- common modules + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains core shared libraries. + +Package: libgail-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, + libgail18 (= ${binary:Version}), + libgail-common (= ${binary:Version}), + @DEV_PKG@ (= ${binary:Version}), + pkg-config, + libatk1.0-dev (>= 1.13.0) +Suggests: libgail-doc +Replaces: libgtk2.0-dev (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- development files + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the development files for Gail. + +Package: libgail-dbg +Architecture: any +Section: libdevel +Priority: extra +Depends: ${misc:Depends}, libgail18 (= ${binary:Version}) +Replaces: libgtk2.0-0-dbg (<< 2.14.5) +Recommends: @DEBUG_PKG@ +Description: Gail libraries and debugging symbols + Gail is the "GNOME Accessibility Implementation Library". + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgail-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, lynx | www-browser +Replaces: libgtk2.0-doc (<< 2.14.5) +Description: documentation files of the Gail library + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the documentation files for Gail. --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-0.postinst.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-0.postinst.in @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +# versions prior to 2.10.1-1 used the 2.4.0 binary version and generated module +# files below /etc/gtk-2.0 which will we can not leave behind (since they +# reference modules not on the system anymore) +if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt-nl "2.10.3-2"; then + echo "Removing generated module files coming from the previous Gtk binary version..." + rm -v -f /etc/gtk-2.0/gdk-pixbuf.loaders + rm -v -f /etc/gtk-2.0/gtk.immodules +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/compat +++ gtk+2.0-2.17.10/debian/compat @@ -0,0 +1 @@ +5 --- gtk+2.0-2.17.10.orig/debian/libgail18.install +++ gtk+2.0-2.17.10/debian/libgail18.install @@ -0,0 +1 @@ +debian/install/shared/usr/lib/libgail*.so.* /usr/lib --- gtk+2.0-2.17.10.orig/debian/libgtk2.0-bin.install.in +++ gtk+2.0-2.17.10/debian/libgtk2.0-bin.install.in @@ -0,0 +1,5 @@ +# from the shared flavor +debian/install/shared/usr/share/man/man1/gtk-update-icon-cache.1 usr/share/man/man1 +debian/install/shared/usr/share/man/man1/gtk-query-immodules-@APIVER@.1 usr/share/man/man1 +debian/install/shared/usr/share/man/man1/gdk-pixbuf-query-loaders.1 usr/share/man/man1 +debian/update-icon-caches usr/sbin --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-0.prerm +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-0.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk-directfb-2.0-0 +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.17.10.orig/debian/libgtk-directfb-2.0-dev.install.in +++ gtk+2.0-2.17.10/debian/libgtk-directfb-2.0-dev.install.in @@ -0,0 +1,5 @@ +# from the directfb flavor +debian/install/directfb/usr/include/gtk-@APIVER@/gdk/*directfb* usr/include/gtk-@APIVER@/gdk +debian/install/directfb/@LIBDIR@/*directfb*.so @LIBDIR@ +debian/install/directfb/@LIBDIR@/pkgconfig/*directfb* @LIBDIR@/pkgconfig +debian/install/directfb/@LIBDIR@/gtk-@APIVER@/include/gdkconfig.h @LIBDIR@/gtk-@APIVER@/include/directfb --- gtk+2.0-2.17.10.orig/debian/patches/042_treeview_single-focus.patch +++ gtk+2.0-2.17.10/debian/patches/042_treeview_single-focus.patch @@ -0,0 +1,14 @@ +Index: gtk+-2.17.9/gtk/gtktreeview.c +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtktreeview.c 2009-08-27 16:22:19.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtktreeview.c 2009-08-27 16:22:20.000000000 +1000 +@@ -9490,7 +9490,8 @@ + + if (cursor_path) + { +- if (tree_view->priv->selection->type == GTK_SELECTION_MULTIPLE) ++ if (tree_view->priv->selection->type == GTK_SELECTION_MULTIPLE || ++ tree_view->priv->selection->type == GTK_SELECTION_SINGLE) + gtk_tree_view_real_set_cursor (tree_view, cursor_path, FALSE, FALSE); + else + gtk_tree_view_real_set_cursor (tree_view, cursor_path, TRUE, FALSE); --- gtk+2.0-2.17.10.orig/debian/patches/002_static-linking-dont-build-perf.patch +++ gtk+2.0-2.17.10/debian/patches/002_static-linking-dont-build-perf.patch @@ -0,0 +1,18 @@ +Index: gtk+2.0-2.17.3/Makefile.am +=================================================================== +--- gtk+2.0-2.17.3.orig/Makefile.am 2009-07-02 01:02:21.000000000 +0200 ++++ gtk+2.0-2.17.3/Makefile.am 2009-07-09 17:41:19.000000000 +0200 +@@ -1,7 +1,12 @@ + ## Makefile.am for GTK+ + include $(top_srcdir)/Makefile.decl + +-SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests perf contrib ++# don't build perf measurement tools in static builds ++if !ENABLE_STATIC ++MAYBE_PERF = perf ++endif ++ ++SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests $(MAYBE_PERF) contrib + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros + + # require automake 1.4 --- gtk+2.0-2.17.10.orig/debian/patches/005_xpmico.patch +++ gtk+2.0-2.17.10/debian/patches/005_xpmico.patch @@ -0,0 +1,19 @@ +Index: gtk+2.0-2.17.3/gdk-pixbuf/io-ico.c +=================================================================== +--- gtk+2.0-2.17.3.orig/gdk-pixbuf/io-ico.c 2009-06-04 21:18:03.000000000 +0200 ++++ gtk+2.0-2.17.3/gdk-pixbuf/io-ico.c 2009-07-09 17:41:24.000000000 +0200 +@@ -231,6 +231,14 @@ + + State->HeaderSize = 6 + IconCount*16; + ++ if (State->HeaderSize < 0) { ++ g_set_error (error, ++ GDK_PIXBUF_ERROR, ++ GDK_PIXBUF_ERROR_CORRUPT_IMAGE, ++ _("Invalid header in icon")); ++ return; ++ } ++ + if (State->HeaderSize>State->BytesInHeaderBuf) { + guchar *tmp=g_try_realloc(State->HeaderBuf,State->HeaderSize); + if (!tmp) { --- gtk+2.0-2.17.10.orig/debian/patches/062_correct_manpages_install.patch +++ gtk+2.0-2.17.10/debian/patches/062_correct_manpages_install.patch @@ -0,0 +1,52 @@ +Index: gtk+-2.17.9/docs/reference/gtk/Makefile.am +=================================================================== +--- gtk+-2.17.9.orig/docs/reference/gtk/Makefile.am 2009-08-07 13:42:22.000000000 +1000 ++++ gtk+-2.17.9/docs/reference/gtk/Makefile.am 2009-08-27 16:22:27.000000000 +1000 +@@ -363,17 +363,17 @@ + + ######################################################################## + +-if ENABLE_MAN +- + man_MANS = gtk-query-immodules-2.0.1 gtk-update-icon-cache.1 gtk-builder-convert.1 + ++if ENABLE_MAN ++ + %.1 : %.xml + @XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< + +-BUILT_EXTRA_DIST = $(man_MANS) +- + endif + ++BUILT_EXTRA_DIST = $(man_MANS) ++ + dist-hook-local: $(BUILT_EXTRA_DIST) + files='$(BUILT_EXTRA_DIST)'; \ + for f in $$files; do \ +Index: gtk+-2.17.9/docs/reference/gdk-pixbuf/Makefile.am +=================================================================== +--- gtk+-2.17.9.orig/docs/reference/gdk-pixbuf/Makefile.am 2009-07-20 12:33:46.000000000 +1000 ++++ gtk+-2.17.9/docs/reference/gdk-pixbuf/Makefile.am 2009-08-27 16:22:27.000000000 +1000 +@@ -79,17 +79,17 @@ + + ######################################################################## + +-if ENABLE_MAN +- + man_MANS = gdk-pixbuf-csource.1 gdk-pixbuf-query-loaders.1 + ++if ENABLE_MAN ++ + %.1 : %.xml + @XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< + +-BUILT_EXTRA_DIST = $(man_MANS) +- + endif + ++BUILT_EXTRA_DIST = $(man_MANS) ++ + dist-hook-local: $(BUILT_EXTRA_DIST) + files='$(BUILT_EXTRA_DIST)'; \ + for f in $$files; do \ --- gtk+2.0-2.17.10.orig/debian/patches/series +++ gtk+2.0-2.17.10/debian/patches/series @@ -0,0 +1,18 @@ +001_static-linking-dont-query-immodules.patch +002_static-linking-dont-build-perf.patch +003_gdk.pc_privates.patch +004_gtk+-ximian-gtk2-filesel-navbutton-5.patch +005_xpmico.patch +009_gtk-export-filechooser.patch +010_gdkpixbuf_-lm.patch +015_default-fallback-icon-theme.patch +020_immodules-files-d.patch +021_loader-files-d.patch +022_disable-viqr-im-for-vi-locale.patch +022_module-files-append-compat-module-files-d.patch +041_ia32-libs.patch +042_treeview_single-focus.patch +060_ignore-random-icons.patch +061_use_pdf_as_default_printing_standard.patch +062_correct_manpages_install.patch +070_mandatory-relibtoolize.patch --- gtk+2.0-2.17.10.orig/debian/patches/020_immodules-files-d.patch +++ gtk+2.0-2.17.10/debian/patches/020_immodules-files-d.patch @@ -0,0 +1,133 @@ +Index: gtk+2.0-2.17.3/gtk/gtkimmodule.c +=================================================================== +--- gtk+2.0-2.17.3.orig/gtk/gtkimmodule.c 2009-06-04 21:18:04.000000000 +0200 ++++ gtk+2.0-2.17.3/gtk/gtkimmodule.c 2009-07-09 17:41:30.000000000 +0200 +@@ -70,6 +70,9 @@ + #define GTK_IM_MODULE(im_module) (G_TYPE_CHECK_INSTANCE_CAST ((im_module), GTK_TYPE_IM_MODULE, GtkIMModule)) + #define GTK_IS_IM_MODULE(im_module) (G_TYPE_CHECK_INSTANCE_TYPE ((im_module), GTK_TYPE_IM_MODULE)) + ++#define IMMODULEFILEEXT ".immodules" ++#define IMMODULEFILEEXT_LEN ((int) strlen (IMMODULEFILEEXT)) ++ + struct _GtkIMModule + { + GTypeModule parent_instance; +@@ -310,19 +313,15 @@ + } + + static void +-gtk_im_module_initialize (void) ++process_module_file (const gchar *filename, FILE *file) + { + GString *line_buf = g_string_new (NULL); + GString *tmp_buf = g_string_new (NULL); +- gchar *filename = gtk_rc_get_im_module_file(); +- FILE *file; + gboolean have_error = FALSE; + + GtkIMModule *module = NULL; + GSList *infos = NULL; + +- contexts_hash = g_hash_table_new (g_str_hash, g_str_equal); +- + #define do_builtin(m) \ + { \ + const GtkIMContextInfo **contexts; \ +@@ -380,18 +379,6 @@ + + #undef do_builtin + +- file = g_fopen (filename, "r"); +- if (!file) +- { +- /* In case someone wants only the default input method, +- * we allow no file at all. +- */ +- g_string_free (line_buf, TRUE); +- g_string_free (tmp_buf, TRUE); +- g_free (filename); +- return; +- } +- + while (!have_error && pango_read_line (file, line_buf)) + { + const char *p; +@@ -489,10 +476,76 @@ + else if (module) + add_module (module, infos); + +- fclose (file); + g_string_free (line_buf, TRUE); + g_string_free (tmp_buf, TRUE); +- g_free (filename); ++} ++ ++static void ++gtk_im_module_initialize (void) ++{ ++ gchar *im_module_file_str = gtk_rc_get_im_module_file(); ++ gchar *im_module_files_d_str = g_build_filename (GTK_LIBDIR, ++ "gtk-2.0", ++ GTK_BINARY_VERSION, ++ "immodule-files.d", ++ NULL); ++ FILE *file; ++ gchar *list_str; ++ char **files; ++ int n; ++ ++ list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, ++ im_module_files_d_str, ++ im_module_file_str, ++ NULL); ++ ++ files = pango_split_file_list (list_str); ++ ++ contexts_hash = g_hash_table_new (g_str_hash, g_str_equal); ++ ++ n = 0; ++ while (files[n]) ++ n++; ++ ++ while (n-- > 0) ++ { ++ GDir *dir = g_dir_open (files[n], 0, NULL); ++ if (dir) ++ { ++ const char *dent; ++ ++ while ((dent = g_dir_read_name (dir))) ++ { ++ int len = strlen (dent); ++ if (len > IMMODULEFILEEXT_LEN && strcmp (dent + len - IMMODULEFILEEXT_LEN, IMMODULEFILEEXT) == 0) ++ { ++ gchar *pathname = g_build_filename (files[n], dent, NULL); ++ file = g_fopen (pathname, "r"); ++ if (file) ++ { ++ process_module_file(pathname, file); ++ fclose(file); ++ } ++ g_free (pathname); ++ } ++ } ++ g_dir_close (dir); ++ } ++ else ++ { ++ file = g_fopen (files[n], "r"); ++ if (file) ++ { ++ process_module_file(files[n], file); ++ fclose (file); ++ } ++ } ++ } ++ ++ g_strfreev (files); ++ g_free (list_str); ++ g_free (im_module_files_d_str); ++ g_free (im_module_file_str); + } + + static gint --- gtk+2.0-2.17.10.orig/debian/patches/010_gdkpixbuf_-lm.patch +++ gtk+2.0-2.17.10/debian/patches/010_gdkpixbuf_-lm.patch @@ -0,0 +1,13 @@ +Index: gtk+-2.17.9/configure.in +=================================================================== +--- gtk+-2.17.9.orig/configure.in 2009-08-27 16:21:45.000000000 +1000 ++++ gtk+-2.17.9/configure.in 2009-08-27 16:21:59.000000000 +1000 +@@ -1782,7 +1782,7 @@ + CAIRO_PREFIX="`pkg-config --variable=prefix cairo`" + + if test $enable_explicit_deps != yes ; then +- GDK_PIXBUF_EXTRA_LIBS= ++ GDK_PIXBUF_EXTRA_LIBS="$MATH_LIB" + fi + + AC_SUBST(GDK_PIXBUF_PACKAGES) --- gtk+2.0-2.17.10.orig/debian/patches/015_default-fallback-icon-theme.patch +++ gtk+2.0-2.17.10/debian/patches/015_default-fallback-icon-theme.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.17.3/gtk/gtksettings.c +=================================================================== +--- gtk+2.0-2.17.3.orig/gtk/gtksettings.c 2009-06-04 21:18:04.000000000 +0200 ++++ gtk+2.0-2.17.3/gtk/gtksettings.c 2009-07-09 17:41:28.000000000 +0200 +@@ -301,7 +301,7 @@ + g_param_spec_string ("gtk-fallback-icon-theme", + P_("Fallback Icon Theme Name"), + P_("Name of a icon theme to fall back to"), +- NULL, ++ "gnome", + GTK_PARAM_READWRITE), + NULL); + g_assert (result == PROP_FALLBACK_ICON_THEME); --- gtk+2.0-2.17.10.orig/debian/patches/001_static-linking-dont-query-immodules.patch +++ gtk+2.0-2.17.10/debian/patches/001_static-linking-dont-query-immodules.patch @@ -0,0 +1,49 @@ +Index: gtk+-2.17.9/configure.in +=================================================================== +--- gtk+-2.17.9.orig/configure.in 2009-08-18 13:53:16.000000000 +1000 ++++ gtk+-2.17.9/configure.in 2009-08-27 16:21:40.000000000 +1000 +@@ -157,6 +157,7 @@ + dnl Initialize libtool + AC_PROG_CC + AM_DISABLE_STATIC ++AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" = yes]) + + dnl + dnl Check for a working C++ compiler, but do not bail out, if none is found. +Index: gtk+-2.17.9/modules/input/Makefile.am +=================================================================== +--- gtk+-2.17.9.orig/modules/input/Makefile.am 2009-07-20 12:33:48.000000000 +1000 ++++ gtk+-2.17.9/modules/input/Makefile.am 2009-08-27 16:21:40.000000000 +1000 +@@ -178,8 +178,12 @@ + if CROSS_COMPILING + RUN_QUERY_IMMODULES_TEST=false + else ++if ENABLE_STATIC ++RUN_QUERY_IMMODULES_TEST=false ++else + RUN_QUERY_IMMODULES_TEST=test -z "$(DESTDIR)" + endif ++endif + + # Running this if cross compiling or if DESTDIR is set is going to + # not work at all, so skip it. +@@ -240,7 +244,18 @@ + included-modules: $(noinst_LTLIBRARIES) + + gtk.immodules: Makefile.am $(module_LTLIBRARIES) +- $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules ++ @if $(RUN_QUERY_IMMODULES_TEST) ; then \ ++ echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > gtk.immodules" ; \ ++ $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules; \ ++ else \ ++ echo "***" ; \ ++ echo "*** Warning: gtk.immodules not built" ; \ ++ echo "***" ; \ ++ echo "*** Generate this file manually on host" ; \ ++ echo "*** system using gtk-query-immodules-2.0" ; \ ++ echo "***" ; \ ++ touch gtk.immodules; \ ++ fi + + CLEANFILES = gtk.immodules + --- gtk+2.0-2.17.10.orig/debian/patches/041_ia32-libs.patch +++ gtk+2.0-2.17.10/debian/patches/041_ia32-libs.patch @@ -0,0 +1,99 @@ +Index: gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c +=================================================================== +--- gtk+-2.17.9.orig/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-27 16:22:08.000000000 +1000 ++++ gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-27 16:22:11.000000000 +1000 +@@ -308,8 +308,20 @@ + gchar *result = g_strdup (g_getenv ("GDK_PIXBUF_MODULE_FILE")); + + if (!result) +- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gdk-pixbuf.loaders", NULL); +- ++ { ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gdk-pixbuf.loaders.32", NULL); ++# else ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gdk-pixbuf.loaders.64", NULL); ++#endif ++ /* Prefer compat gdk-pixbuf.loaders file if it's usable. */ ++ if (g_file_test(result, G_FILE_TEST_EXISTS)) ++ return result; ++ g_free (result); ++#endif ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gdk-pixbuf.loaders", NULL); ++ } + return result; + } + +Index: gtk+-2.17.9/gtk/gtkrc.c +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkrc.c 2009-06-05 05:18:04.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkrc.c 2009-08-27 16:22:11.000000000 +1000 +@@ -450,7 +450,20 @@ + if (im_module_file) + result = g_strdup (im_module_file); + else +- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); ++ { ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules.32", NULL); ++# else ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules.64", NULL); ++# endif ++ /* Prefer compat gtk.immodules file if it's usable. */ ++ if (g_file_test(result, G_FILE_TEST_EXISTS)) ++ return result; ++ g_free (result); ++#endif ++ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); ++ } + } + + return result; +@@ -522,7 +535,21 @@ + else + { + const gchar *home; +- str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.32", NULL); ++# else ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.64", NULL); ++# endif ++ /* Prefer compat gtkrc if it's usable. */ ++ if (!g_file_test(str, G_FILE_TEST_EXISTS)) ++ { ++ g_free (str), /* continue in next line */ ++#endif ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ } ++#endif + + gtk_rc_add_default_file (str); + g_free (str); +@@ -530,7 +557,21 @@ + home = g_get_home_dir (); + if (home) + { +- str = g_build_filename (home, ".gtkrc-2.0", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ str = g_build_filename (home, ".gtkrc-2.0.32", NULL); ++# else ++ str = g_build_filename (home, ".gtkrc-2.0.64", NULL); ++# endif ++ /* Prefer compat .gtkrc-2.0 if it's usable. */ ++ if (!g_file_test(str, G_FILE_TEST_EXISTS)) ++ { ++ g_free (str), /* continue in next line */ ++#endif ++ str = g_build_filename (home, ".gtkrc-2.0", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ } ++#endif + gtk_rc_add_default_file (str); + g_free (str); + } --- gtk+2.0-2.17.10.orig/debian/patches/003_gdk.pc_privates.patch +++ gtk+2.0-2.17.10/debian/patches/003_gdk.pc_privates.patch @@ -0,0 +1,42 @@ +Index: gtk+-2.17.9/configure.in +=================================================================== +--- gtk+-2.17.9.orig/configure.in 2009-08-27 16:21:40.000000000 +1000 ++++ gtk+-2.17.9/configure.in 2009-08-27 16:21:45.000000000 +1000 +@@ -1712,19 +1712,22 @@ + CFLAGS="$saved_cflags" + LDFLAGS="$saved_ldflags" + +-GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 $X_PACKAGES cairo-$cairo_backend" +-GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES $GDK_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" +-GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $GDK_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS $GDK_EXTRA_CFLAGS" ++GDK_PACKAGES="$PANGO_PACKAGES gio-2.0" ++GDK_PRIVATE_PACKAGES="$X_PACKAGES cairo-$cairo_backend" ++GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" ++GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS $GDK_EXTRA_CFLAGS" + # + # If we aren't writing explicit dependencies, then don't put the extra libraries we need + # into the pkg-config files + # + if test $enable_explicit_deps != yes ; then +- GDK_PACKAGES="$PANGO_PACKAGES" + GDK_EXTRA_LIBS= ++else ++ GDK_PACKAGES="$PANGO_PACKAGES" + fi + + AC_SUBST(GDK_PACKAGES) ++AC_SUBST(GDK_PRIVATE_PACKAGES) + AC_SUBST(GDK_EXTRA_LIBS) + AC_SUBST(GDK_EXTRA_CFLAGS) + AC_SUBST(GDK_DEP_LIBS) +Index: gtk+-2.17.9/gdk-2.0.pc.in +=================================================================== +--- gtk+-2.17.9.orig/gdk-2.0.pc.in 2009-06-05 05:18:03.000000000 +1000 ++++ gtk+-2.17.9/gdk-2.0.pc.in 2009-08-27 16:21:45.000000000 +1000 +@@ -8,5 +8,6 @@ + Description: GTK+ Drawing Kit (${target} target) + Version: @VERSION@ + Requires: gdk-pixbuf-2.0 @GDK_PACKAGES@ ++Requires.private: @GDK_PRIVATE_PACKAGES@ + Libs: -L${libdir} -lgdk-${target}-@GTK_API_VERSION@ @GDK_EXTRA_LIBS@ + Cflags: -I${includedir}/gtk-2.0 -I${libdir}/gtk-2.0/include @GDK_EXTRA_CFLAGS@ --- gtk+2.0-2.17.10.orig/debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch +++ gtk+2.0-2.17.10/debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch @@ -0,0 +1,1220 @@ +Index: gtk+-2.17.9/gtk/gtkfilesel.c +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkfilesel.c 2009-08-25 05:20:55.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkfilesel.c 2009-08-27 16:21:48.000000000 +1000 +@@ -80,9 +80,13 @@ + #include "gtkeventbox.h" + #include "gtkoptionmenu.h" + ++#include "gtkimage.h" ++ + #define WANT_HPANED 1 + #include "gtkhpaned.h" + ++#include "stock-icons/ximian-icons.h" ++ + #include "gtkalias.h" + + #ifdef G_OS_WIN32 +@@ -318,6 +322,9 @@ + */ + static gchar* cmpl_completion_fullname (const gchar*, CompletionState* cmpl_state); + ++static void home_clicked (GtkWidget *widget, gpointer data); ++static void desktop_clicked (GtkWidget *widget, gpointer data); ++static void documents_clicked (GtkWidget *widget, gpointer data); + + /* Directory operations. */ + static CompletionDir* open_ref_dir (gchar* text_to_complete, +@@ -627,6 +634,10 @@ + GtkWidget *spacer; + GtkDialog *dialog; + ++ GdkPixbuf *ipixbuf; ++ GtkWidget *bbox, *home_button, *desk_button, *docs_button, *xbox; ++ GtkWidget *lbox; ++ + GtkListStore *model; + GtkTreeViewColumn *column; + +@@ -640,18 +651,9 @@ + filesel->main_vbox = dialog->vbox; + gtk_container_set_border_width (GTK_CONTAINER (filesel), 10); + +- /* The horizontal box containing create, rename etc. buttons */ +- filesel->button_area = gtk_hbutton_box_new (); +- gtk_button_box_set_layout (GTK_BUTTON_BOX (filesel->button_area), GTK_BUTTONBOX_START); +- gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->button_area, +- FALSE, FALSE, 0); +- gtk_widget_show (filesel->button_area); +- +- gtk_file_selection_show_fileop_buttons (filesel); +- + /* hbox for pulldown menu */ + pulldown_hbox = gtk_hbox_new (TRUE, 5); ++ gtk_container_set_border_width (GTK_CONTAINER (pulldown_hbox), 4); + gtk_box_pack_start (GTK_BOX (filesel->main_vbox), pulldown_hbox, FALSE, FALSE, 0); + gtk_widget_show (pulldown_hbox); + +@@ -663,14 +665,27 @@ + + /* The horizontal box containing the directory and file listboxes */ + ++ xbox = gtk_hbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (filesel->main_vbox), xbox, TRUE, TRUE, 0); ++ gtk_widget_show (xbox); ++ ++ bbox = gtk_vbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (xbox), bbox, FALSE, FALSE, 5); ++ gtk_widget_show (bbox); ++ ++ lbox = gtk_vbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (xbox), lbox, TRUE, TRUE, 5); ++ gtk_widget_show (lbox); ++ + spacer = gtk_hbox_new (FALSE, 0); + gtk_widget_set_size_request (spacer, -1, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0); + gtk_widget_show (spacer); + + list_hbox = gtk_hbox_new (FALSE, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), list_hbox, TRUE, TRUE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), list_hbox, TRUE, TRUE, 0); + gtk_widget_show (list_hbox); ++ + if (WANT_HPANED) + list_container = g_object_new (GTK_TYPE_HPANED, + "visible", TRUE, +@@ -682,9 +697,78 @@ + + spacer = gtk_hbox_new (FALSE, 0); + gtk_widget_set_size_request (spacer, -1, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0); + gtk_widget_show (spacer); + ++ ++ /* The Pretty Icons */ ++ ++ home_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (home_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), home_button, FALSE, FALSE, 0); ++ gtk_widget_show (home_button); ++ ++ g_signal_connect (G_OBJECT (home_button), "clicked", ++ G_CALLBACK (home_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (home_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_home_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("_Home"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), home_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ desk_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (desk_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), desk_button, FALSE, FALSE, 0); ++ gtk_widget_show (desk_button); ++ ++ g_signal_connect (G_OBJECT (desk_button), "clicked", ++ G_CALLBACK (desktop_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (desk_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_desktop_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("D_esktop"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), desk_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ docs_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (docs_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), docs_button, FALSE, FALSE, 0); ++ gtk_widget_show (docs_button); ++ ++ g_signal_connect (G_OBJECT (docs_button), "clicked", ++ G_CALLBACK (documents_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (docs_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_documents_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("Docu_ments"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), docs_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ + /* The directories list */ + + model = gtk_list_store_new (1, G_TYPE_STRING); +@@ -757,6 +841,15 @@ + gtk_widget_show (filesel->file_list); + gtk_widget_show (scrolled_win); + ++ /* The horizontal box containing create, rename etc. buttons */ ++ filesel->button_area = gtk_hbox_new (FALSE, 0); ++ gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0); ++ gtk_box_pack_start (GTK_BOX (lbox), filesel->button_area, ++ FALSE, FALSE, 0); ++ gtk_widget_show (filesel->button_area); ++ ++ gtk_file_selection_show_fileop_buttons (filesel); ++ + /* action area for packing buttons into. */ + filesel->action_area = gtk_hbox_new (TRUE, 0); + gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->action_area, +@@ -1012,39 +1105,94 @@ + void + gtk_file_selection_show_fileop_buttons (GtkFileSelection *filesel) + { ++ GtkWidget *label; ++ GtkWidget *bbox; ++ + g_return_if_fail (GTK_IS_FILE_SELECTION (filesel)); + + /* delete, create directory, and rename */ + if (!filesel->fileop_c_dir) + { +- filesel->fileop_c_dir = gtk_button_new_with_mnemonic (_("_New Folder")); ++ filesel->fileop_c_dir = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_c_dir), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_c_dir), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic (_("_New Folder")); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_c_dir); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_c_dir, "clicked", +- G_CALLBACK (gtk_file_selection_create_dir), +- filesel); ++ G_CALLBACK (gtk_file_selection_create_dir), ++ (gpointer) filesel); + gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_c_dir, TRUE, TRUE, 0); ++ filesel->fileop_c_dir, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_c_dir); + } +- ++ + if (!filesel->fileop_del_file) + { +- filesel->fileop_del_file = gtk_button_new_with_mnemonic (_("De_lete File")); ++ filesel->fileop_del_file = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_del_file), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_del_file), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_DELETE, ++ GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new (_("De_lete File")); ++ gtk_label_set_use_underline (GTK_LABEL (label), TRUE); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_del_file); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_del_file, "clicked", + G_CALLBACK (gtk_file_selection_delete_file), +- filesel); +- gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_del_file, TRUE, TRUE, 0); ++ (gpointer) filesel); ++ gtk_box_pack_end (GTK_BOX (filesel->button_area), ++ filesel->fileop_del_file, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_del_file); + } +- ++ + if (!filesel->fileop_ren_file) + { +- filesel->fileop_ren_file = gtk_button_new_with_mnemonic (_("_Rename File")); ++ filesel->fileop_ren_file = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_ren_file), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_ren_file), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, ++ GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new (_("_Rename File")); ++ gtk_label_set_use_underline (GTK_LABEL (label), TRUE); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_ren_file); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_ren_file, "clicked", + G_CALLBACK (gtk_file_selection_rename_file), +- filesel); +- gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_ren_file, TRUE, TRUE, 0); ++ (gpointer) filesel); ++ gtk_box_pack_end (GTK_BOX (filesel->button_area), ++ filesel->fileop_ren_file, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_ren_file); + } + +@@ -1752,6 +1900,95 @@ + gtk_widget_set_sensitive (fs->fileop_ren_file, sensitive); + } + ++static void ++home_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ ++ dir = g_strdup_printf ("%s/", g_get_home_dir()); ++ ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ ++static char * ++get_desktop_directory (void) ++{ ++ char *filename; ++ struct stat buf; ++ ++ filename = g_build_filename (g_get_home_dir (), "Desktop", NULL); ++ if (lstat (filename, &buf) == 0) ++ { ++ if (S_ISLNK (buf.st_mode)) ++ { ++ char link_target[MAXPATHLEN + 1]; ++ int len; ++ ++ len = readlink (filename, link_target, MAXPATHLEN); ++ if (len > 0) ++ { ++ char *desktop_filename; ++ /* Add a trailing / if there isn't already one */ ++ link_target[len] = '\0'; ++ if (link_target[len - 1] == G_DIR_SEPARATOR) ++ { ++ link_target[len - 1] = '\0'; ++ } ++ ++ if (!strcmp (link_target, "Desktop")) ++ { ++ g_free (filename); ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++ } ++ ++ desktop_filename = g_build_filename (g_get_home_dir (), "Desktop", NULL); ++ if (!strcmp (link_target, desktop_filename)) ++ { ++ g_free (desktop_filename); ++ g_free (filename); ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++ } ++ g_free (desktop_filename); ++ } ++ } ++ } ++ g_free (filename); ++ ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++} ++ ++ ++static void ++desktop_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ ++ dir = get_desktop_directory (); ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ ++static void ++documents_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ dir = g_strdup_printf ("%s/Documents/", g_get_home_dir ()); ++ ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ + static gint + gtk_file_selection_key_press (GtkWidget *widget, + GdkEventKey *event, +Index: gtk+-2.17.9/gtk/stock-icons/ximian-icons.h +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+-2.17.9/gtk/stock-icons/ximian-icons.h 2009-08-27 16:21:48.000000000 +1000 +@@ -0,0 +1,825 @@ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_desktop_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (6692) */ ++ "\0\0\32<" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (276) */ ++ "\0\0\1\24" ++ /* width (69) */ ++ "\0\0\0E" ++ /* height (45) */ ++ "\0\0\0-" ++ /* pixel_data: */ ++ "\377\0\0\0\0\332\0\0\0\0\204\0\0\0\1\252\0\0\0\0\204\0\0\0\1\221\0\0" ++ "\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\11\3\0\0\0\10\0\0\0\5\0\0\0" ++ "\3\245\0\0\0\1\4\0\0\0\2\0\0\0\3\0\0\0\6\0\0\0\10\202\0\0\0\11\3\0\0" ++ "\0\10\0\0\0\5\0\0\0\2\216\0\0\0\0\2\0\0\0\2\0\0\0_\204\0\0\0\377\4\0" ++ "\0\0m\0\0\0\26\0\0\0\17\0\0\0\13\244\0\0\0\12\2\0\0\0\14\0\0\0\202\204" ++ "\0\0\0\377\4\0\0\0l\0\0\0\23\0\0\0\10\0\0\0\2\215\0\0\0\0\3\0\0\0\5\0" ++ "\0\0\377\266\276\312\377\202\245\257\276\377\1s}\214\377\252\0\0\0\377" ++ "\1\266\276\312\377\202\220\234\257\377\5s}\214\377\0\0\0\377\0\0\0)\0" ++ "\0\0\23\0\0\0\5\214\0\0\0\0\11\0\0\0\1\0\0\0\10\0\0\0\377\220\234\257" ++ "\377Ug\204\377DRj\377MNA\377\310\311\274\377\333\334\314\377\231\323" ++ "\324\300\377\4\322\323\300\377\321\323\277\377\321\323\276\377\321\322" ++ "\276\377\203\320\321\275\377\4\317\320\274\377\316\320\274\377\315\320" ++ "\273\377\315\317\272\377\202\315\316\271\377\13\315\315\271\377\314\315" ++ "\271\377qr^\377\245\257\276\377Ug\204\377DRj\377\0\0\0\377\0\0\0<\0\0" ++ "\0\35\0\0\0\10\0\0\0\1\213\0\0\0\0\7\0\0\0\1\0\0\0\11\0\0\0\377\220\234" ++ "\257\377DRj\377abR\377\227\230\177\377\231\274\276\237\377\32\273\275" ++ "\236\377\273\275\235\377\272\274\235\377\271\273\234\377\270\273\233" ++ "\377\270\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377" ++ "\265\267\227\377\264\266\226\377\263\266\225\377\263\265\225\377\262" ++ "\264\224\377\261\264\223\377\260\263\222\377\260\262\221\377\257\262" ++ "\221\377or\\\377\220\234\257\377DRj\377\0\0\0\377\0\0\0E\0\0\0\"\0\0" ++ "\0\12\0\0\0\1\213\0\0\0\0\6\0\0\0\1\0\0\0\12\0\0\0\377s}\214\377abR\377" ++ "\227\230\177\377\231\274\276\237\377\33\273\275\236\377\272\274\235\377" ++ "\271\274\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267" ++ "\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377\264\266" ++ "\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261\263\223" ++ "\377\260\263\222\377\257\262\221\377\257\261\220\377\256\260\217\377" ++ "\255\260\217\377np[\377\220\234\257\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0" ++ "\12\0\0\0\1\213\0\0\0\0\5\0\0\0\1\0\0\0\10\0\0\0m\0\0\0\377\273\274\254" ++ "\377\230\274\276\237\377\35\273\275\236\377\272\275\235\377\272\274\235" ++ "\377\271\273\234\377\270\272\233\377\270\272\232\377\267\271\231\377" ++ "\266\270\231\377\265\270\230\377\265\267\227\377\264\266\226\377\263" ++ "\266\225\377\262\265\225\377\262\264\224\377\261\264\223\377\260\263" ++ "\222\377\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217" ++ "\377\255\257\216\377\254\257\215\377\226\231|\377\0\0\0\377\0\0\0\253" ++ "\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\214\0\0\0\0\4\0\0\0\6\0\0\0\26\0\0" ++ "\0\377\323\324\300\377\227\274\276\237\377\36\273\275\236\377\272\274" ++ "\235\377\271\273\234\377\271\273\233\377\270\272\233\377\267\271\232" ++ "\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377" ++ "\264\266\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261" ++ "\263\223\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260" ++ "\217\377\255\260\217\377\254\257\216\377\254\256\215\377\253\256\214" ++ "\377\226\230z\377\0\0\0\377\0\0\0V\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1" ++ "\214\0\0\0\0\4\0\0\0\3\0\0\0\17\0\0\0\377\323\324\300\377\211\274\276" ++ "\237\377\1z{g\377\214\0\0\0\377\36[\\L\377\267\271\232\377\271\273\234" ++ "\377\270\272\233\377\267\272\232\377\267\271\231\377\266\270\230\377" ++ "\265\270\230\377\265\267\227\377\264\266\226\377\263\266\225\377\262" ++ "\265\224\377\262\264\224\377\261\263\223\377\260\263\222\377\257\262" ++ "\221\377\257\261\220\377\256\261\220\377\255\260\217\377\255\257\216" ++ "\377\254\257\215\377\253\256\214\377\252\255\214\377\252\255\213\377" ++ "\225\227y\377\0\0\0\377\0\0\0O\0\0\0,\0\0\0\20\0\0\0\3\215\0\0\0\0\4" ++ "\0\0\0\2\0\0\0\14\0\0\0\377\323\324\300\377\211\274\276\237\377\3\0\0" ++ "\0\377\323\323\323\377\366\366\366\377\210\377\377\377\377\40\371\371" ++ "\371\377\332\332\332\377XXX\377,-%\377\263\265\226\377\266\270\231\377" ++ "\266\271\231\377\266\270\230\377\265\267\227\377\264\267\226\377\263" ++ "\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377\261\263" ++ "\222\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260\217" ++ "\377\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377" ++ "\252\255\213\377\251\254\212\377\251\253\212\377\224\226x\377\0\0\0\377" ++ "\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0" ++ "\377\323\324\300\377\211\274\276\237\377\2\0\0\0\377\366\366\366\377" ++ "\212\377\377\377\377\5\307\307\307\377\321\321\321\377\326\326\326\377" ++ "\0\0\0\377\260\262\223\377\202\264\267\227\377\30\264\266\226\377\263" ++ "\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377\260\263" ++ "\222\377\257\262\221\377\257\261\220\377\256\261\220\377\255\260\217" ++ "\377\254\257\216\377\254\257\215\377\253\256\214\377\252\255\214\377" ++ "\252\254\213\377\251\254\212\377\250\253\211\377\247\252\210\377\223" ++ "\226x\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0" ++ "\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0\0\377" ++ "\207\377\377\377\377#\376\376\376\377\377\377\377\377\376\376\376\377" ++ "\375\375\375\377\300\300\300\377\341\341\341\377\360\360\360\377\233" ++ "\233\233\377\0\0\0\377\255\257\220\377\262\265\225\377\263\265\225\377" ++ "\262\264\224\377\261\264\223\377\260\263\222\377\260\262\222\377\257" ++ "\262\221\377\256\261\220\377\256\260\217\377\255\260\216\377\254\257" ++ "\216\377\253\256\215\377\253\255\214\377\252\255\213\377\251\254\212" ++ "\377\250\253\212\377\250\253\211\377\247\252\210\377\246\251\207\377" ++ "\222\225v\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4" ++ "\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0" ++ "\0\377\205\377\377\377\377%\376\376\376\377\375\375\375\377\374\374\373" ++ "\377\375\375\375\377\374\374\373\377\373\373\373\377\257\257\256\377" ++ "\351\351\351\377\377\377\377\377\337\337\337\377\217\217\217\377\0\0" ++ "\0\377\253\256\216\377\260\263\222\377\261\263\223\377\260\263\222\377" ++ "\257\262\221\377\257\261\220\377\256\261\217\377\255\260\217\377\254" ++ "\257\216\377\254\256\215\377\253\256\214\377\252\255\213\377\251\254" ++ "\213\377\251\254\212\377\250\253\211\377\247\252\210\377\247\252\207" ++ "\377\246\251\207\377\245\250\206\377\220\224u\377\0\0\0\377\0\0\0I\0" ++ "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324" ++ "\300\377\211\274\276\237\377\1\0\0\0\377\203\377\377\377\377\32\376\376" ++ "\376\377\375\375\375\377\374\374\373\377\373\373\373\377\372\372\371" ++ "\377\373\373\373\377\372\372\371\377\371\371\370\377\244\244\243\377" ++ "\360\360\360\377\377\377\377\377\364\364\364\377\317\317\317\377\242" ++ "\242\242\37744+\377\252\255\215\377\257\261\220\377\257\262\221\377\256" ++ "\261\220\377\255\260\217\377\255\257\216\377\254\257\215\377\253\256" ++ "\215\377\253\255\214\377\252\255\213\377\251\254\212\377\202\250\253" ++ "\211\377\13\247\252\210\377\246\251\207\377\245\251\206\377\245\250\205" ++ "\377\244\247\205\377\220\222t\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0" ++ "\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274" ++ "\276\237\377\15\0\0\0\377\377\377\377\377\376\376\376\377\375\375\375" ++ "\377\374\374\373\377\373\373\373\377\372\372\371\377\371\371\370\377" ++ "\370\370\367\377\371\371\370\377\370\370\367\377\370\367\366\377\236" ++ "\236\236\377\206\0\0\0\377\30VWG\377\252\255\215\377\256\260\217\377" ++ "\255\260\217\377oq\\\377\15\15\13\3779.'\377\214\214p\377\245\247\207" ++ "\377\251\254\212\377\250\253\211\377\247\252\210\377\246\252\207\377" ++ "\246\251\207\377\245\250\206\377\244\247\205\377\244\247\204\377\243" ++ "\246\203\377\217\221s\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215" ++ "\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237" ++ "\377+\0\0\0\377\377\377\377\377\374\374\373\377\373\373\373\377\372\372" ++ "\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367\366\365" ++ "\377\370\367\366\377\367\366\365\377\366\366\364\377\364\363\362\377" ++ "\336\335\334\377\323\322\320\377\267\267\265\377\237\236\235\377poo\377" ++ "ebZ\377\0\0\0\377\242\244\206\377op[\377\24\24\21\377E\77\77\377\347" ++ "\254\243\377\302[K\377,\30\23\377\201\204i\377\250\253\211\377\247\252" ++ "\210\377\246\251\207\377\245\250\206\377\245\250\205\377\244\247\205" ++ "\377\243\246\204\377\242\246\203\377\242\245\202\377\216\220q\377\0\0" ++ "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\323\324\300\377\210\274\276\237\377,\273\275\236\377\0\0\0" ++ "\377\377\377\377\377\372\372\371\377\371\371\370\377\370\370\367\377" ++ "\370\367\366\377\367\366\365\377\366\366\364\377\365\364\363\377\366" ++ "\366\364\377\365\364\363\377\364\363\362\377\362\362\360\377\344\344" ++ "\342\377\332\331\327\377\330\330\326\377\315\314\312\377\257\256\254" ++ "\377\210\204{\377\0\0\0\377\21\21\14\377D@5\377\350\332\260\377\240\231" ++ "\223\377\235NB\377n#\26\377\40\17\12\377or[\377\246\251\207\377\246\251" ++ "\206\377\245\250\206\377\244\247\205\377\243\247\204\377\243\246\203" ++ "\377\242\245\202\377\241\245\202\377\241\244\201\377\215\220p\377\0\0" ++ "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\323\324\300\377\207\274\276\237\377-\273\275\236\377\272\274" ++ "\235\377\0\0\0\377\377\377\377\377\370\370\367\377\370\367\366\377\367" ++ "\366\365\377\366\366\364\377\365\364\363\377\364\363\362\377\363\363" ++ "\361\377\364\363\362\377\363\363\361\377\362\362\360\377\357\357\355" ++ "\377\356\355\353\377\355\354\352\377\351\350\346\377\325\324\323\377" ++ "\275\274\273\377\21\17\15\377,*#\377\360\337\253\377\320\264f\377\272" ++ "\214,\377x_2\3774\30\23\377\31\26\22\377\202\205j\377\242\245\203\377" ++ "\245\250\206\377\245\250\205\377\244\247\204\377\243\246\204\377\242" ++ "\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377\237\243" ++ "\200\377\214\217p\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0" ++ "\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\205\274\276\237\377" ++ "\202\273\275\236\377\6\272\274\235\377\271\273\234\377\0\0\0\377\377" ++ "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377%\363" ++ "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361" ++ "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\352\351\347" ++ "\377\332\326\315\377\26\25\21\377-,&\377\362\342\262\377\320\264e\377" ++ "\270\211+\377\244q\24\377O4\6\377\33\27\15\377su]\377\234\237\177\377" ++ "\244\247\204\377\243\246\204\377\244\247\205\377\243\247\204\377\243" ++ "\246\203\377\242\245\202\377\241\245\202\377\240\244\201\377\240\243" ++ "\200\377\237\242\177\377\236\242~\377\213\216o\377\0\0\0\377\0\0\0I\0" ++ "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324" ++ "\300\377\204\274\276\237\3770\273\275\236\377\272\274\235\377\272\274" ++ "\234\377\271\273\234\377\270\272\233\377\0\0\0\377\377\377\377\377\364" ++ "\363\362\377\363\362\361\377\362\362\360\377\360\360\356\377\357\357" ++ "\355\377\361\360\356\377\360\357\355\377\361\360\356\377\360\357\355" ++ "\377\357\356\354\377\354\353\351\377\305\303\274\377\25\24\16\377-,&" ++ "\377\362\343\263\377\320\265g\377\271\215/\377\247r\26\377Z=\11\377\33" ++ "\25\7\377[]J\377\233\236~\377\242\245\203\377\243\246\204\377\242\246" ++ "\203\377\244\247\204\377\243\246\204\377\242\246\203\377\242\245\202" ++ "\377\241\244\201\377\240\243\200\377\237\243\200\377\237\242\177\377" ++ "\236\241~\377\235\241}\377\211\215m\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0" ++ "\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377" ++ "\202\274\276\237\3772\273\275\236\377\273\275\235\377\272\274\235\377" ++ "\271\273\234\377\270\273\233\377\270\272\232\377\267\271\231\377\0\0" ++ "\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377" ++ "\360\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361" ++ "\360\356\377\360\357\355\377\351\350\346\377<8/\377+(\36\377\360\337" ++ "\247\377\320\264h\377\276\2202\377\260|\33\377`A\13\377\30\20\1\377=" ++ ">1\377\225\230z\377\242\245\203\377\243\247\204\377\243\246\203\377\244" ++ "\247\205\377\243\247\204\377\243\246\203\377\242\245\202\377\241\244" ++ "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377" ++ "\235\241}\377\235\240}\377\234\240|\377\210\214l\377\0\0\0\377\0\0\0" ++ "I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\323" ++ "\324\300\377\274\276\237\377\273\275\236\377\272\274\235\377\271\274" ++ "\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267\271\231" ++ "\377\266\270\230\377\0\0\0\377\377\377\377\377\360\360\356\377\202\357" ++ "\357\355\377\2\357\356\354\377\356\355\353\377\203\355\354\352\377!\347" ++ "\346\344\377NJB\377\256\247\240\377\315\265\221\377\305\236@\377\267" ++ "\202\36\377bD\16\377\36\27\7\377:84\377\0\0\0\377\214\216q\377\244\247" ++ "\205\377\243\246\204\377\242\246\203\377\244\247\204\377\243\246\203" ++ "\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243\200\377" ++ "\237\243\177\377\237\242\177\377\236\241~\377\235\241}\377\234\240|\377" ++ "\234\237{\377\233\237{\377\207\213k\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0" ++ "\13\0\0\0\2\215\0\0\0\0\21\0\0\0\1\0\0\0\12\0\0\0\377\322\323\300\377" ++ "\272\275\235\377\272\274\235\377\271\273\234\377\270\272\233\377\270" ++ "\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377\265\267" ++ "\227\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352\377\203" ++ "\354\353\351\377$\353\352\350\377\351\350\345\377\353\352\350\377\37" ++ "\37\37\377&$\40\377\220~i\377\232zU\377{`3\377\26\20\7\377DDC\377\270" ++ "\267\264\377\233\225\212\377\0\0\0\377\216\220s\377\243\246\203\377\244" ++ "\247\205\377\243\246\204\377\242\246\203\377\242\245\202\377\241\244" ++ "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377" ++ "\235\241}\377\235\240}\377\234\240|\377\233\237{\377\232\236z\377\232" ++ "\235y\377\207\212j\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0" ++ "\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\323\277\377\271\273\234\377" ++ "\271\273\233\377\270\272\233\377\267\271\232\377\266\271\231\377\266" ++ "\270\230\377\265\267\227\377\264\267\227\377\264\266\226\377\0\0\0\377" ++ "\377\377\377\377\353\352\350\377\202\351\350\346\377\1\350\347\345\377" ++ "\202\350\347\344\377\2\347\346\343\377\36\35\35\377\202\24\24\24\377" ++ "\37\26\26\23\377\"!\37\377LLJ\377\261\260\255\377\322\321\315\377\331" ++ "\330\324\377\237\231\216\377\0\0\0\377\217\222t\377\244\247\204\377\243" ++ "\246\203\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243" ++ "\200\377\237\243\177\377\236\242\177\377\236\241~\377\235\241}\377\234" ++ "\240|\377\234\237{\377\233\236{\377\232\236z\377\231\235y\377\231\234" ++ "x\377\206\211i\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0" ++ "\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\322\276\377\270\272\233\377\267" ++ "\272\232\377\267\271\231\377\266\270\230\377\265\270\230\377\265\267" ++ "\227\377\264\266\226\377\263\266\225\377\262\265\224\377\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\203\346\345\342\377%\345\344\341\377\346" ++ "\344\341\377\345\344\340\377\340\336\333\377\320\317\313\377\302\302" ++ "\276\377\303\303\277\377\320\317\313\377\330\327\323\377\331\330\324" ++ "\377\330\326\322\377\331\327\323\377\237\231\215\377\0\0\0\377\216\221" ++ "s\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377" ++ "\237\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240|\377" ++ "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235x\377\230" ++ "\234x\377\227\233w\377\205\210h\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13" ++ "\0\0\0\2\215\0\0\0\0\30\0\0\0\1\0\0\0\12\0\0\0\377\320\321\275\377\267" ++ "\271\232\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267" ++ "\226\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223" ++ "\377\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343\342" ++ "\336\377\344\342\337\377\344\343\337\377\342\341\335\377\343\342\336" ++ "\377\342\341\335\377\340\337\333\377\203\333\332\326\377\35\332\330\324" ++ "\377\334\332\326\377\331\327\323\377\330\326\322\377\236\230\215\377" ++ "\0\0\0\377\215\220q\377\241\245\202\377\241\244\201\377\240\243\200\377" ++ "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377" ++ "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\231\234x\377\230" ++ "\234w\377\227\233v\377\226\232v\377\204\207g\377\0\0\0\377\0\0\0I\0\0" ++ "\0%\0\0\0\13\0\0\0\2\215\0\0\0\0""8\0\0\0\1\0\0\0\12\0\0\0\377\320\321" ++ "\275\377\266\270\230\377\265\270\230\377\264\267\227\377\264\266\226" ++ "\377\263\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377" ++ "\260\263\222\377\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334" ++ "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377" ++ "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340" ++ "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326" ++ "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\214\217p\377\240\243" ++ "\200\377\237\243\200\377\237\242\177\377\236\241~\377\235\241}\377\234" ++ "\240|\377\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235" ++ "x\377\230\234x\377\227\233w\377\227\233v\377\226\232u\377\225\231t\377" ++ "\202\206f\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\30" ++ "\0\0\0\1\0\0\0\12\0\0\0\377\317\320\274\377\265\267\227\377\264\266\226" ++ "\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377" ++ "\260\263\222\377\260\262\222\377\257\262\221\377\0\0\0\377\321\321\321" ++ "\377\341\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377" ++ "\340\337\333\377\336\335\331\377\340\336\332\377\336\335\331\377\340" ++ "\336\332\377\202\336\334\330\377\202\334\332\326\377\34\330\326\322\377" ++ "\327\326\321\377\325\323\316\377\233\225\212\377\0\0\0\377\213\216o\377" ++ "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377" ++ "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\230\234x\377\230" ++ "\234w\377\227\233v\377\226\232v\377\226\231u\377\225\231t\377\224\230" ++ "s\377\202\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0" ++ "\0\32\0\0\0\1\0\0\0\12\0\0\0\377\315\320\273\377\264\266\226\377\263" ++ "\265\225\377\262\265\224\377\261\264\223\377\261\263\223\377\260\263" ++ "\222\377\257\262\221\377\257\261\220\377\256\261\217\377\0\0\0\377\231" ++ "\230\221\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235" ++ "\221\377\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220" ++ "\377\242\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215" ++ "\377\202\235\227\214\377\21\233\226\212\377gcY\377\0\0\0\377\213\215" ++ "o\377\236\241~\377\235\241}\377\234\240|\377\234\237{\377\233\237{\377" ++ "\232\236z\377\231\235y\377\231\235x\377\230\234w\377\227\233w\377\227" ++ "\232v\377\226\232u\377\225\231t\377\202\224\230s\377\7\224\227s\377\202" ++ "\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\16\0\0" ++ "\0\2\0\0\0\14\0\0\0\377\315\317\271\377\263\265\225\377\262\264\224\377" ++ "\261\264\223\377\260\263\222\377\260\262\221\377\257\262\221\377\256" ++ "\261\220\377\255\260\217\377\255\257\216\377moY\377\222\0\0\0\377\17" ++ "WZF\377\216\221q\377\235\240}\377\234\240|\377\233\237{\377\233\236z" ++ "\377\232\235y\377\231\235y\377\230\234x\377\230\233w\377\227\233v\377" ++ "\226\232u\377\225\231u\377\225\231t\377\224\230s\377\203\224\227s\377" ++ "\6\202\205e\377\0\0\0\377\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0" ++ "\34\0\0\0\3\0\0\0\202\0\0\0\377\326\327\306\377\261\264\223\377\261\263" ++ "\223\377\260\263\222\377\257\262\221\377\256\261\220\377\256\260\217" ++ "\377\255\260\217\377\254\257\216\377\254\256\215\377\251\254\212\377" ++ "\240\242\202\377\225\230{\377\224\227y\377\222\225w\377\222\224v\377" ++ "\221\224v\377\221\223v\377\220\222u\377\217\222t\377\217\222s\377\216" ++ "\221r\377\215\220r\377\214\220q\377\214\217p\377\202\213\216o\377\16" ++ "\212\215o\377\212\214n\377\216\221q\377\227\232x\377\234\237{\377\233" ++ "\236{\377\232\236z\377\231\235y\377\231\234x\377\230\234w\377\227\233" ++ "w\377\226\232v\377\226\232u\377\225\231t\377\202\224\230s\377\204\224" ++ "\227s\377\6\202\205e\377\0\0\0\377\0\0\0\243\0\0\0,\0\0\0\20\0\0\0\3" ++ "\215\0\0\0\0\17\0\0\0\6\0\0\0\377v\204\234\377rr^\377\260\263\222\377" ++ "\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217\377\255" ++ "\257\216\377\254\257\215\377\253\256\215\377\252\255\214\377\252\255" ++ "\213\377\251\254\212\377\202\250\253\211\377\33\247\252\210\377\246\251" ++ "\207\377\245\250\206\377\245\250\205\377\244\247\205\377\243\246\204" ++ "\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\201\377" ++ "\240\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240}\377" ++ "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235y\377\230" ++ "\234x\377\230\233w\377\227\233v\377\226\232u\377\225\231u\377\225\231" ++ "t\377\224\230s\377\206\224\227s\377\7z}_\377\222\230\242\377\0\0\0\377" ++ "\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1\213\0\0\0\0\15\0\0\0\1\0\0\0\10\0" ++ "\0\0\377Ug\204\377v\204\234\377pr]\377\256\261\220\377\256\260\217\377" ++ "\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377\252" ++ "\255\213\377\202\251\254\212\377\34\250\253\211\377\247\252\210\377\246" ++ "\251\207\377\246\251\206\377\245\250\206\377\244\247\205\377\243\247" ++ "\204\377\243\246\203\377\242\245\202\377\241\245\202\377\241\244\201" ++ "\377\240\243\200\377\237\243\177\377\236\242~\377\236\241~\377\235\240" ++ "}\377\234\240|\377\233\237{\377\233\236z\377\232\236z\377\231\235y\377" ++ "\231\234x\377\230\234w\377\227\233v\377\226\232v\377\226\232u\377\225" ++ "\231t\377\224\230s\377\210\224\227s\377\7\266\276\312\377DRj\377\0\0" ++ "\0\377\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\202Ug\204\377\11v\204\234\377\213\215r\377\217\220u\377\227" ++ "\232|\377\226\231{\377\226\230{\377\226\230z\377\225\227y\377\224\226" ++ "x\377\202\223\226x\377\32\222\225w\377\221\224v\377\221\224u\377\220" ++ "\223t\377\220\222t\377\217\222s\377\217\221r\377\216\220q\377\215\220" ++ "p\377\214\220p\377\214\217p\377\213\216o\377\212\216n\377\212\215m\377" ++ "\211\214m\377\210\214l\377\207\213k\377\207\212j\377\207\212i\377\206" ++ "\211i\377\205\210i\377\205\210h\377\204\207g\377\203\207f\377\203\206" ++ "f\377\202\206e\377\210\202\205e\377\10\245\257\276\377Ug\204\377DRj\377" ++ "\0\0\0\377\0\0\0G\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0" ++ "\12\0\0\0\377\2036AU\377\1KUd\377\252\0\0\0\377\1\204\214\230\377\202" ++ "6AU\377\6+4D\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0" ++ "\3\0\0\0\1\0\0\0\10\0\0\0\211\204\0\0\0\377\4\0\0\0\253\0\0\0V\0\0\0" ++ "O\0\0\0K\244\0\0\0I\2\0\0\0K\0\0\0\243\204\0\0\0\377\5\0\0\0\247\0\0" ++ "\0=\0\0\0\36\0\0\0\10\0\0\0\1\214\0\0\0\0\12\0\0\0\5\0\0\0\23\0\0\0*" ++ "\0\0\0=\0\0\0F\0\0\0G\0\0\0A\0\0\0""6\0\0\0,\0\0\0&\244\0\0\0%\13\0\0" ++ "\0&\0\0\0,\0\0\0""6\0\0\0A\0\0\0G\0\0\0F\0\0\0=\0\0\0*\0\0\0\24\0\0\0" ++ "\5\0\0\0\1\214\0\0\0\0\4\0\0\0\2\0\0\0\11\0\0\0\23\0\0\0\36\202\0\0\0" ++ "#\4\0\0\0\37\0\0\0\27\0\0\0\20\0\0\0\14\244\0\0\0\13\4\0\0\0\14\0\0\0" ++ "\20\0\0\0\27\0\0\0\37\202\0\0\0#\4\0\0\0\36\0\0\0\24\0\0\0\11\0\0\0\2" ++ "\216\0\0\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\12\3\0\0\0\11\0\0\0" ++ "\6\0\0\0\3\246\0\0\0\2\3\0\0\0\3\0\0\0\6\0\0\0\11\202\0\0\0\12\3\0\0" ++ "\0\10\0\0\0\6\0\0\0\2\221\0\0\0\0\205\0\0\0\1\251\0\0\0\0\205\0\0\0\1" ++ "\315\0\0\0\0"}; ++ ++ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_home_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (6699) */ ++ "\0\0\32C" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (280) */ ++ "\0\0\1\30" ++ /* width (70) */ ++ "\0\0\0F" ++ /* height (45) */ ++ "\0\0\0-" ++ /* pixel_data: */ ++ "\217\0\0\0\0\17\27\30\24A\40!\35|&&#\377$%!\377\"#\37\377!\"\36\377\37" ++ "\40\34\377\35\36\32\377\34\35\32\377\33\34\30\377\31\32\26\377\30\31" ++ "\25\377\27\30\24\374\27\30\24\255\27\30\24$\267\0\0\0\0\2\27\30\24\341" ++ "\330\331\323\377\212\365\365\360\377\3\361\362\354\377{|u\377\27\30\24" ++ "\227\267\0\0\0\0\3\27\30\24\345\353\353\345\377\361\362\353\377\211\345" ++ "\346\330\377\4\356\357\346\377\347\347\341\377\32\33\27\352\27\30\24" ++ "\4\266\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\212\336" ++ "\337\316\377\3\354\355\343\377qql\377\27\30\24N\266\0\0\0\0\3\27\30\24" ++ "\345\353\353\345\377\354\354\342\377\212\336\337\316\377\3\340\341\321" ++ "\377\324\325\317\377/0+\377\230\27\30\24\377\2\27\30\24\376\27\30\24" ++ "k\234\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\213\336" ++ "\337\316\377\2\346\347\332\377\364\364\357\377\227\365\365\360\377\4" ++ "\364\364\357\377\325\326\310\377\40!\34\377\27\30\24\25\233\0\0\0\0\3" ++ "\27\30\24\345\353\353\345\377\354\354\342\377\214\336\337\316\377\1\343" ++ "\344\325\377\227\347\350\333\377\4\343\344\325\377\336\337\316\377+," ++ "'\377\27\30\24\32\233\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354" ++ "\342\377\246\336\337\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\6\27\30" ++ "\24\345\353\353\345\377\354\354\342\377\335\336\315\377\331\332\312\377" ++ "\324\325\305\377\212\323\324\305\377\212\323\324\304\377\1\322\323\303" ++ "\377\212\321\322\302\377\2\322\323\303\377\331\332\312\377\202\336\337" ++ "\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\13\27\30\24\345\353\353\345" ++ "\377\354\354\342\377\333\334\313\377\310\311\272\377\233\234\220\377" ++ "\213\214\206\377\214\214\210\377\215\215\210\377\215\216\210\377\216" ++ "\216\211\377\202\216\216\212\377\11\216\216\213\377\216\217\213\377\217" ++ "\220\213\377\220\220\214\377\220\221\214\377\221\221\214\377\221\221" ++ "\215\377\221\222\216\377\222\222\216\377\202\223\223\217\377\202\224" ++ "\224\220\377\2\224\224\221\377\224\225\221\377\202\224\224\221\377\1" ++ "\224\224\220\377\202\223\224\220\377\202\223\223\220\377\10\222\222\217" ++ "\377\221\221\216\377\202\202z\377\303\304\265\377\335\336\315\377\336" ++ "\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345" ++ "\377\354\354\342\377\332\333\312\377\266\267\251\377\234\234\231\377" ++ "\225\377\377\377\377\20\375\375\375\377\373\373\373\377\371\371\371\377" ++ "\367\367\367\377\366\366\366\377\364\364\364\377\362\362\362\377\360" ++ "\360\360\377\356\356\356\377\354\354\354\377\307\307\307\377\233\234" ++ "\221\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0" ++ "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260" ++ "\261\244\377\273\273\272\377\224\377\377\377\377\21\376\376\376\377\374" ++ "\374\374\377\372\372\372\377\370\370\370\377\366\366\366\377\364\364" ++ "\364\377\363\363\363\377\361\361\361\377\357\357\357\377\355\355\355" ++ "\377\353\353\353\377\343\343\343\377\210\210\177\377\333\334\313\377" ++ "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353" ++ "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272" ++ "\377\223\377\377\377\377\22\376\376\376\377\374\374\374\377\372\372\372" ++ "\377\370\370\370\377\366\366\366\377\364\364\364\377\363\363\363\377" ++ "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351" ++ "\351\351\377\341\341\341\377\210\210\177\377\333\334\313\377\336\337" ++ "\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345\377" ++ "\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\222" ++ "\377\377\377\377\23\376\376\376\377\374\374\374\377\372\372\372\377\370" ++ "\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377\361\361" ++ "\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351\351\351" ++ "\377\350\350\350\377\340\340\340\377\210\210\177\377\333\334\313\377" ++ "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353" ++ "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272" ++ "\377\221\377\377\377\377\24\376\376\376\377\374\374\374\377\372\372\372" ++ "\377\370\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377" ++ "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351" ++ "\351\351\377\350\350\350\377\346\346\346\377\336\336\336\377\210\210" ++ "\177\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0" ++ "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260" ++ "\261\244\377\273\273\272\377\221\377\377\377\377\24\375\375\375\377\373" ++ "\373\373\377\371\371\371\377\367\367\367\377\365\365\365\377\363\363" ++ "\363\377\362\362\362\377\360\360\360\377\356\356\356\377\354\354\354" ++ "\377\352\352\352\377\350\350\350\377\346\346\346\377\344\344\344\377" ++ "\334\334\334\377\207\207~\377\332\333\312\377\334\335\314\377+,&\377" ++ "\27\30\24\32\226\0\0\0\0\205\0\0\0\1\6\27\30\24\346\353\353\345\377\354" ++ "\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\220\377" ++ "\377\377\377\26\375\375\375\377\373\373\373\377\371\371\371\377\367\367" ++ "\367\377\365\365\365\377\363\363\363\377\362\362\362\377\360\360\360" ++ "\377\356\356\356\377\354\354\354\377\352\352\352\377\350\350\350\377" ++ "\346\346\346\377\344\344\344\377\342\342\342\377\332\332\332\377\205" ++ "\206~\377\330\331\311\377\333\334\313\377+,&\377\26\27\23\32\0\0\0\1" ++ "\223\0\0\0\0\202\0\0\0\1\2\25\26\22\12\26\27\23\32\203\25\26\23\33\6" ++ "\27\30\24\351\326\326\320\377\327\327\315\377\306\307\270\377\241\242" ++ "\226\377\253\253\251\377\217\350\350\347\377\26\346\346\346\377\344\344" ++ "\344\377\342\342\342\377\341\341\340\377\340\340\337\377\336\336\336" ++ "\377\334\334\334\377\332\332\332\377\330\331\330\377\327\327\326\377" ++ "\325\325\325\377\323\323\323\377\322\322\322\377\320\320\320\377\317" ++ "\317\316\377\315\315\314\377\306\306\305\377zzs\377\304\305\266\377\306" ++ "\307\270\377()$\377\26\27\23""2\203\26\27\23\32\1\0\0\0\1\217\0\0\0\0" ++ "\202\0\0\0\1\2\25\26\22\30\27\30\24\324\227-.(\377\203-.'\377\204,.'" ++ "\377\210,-'\377\204+-&\377\207+,&\377\3$&\40\377\27\30\24\371\26\27\23" ++ "#\215\0\0\0\0\202\0\0\0\1\3\0\0\0\3\26\27\24h]_R\377\221\305\307\264" ++ "\377\10\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377" ++ "\302\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202" ++ "\300\302\260\377\12\277\302\257\377\276\301\257\377\276\300\256\377\275" ++ "\300\256\377\275\277\256\377\275\277\255\377\274\276\255\377\273\276" ++ "\254\377\273\275\254\377\272\275\253\377\202\271\274\253\377\16\271\273" ++ "\252\377\270\273\251\377\267\272\251\377\267\271\251\377\266\271\250" ++ "\377\266\271\247\377\265\270\247\377\265\267\247\377\264\267\246\377" ++ "\263\266\246\377\217\223|\377()\"\377\27\27\24F\0\0\0\1\213\0\0\0\0\202" ++ "\0\0\0\1\4\0\0\0\3\0\0\0\4\25\26\22""4DF;\377\217\305\307\264\377\10" ++ "\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377\302" ++ "\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202\300" ++ "\302\260\377\5\277\302\257\377\276\301\257\377\276\300\256\377\275\300" ++ "\256\377\275\277\256\377\202\274\276\255\377\12\273\276\255\377\272\275" ++ "\253\377\272\274\253\377\270\273\252\377\267\272\251\377\267\272\250" ++ "\377\266\271\247\377\266\270\247\377\264\267\246\377\263\266\245\377" ++ "\202\262\265\244\377\12\261\264\242\377\260\263\242\377\257\262\241\377" ++ "\255\260\236\377\223\227\201\377\201\205n\376\31\33\27\377\24\25\22\35" ++ "\0\0\0\2\0\0\0\1\212\0\0\0\0\12\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\7\7\7\6" ++ "\15\37!\33\366\301\303\257\377\305\307\264\377\304\307\263\377\255\260" ++ "\225\377\202\252\256\222\377\202\252\255\221\377\1\251\255\221\377\202" ++ "\251\255\220\377\202\251\254\220\377*\247\253\217\377\246\252\216\377" ++ "\245\251\215\377\245\251\214\377\244\250\213\377\242\246\212\377\241" ++ "\245\211\377\240\244\207\377\237\243\207\377\235\241\206\377\235\241" ++ "\204\377\234\240\204\377\233\237\203\377\232\236\202\377\230\234\201" ++ "\377\227\233\200\377\227\233\177\377\225\231~\377\224\230~\377\223\227" ++ "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377" ++ "\216\222x\377\215\221w\377\214\220v\377\213\217v\377\212\216u\377\212" ++ "\216t\377\211\215t\377\210\214s\377\207\213r\377\206\212q\377\205\211" ++ "q\377ejY\377\27\30\24\346\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1\210\0\0\0\0" ++ "\12\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\11\0\0\0\14\27\27\24\306\251" ++ "\253\230\377\305\307\264\377\303\305\261\377\207\244\250\212\377,\243" ++ "\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240\244" ++ "\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204" ++ "\377\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377" ++ "\230\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231" ++ "~\377\224\230}\377\223\227|\377\222\226|\377\222\226{\377\221\225z\377" ++ "\220\224z\377\217\223y\377\216\222x\377\216\222w\377\215\221w\377\214" ++ "\220v\377\213\217u\377\212\216u\377\211\215t\377\211\215s\377\210\214" ++ "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377" ++ "MSH\377\27\30\24\266\0\0\0\11\0\0\0\6\0\0\0\4\202\0\0\0\1\206\0\0\0\0" ++ "\202\0\0\0\1\11\0\0\0\4\0\0\0\6\0\0\0\11\0\0\0\15\0\0\0\21\26\27\23\223" ++ "\207\211x\377\305\307\264\377\304\307\264\377\205\244\250\212\377\10" ++ "\243\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240" ++ "\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\202\234" ++ "\240\203\377\4\233\237\202\377\232\236\201\377\231\235\201\377\230\234" ++ "\200\377\202\227\233\177\377\17\226\232~\377\225\231}\377\224\230|\377" ++ "\223\227|\377\222\226{\377\222\226z\377\221\225z\377\220\224y\377\217" ++ "\223x\377\216\222x\377\216\222w\377\215\221v\377\214\220v\377\213\217" ++ "u\377\212\216t\377\202\211\215s\377\4\210\214r\377\207\213q\377\206\212" ++ "q\377\205\211p\377\202\204\210o\377\11\203\207n\377\200\205l\3778\77" ++ "7\377\26\26\23\210\0\0\0\16\0\0\0\11\0\0\0\5\0\0\0\3\0\0\0\1\206\0\0" ++ "\0\0\11\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\14\0\0\0\21\0\0\0\25\23" ++ "\24\20f`cU\377\202\305\307\264\377\1\246\252\215\377\202\244\250\212" ++ "\3773\243\247\211\377\242\246\211\377\241\245\210\377\241\245\207\377" ++ "\240\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234" ++ "\240\204\377\233\237\203\377\233\237\202\377\232\236\202\377\231\235" ++ "\201\377\232\236\202\377\234\240\205\377\232\236\204\377\226\232~\377" ++ "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220" ++ "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220" ++ "v\377\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377" ++ "\207\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203" ++ "\207o\377\202\206n\377\201\205m\377\200\204m\377ryf\377(,(\377\23\24" ++ "\20]\0\0\0\22\0\0\0\15\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\205\0\0\0\0A" ++ "\0\0\0\1\0\0\0\4\0\0\0\6\0\0\0\12\0\0\0\21\0\0\0\25\0\0\0\33\14\15\13" ++ "868/\377\304\307\264\377\305\307\264\377\251\254\220\377\243\247\211" ++ "\377\242\246\211\377\241\245\210\377\241\245\207\377\240\244\206\377" ++ "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233" ++ "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234" ++ "\200\377\227\233\177\377\247\253\224\377\311\313\275\377\301\303\263" ++ "\377\224\230}\377\223\227|\377\222\226|\377\244\247\222\377\223\227}" ++ "\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377" ++ "\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377\207" ++ "\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203\207" ++ "o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203k\377" ++ "aj]\376\31\33\27\377\14\14\12""3\0\0\0\32\0\0\0\22\0\0\0\13\0\0\0\7\0" ++ "\0\0\4\0\0\0\1\204\0\0\0\0\202\0\0\0\1A\0\0\0\4\0\0\0\10\0\0\0\15\0\0" ++ "\0\22\0\0\0\33\0\0\0\40\0\0\0(\32\32\26\352\274\276\251\377\304\307\264" ++ "\377\251\255\222\377\241\245\210\377\241\245\207\377\240\244\206\377" ++ "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233" ++ "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234" ++ "\200\377\227\233\177\377\226\232\177\377\226\232~\377\241\245\214\377" ++ "\310\312\274\377\305\307\270\377\230\234\202\377\254\257\234\377\300" ++ "\303\264\377\306\310\272\377\305\307\271\377\262\265\243\377\232\235" ++ "\206\377\214\220v\377\213\217v\377\212\216u\377\212\216t\377\211\215" ++ "t\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\205\211p\377" ++ "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202j\377{\200i\377LWO\377\27\30\24\352\0\0\0" ++ "(\0\0\0\37\0\0\0\31\0\0\0\17\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\203\0\0" ++ "\0\0\37\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\17\0\0\0\25\0\0\0\34\0" ++ "\0\0(\0\0\0/\25\26\22\301\234\237\215\377\303\305\262\377\251\255\222" ++ "\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377" ++ "\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230" ++ "\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231~\377" ++ "\224\230}\377\223\227|\377\232\236\206\377\307\311\273\377\306\311\273" ++ "\377\202\305\310\272\377\2\305\307\272\377\305\307\271\377\202\304\306" ++ "\271\377\21\303\305\270\377\267\271\252\377\235\241\214\377\212\216u" ++ "\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377" ++ "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202k\377\202|\200i\377\13ovd\377BKD\377\25\26" ++ "\22\304\0\0\0""1\0\0\0(\0\0\0\34\0\0\0\24\0\0\0\12\0\0\0\6\0\0\0\3\0" ++ "\0\0\1\203\0\0\0\0\16\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\11\0\0\0\21\0\0\0" ++ "\30\0\0\0\37\0\0\0,\0\0\0:\22\23\20\232y{l\377\302\304\262\377\252\255" ++ "\224\377\235\241\204\377\202\234\240\203\377\4\233\237\202\377\232\236" ++ "\201\377\231\235\201\377\230\234\200\377\202\227\233\177\377\13\226\232" ++ "~\377\225\231}\377\224\230|\377\223\227|\377\225\231\177\377\253\256" ++ "\231\377\301\303\264\377\306\310\272\377\305\310\272\377\305\307\272" ++ "\377\305\307\271\377\202\304\306\271\377\202\303\305\270\377\203\302" ++ "\304\267\377\3\274\276\257\377\243\246\223\377\212\216v\377\202\204\210" ++ "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k" ++ "\377\177\203j\377~\202j\377\204|\200i\377\13bl^\3776>7\377\22\23\20\242" ++ "\0\0\0;\0\0\0""0\0\0\0\40\0\0\0\30\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\203" ++ "\0\0\0\0\36\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\12\0\0\0\21\0\0\0\30\0\0\0" ++ "!\0\0\0""1\0\0\0\77\14\15\13{PRG\377\300\303\260\377\252\256\226\377" ++ "\233\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230" ++ "\234\200\377\227\233\177\377\226\232\177\377\226\232~\377\225\231}\377" ++ "\224\230}\377\223\227|\377\231\235\204\377\260\263\240\377\304\306\270" ++ "\377\306\310\272\377\305\310\272\377\305\307\272\377\202\304\306\271" ++ "\377\1\303\305\271\377\202\303\305\270\377\4\302\304\270\377\302\304" ++ "\267\377\301\303\267\377\301\303\266\377\202\300\302\266\377\11\276\300" ++ "\263\377\270\272\254\377\241\244\222\377\207\213t\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202j\377}\201j\377\205|\200i\377\14z\177h\377" ++ "WcZ\377','\377\15\16\14\204\0\0\0K\0\0\0""6\0\0\0#\0\0\0\31\0\0\0\16" ++ "\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\33\0\0\0\2\0\0\0\5\0\0\0\12\0\0" ++ "\0\21\0\0\0\31\0\0\0$\0\0\0""1\0\0\0F\3\3\3^()#\376\276\300\256\377\254" ++ "\257\227\377\232\236\202\377\231\235\201\377\230\234\200\377\227\233" ++ "\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223\227" ++ "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377" ++ "\274\276\257\377\202\304\306\271\377\1\303\305\271\377\202\303\305\270" ++ "\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303\266\377" ++ "\202\300\302\266\377\11\300\302\265\377\277\301\265\377\256\261\241\377" ++ "\201\205m\377\200\204m\377\177\203l\377\177\203k\377~\202j\377}\201j" ++ "\377\207|\200i\377\14ovd\377S`X\377\31\33\27\377\5\5\4s\0\0\0R\0\0\0" ++ ">\0\0\0'\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\34\0" ++ "\0\0\1\0\0\0\4\0\0\0\11\0\0\0\21\0\0\0\30\0\0\0$\0\0\0""3\0\0\0E\0\0" ++ "\0_\25\26\22\345\255\257\235\377\255\260\232\377\230\234\200\377\227" ++ "\233\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223" ++ "\227|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223" ++ "x\377\216\222x\377\215\221w\377\263\265\244\377\303\305\271\377\202\303" ++ "\305\270\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303" ++ "\266\377\202\300\302\266\377\1\300\302\265\377\202\277\301\265\377\6" ++ "\276\300\264\377\245\250\230\377\177\203l\377\177\203k\377~\202j\377" ++ "}\201j\377\211|\200i\377\13bl^\377JVO\377\26\27\23\360\0\0\0d\0\0\0\\" ++ "\0\0\0A\0\0\0)\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\205\0\0\0\0!\0\0\0" ++ "\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\27\0\0\0\"\0\0\0""2\0\0\0D\0\0\0\\" ++ "\22\23\20\304\214\216~\377\256\261\233\377\226\232\177\377\225\231~\377" ++ "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220" ++ "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220" ++ "v\377\213\217v\377\252\255\232\377\303\305\270\377\302\304\270\377\220" ++ "\224|\377\207\213r\377\206\212r\377\220\224~\377\202\300\302\266\377" ++ "\202\277\301\265\377\202\276\300\264\377\3\276\300\263\377\235\240\216" ++ "\377~\202k\377\213|\200i\377\14z\177h\377WcZ\377BKD\377\23\24\21\327" ++ "\0\0\0i\0\0\0Z\0\0\0A\0\0\0*\0\0\0\33\0\0\0\16\0\0\0\7\0\0\0\2\206\0" ++ "\0\0\0\21\0\0\0\2\0\0\0\6\0\0\0\16\0\0\0\25\0\0\0\37\0\0\0/\0\0\0A\0" ++ "\0\0Z\16\17\14\246ik]\377\257\262\235\377\224\230}\377\224\230|\377\223" ++ "\227{\377\222\226z\377\221\225z\377\220\224y\377\202\217\223x\377\17" ++ "\216\222w\377\215\221v\377\214\220v\377\213\217u\377\212\216t\377\212" ++ "\216s\377\241\244\220\377\302\304\267\377\301\303\266\377\224\227\201" ++ "\377\205\211p\377\205\211o\377\216\221z\377\277\301\265\377\277\301\264" ++ "\377\203\276\300\263\377\202\275\277\262\377\1\223\226\203\377\214|\200" ++ "i\377\14nuc\377VbY\3776>7\377\20\20\15\275\0\0\0r\0\0\0V\0\0\0\77\0\0" ++ "\0&\0\0\0\32\0\0\0\15\0\0\0\6\0\0\0\1\206\0\0\0\0\32\0\0\0\1\0\0\0\5" ++ "\0\0\0\13\0\0\0\23\0\0\0\36\0\0\0,\0\0\0=\0\0\0U\10\10\7\207AB9\377\260" ++ "\263\237\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217" ++ "\223y\377\216\222x\377\215\221w\377\214\220v\377\213\217v\377\213\217" ++ "u\377\212\216t\377\211\215t\377\210\214s\377\207\213r\377\227\233\205" ++ "\377\202\300\302\266\377\5\227\232\205\377\203\207o\377\202\206n\377" ++ "\211\215w\377\276\300\264\377\202\275\277\263\377\1\275\277\262\377\203" ++ "\274\276\262\377\1\213\217{\377\214|\200i\377\14bk^\377VbY\377','\377" ++ "\13\13\11\243\0\0\0s\0\0\0S\0\0\0:\0\0\0$\0\0\0\30\0\0\0\13\0\0\0\3\0" ++ "\0\0\1\206\0\0\0\0\"\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\32\0\0\0" ++ "(\0\0\0""9\0\0\0N\1\1\1j\35\36\32\371\255\260\234\377\220\224z\377\217" ++ "\223y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377\213\217" ++ "u\377\212\216u\377\212\216t\377\211\215s\377\210\214s\377\207\213r\377" ++ "\206\212q\377\205\211q\377\215\220z\377\300\302\265\377\277\301\265\377" ++ "\233\236\212\377\201\205m\377\200\204l\377\207\212u\377\275\277\263\377" ++ "\275\277\262\377\205\274\276\262\377\1\204\207r\377\213|\200i\377\14" ++ "z~h\377WcZ\377S`X\377\31\34\30\377\4\4\4\210\0\0\0p\0\0\0O\0\0\0""5\0" ++ "\0\0\"\0\0\0\25\0\0\0\10\0\0\0\2\210\0\0\0\0\12\0\0\0\2\0\0\0\6\0\0\0" ++ "\16\0\0\0\27\0\0\0#\0\0\0""5\0\0\0H\0\0\0`\24\25\21\335\226\232\207\377" ++ "\202\216\222x\377\4\215\221w\377\214\220v\377\213\217v\377\212\216u\377" ++ "\202\211\215t\377\16\210\214s\377\207\213r\377\206\212q\377\205\211q" ++ "\377\204\210p\377\204\210o\377\203\207p\377\246\251\230\377\246\250\227" ++ "\377\221\225\201\377\177\203l\377\177\203k\377\201\205n\377\235\240\216" ++ "\377\206\234\237\215\377\1}\200j\377\213|\200i\377\14nuc\377VbY\377J" ++ "UN\377\26\27\23\362\0\0\0{\0\0\0e\0\0\0J\0\0\0""1\0\0\0\37\0\0\0\17\0" ++ "\0\0\7\0\0\0\2\210\0\0\0\0\35\0\0\0\1\0\0\0\4\0\0\0\13\0\0\0\22\0\0\0" ++ "\36\0\0\0-\0\0\0\77\0\0\0U\21\22\17\272y{m\377\215\221w\377\214\220v" ++ "\377\213\217v\377\212\216u\377\211\215t\377\211\215s\377\210\214s\377" ++ "\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377\203" ++ "\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203" ++ "k\377~\202k\377\225|\200i\377\14ak^\377VbY\377BKD\377\23\24\21\327\0" ++ "\0\0m\0\0\0Y\0\0\0B\0\0\0*\0\0\0\32\0\0\0\14\0\0\0\5\0\0\0\1\210\0\0" ++ "\0\0\22\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\20\0\0\0\30\0\0\0%\0\0\0""5\0\0" ++ "\0E\15\16\14\220Y[N\377\213\217v\377\212\216t\377\211\215s\377\210\214" ++ "s\377\210\214r\377\207\213q\377\206\212q\377\205\211p\377\202\204\210" ++ "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k" ++ "\377\177\203j\377~\202j\377\223|\200i\377\17z\177h\377x}g\377v{g\377" ++ "pvd\377VcZ\377VbY\3776>7\377\20\21\16\266\0\0\0]\0\0\0J\0\0\0""2\0\0" ++ "\0!\0\0\0\26\0\0\0\12\0\0\0\3\212\0\0\0\0\30\0\0\0\2\0\0\0\5\0\0\0\14" ++ "\0\0\0\22\0\0\0\35\0\0\0)\0\0\0""6\10\10\7Z13+\377\214\220x\377\210\214" ++ "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377" ++ "\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177" ++ "\203k\377~\202j\377}\201j\377\204|\200i\377\21z\177h\377x}g\377v{g\377" ++ "sye\377qxe\377ovd\377mtc\377krb\377hqa\377fo`\377dm_\377bk^\377_j]\377" ++ "]h\\\377[f\\\377Yd[\377VcZ\377\206VbY\377\11','\377\15\16\13\207\0\0" ++ "\0F\0\0\0""4\0\0\0%\0\0\0\32\0\0\0\16\0\0\0\7\0\0\0\2\212\0\0\0\0\34" ++ "\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\17\0\0\0\24\0\0\0\34\0\0\0&\0\0\0""1" ++ "\30\31\25\354hkX\377{\177h\377x|f\377uze\377rwc\377pvb\377lsa\377jq_" ++ "\377gn^\377el]\377bi[\377`hZ\377]eY\377ZdX\377XbW\377VaV\377T`V\377R" ++ "^U\377P]T\377\226P\\T\377\12MXQ\377\30\32\26\377\10\10\7M\0\0\0-\0\0" ++ "\0\"\0\0\0\32\0\0\0\21\0\0\0\12\0\0\0\3\0\0\0\1\213\0\0\0\0\11\0\0\0" ++ "\1\0\0\0\4\0\0\0\10\0\0\0\16\0\0\0\23\0\0\0\30\0\0\0\40\17\17\15N\26" ++ "\27\23\332\240\27\30\24\352\210\27\30\24\351\11\26\27\24\344\21\22\17" ++ "h\0\0\0!\0\0\0\36\0\0\0\30\0\0\0\20\0\0\0\11\0\0\0\5\0\0\0\1\215\0\0" ++ "\0\0\7\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\24\211" ++ "\0\0\0\25\234\0\0\0\24\202\0\0\0\23\205\0\0\0\22\5\0\0\0\16\0\0\0\14" ++ "\0\0\0\7\0\0\0\5\0\0\0\2\217\0\0\0\0\4\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0" ++ "\5\203\0\0\0\6\252\0\0\0\5\202\0\0\0\4\202\0\0\0\2\1\0\0\0\1\223\0\0" ++ "\0\0\216\0\0\0\1\254\0\0\0\0"}; ++ ++ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_documents_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (3237) */ ++ "\0\0\14\275" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (192) */ ++ "\0\0\0\300" ++ /* width (48) */ ++ "\0\0\0""0" ++ /* height (48) */ ++ "\0\0\0""0" ++ /* pixel_data: */ ++ "\377\0\0\0\0\377\0\0\0\0\363\0\0\0\0\1XXX\2\240\0\0\0\0\1\0\0\0Y\213" ++ "\0\0\0\377\7\0\0\0\366\0\0\0\362\16\16\16\377(((\377aaa\333\0\0\0\10" ++ "\0\0\0\1\235\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\210" ++ "\377\377\377\377\1\371\371\371\377\202\371\371\370\377\6\347\347\347" ++ "\377\344\344\344\377\315\315\315\377\37\37\37\344\0\0\0\24\0\0\0\2\234" ++ "\0\0\0\0\2\0\0\0\377\366\366\366\377\212\377\377\377\377\11\371\371\370" ++ "\377\357\357\356\377\257\257\256\377\351\351\351\377\377\377\377\377" ++ "\263\263\263\377888\375\0\0\0\16\0\0\0\2\233\0\0\0\0\1\0\0\0\377\202" ++ "\377\377\377\377\205yyy\377\2xxx\377yyy\377\202xxx\377\12\371\371\370" ++ "\377\356\356\356\377\244\244\243\377\360\360\360\377\377\377\377\377" ++ "\364\364\364\377\253\253\253\377\5\5\5\231\0\0\0\13\0\0\0\1\232\0\0\0" ++ "\0\1\0\0\0\377\205\377\377\377\377\11\376\376\376\377\375\375\375\377" ++ "\374\374\373\377\375\375\375\377\374\374\373\377\373\373\373\377\371" ++ "\371\370\377\362\362\362\377\236\236\236\377\204\0\0\0\377\3\0\0\0\330" ++ "\0\0\0\33\0\0\0\5\225\0\0\0\0\1\0\0\0Y\205\0\0\0\377\202\377\377\377" ++ "\377\1yyy\377\202xxx\377\202www\377\16vvv\377www\377vvv\377vvu\377\371" ++ "\371\370\377\364\364\364\377\324\324\323\377\271\267\266\377\203\203" ++ "\201\377\204\203\201\377jgc\377\0\0\0\343\0\0\0&\0\0\0\7\225\0\0\0\0" ++ "\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377\377\377\26\0" ++ "\0\0\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\373" ++ "\377\373\373\373\377\372\372\371\377\371\371\370\377\370\370\367\377" ++ "\371\371\370\377\370\370\367\377\370\367\366\377\371\371\370\377\363" ++ "\362\361\377\340\340\337\377\334\332\330\377\312\312\310\377\266\266" ++ "\264\377rpl\377\0\0\0\356\0\0\0)\0\0\0\10\225\0\0\0\0\2\0\0\0\377\366" ++ "\366\366\377\203\377\377\377\377\16\0\0\0\377\377\377\377\377\374\374" ++ "\373\377www\377vvv\377vvu\377uuu\377uut\377utt\377uut\377utt\377tts\377" ++ "\364\363\362\377\361\360\357\377\202\360\357\355\377\6\345\344\342\377" ++ "\304\303\300\377\201}t\377\0\0\0\377\0\0\0,\0\0\0\11\225\0\0\0\0\1\0" ++ "\0\0\377\202\377\377\377\377\202yyy\377\13\0\0\0\377\377\377\377\377" ++ "\372\372\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367" ++ "\366\365\377\366\366\364\377\365\364\363\377\366\366\364\377\365\364" ++ "\363\377\204\364\363\362\377\1\353\352\350\377\202\341\337\334\377\4" ++ "\213\206}\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\1\0\0\0Y\205\0\0" ++ "\0\377\204\377\377\377\377\7\0\0\0\377\377\377\377\377\370\370\367\377" ++ "uut\377utt\377tts\377tss\377\204ssr\377\2rrq\377qqp\377\202ppo\377\7" ++ "llk\377jih\377\341\337\334\377\244\236\223\377\0\0\0\377\0\0\0/\0\0\0" ++ "\11\220\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377" ++ "\377\377\1\0\0\0\377\202\377\377\377\377\6yyy\377xxx\377\0\0\0\377\377" ++ "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377\20\363" ++ "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361" ++ "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\347\346\343" ++ "\377\342\341\337\377\344\343\340\377\341\337\334\377\244\236\223\377" ++ "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\2\0\0\0\377\366\366\366\377\203" ++ "\377\377\377\377\12\0\0\0\377\377\377\377\377\376\376\376\377\375\375" ++ "\375\377\374\374\373\377\0\0\0\377\377\377\377\377\364\363\362\377sr" ++ "r\377rrq\377\202qqp\377\17rqp\377qqp\377rqp\377qqp\377qpo\377oon\377" ++ "nml\377llj\377lkj\377kji\377\341\337\334\377\244\236\223\377\0\0\0\377" ++ "\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\202\377\377\377\377\202yyy\377" ++ "\33\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0\0\0\377" ++ "\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\360" ++ "\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361\360" ++ "\356\377\360\357\355\377\357\356\354\377\354\353\351\377\350\347\345" ++ "\377\345\344\341\377\344\343\340\377\342\341\336\377\341\337\334\377" ++ "\244\236\223\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\204" ++ "\377\377\377\377\10\0\0\0\377\377\377\377\377\372\372\371\377\371\371" ++ "\370\377\370\370\367\377\0\0\0\377\377\377\377\377\360\360\356\377\202" ++ "\230\250\265\377\4\230\250\264\377\230\247\264\377\227\247\263\377\355" ++ "\354\352\377\202poo\377\13oon\377nml\377mmk\377kki\377kjh\377jjh\377" ++ "\340\337\333\377\241\234\220\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0" ++ "\0\1\0\0\0\377\202\377\377\377\377\21yyy\377xxx\377\0\0\0\377\377\377" ++ "\377\377\370\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\355" ++ "\355\353\377\227\247\263\377\276\274\307\377\355\337\261\377\227\246" ++ "\263\377\226\246\262\377\351\350\345\377\353\352\350\377\202\351\350" ++ "\345\377\12\345\344\341\377\346\344\341\377\343\342\336\377\337\336\332" ++ "\377\336\335\331\377\335\334\330\377\241\233\220\377\0\0\0\377\0\0\0" ++ "/\0\0\0\11\220\0\0\0\0\17\0\0\0\377\377\377\377\377\376\376\376\377\375" ++ "\375\375\377\374\374\373\377\0\0\0\377\377\377\377\377\366\365\364\377" ++ "\365\365\363\377\364\363\362\377\0\0\0\377\377\377\377\377\353\352\350" ++ "\377\225\245\261\377\274\272\305\377\202\353\336\257\377\17\225\244\261" ++ "\377\347\346\343\377nml\377mmk\377mlk\377lki\377kki\377jig\377ihf\377" ++ "hhf\377\334\333\327\377\241\233\220\377\0\0\0\377\0\0\0/\0\0\0\11\220" ++ "\0\0\0\0\40\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0" ++ "\0\0\377\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\224\243\260\377\273\271\304\377\352\335" ++ "\256\377\351\334\256\377\224\243\257\377\345\344\340\377\346\344\341" ++ "\377\345\344\340\377\344\343\337\377\342\341\335\377\340\337\333\377" ++ "\336\335\331\377\334\333\327\377\333\331\325\377\331\327\323\377\237" ++ "\231\215\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\16\0\0\0\377\377\377" ++ "\377\377\372\372\371\377\371\371\370\377\370\370\367\377\0\0\0\377\377" ++ "\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\0\0\0\377" ++ "\371\371\371\377\344\343\340\377\223\242\256\377\202\272\267\302\377" ++ "\5\272\270\302\377\222\241\255\377\343\342\336\377kjh\377kki\377\202" ++ "jjh\377\11ihf\377hgf\377hge\377ffd\377\330\326\322\377\236\230\215\377" ++ "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377\377\377\377\377\370" ++ "\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\360\360\356\377" ++ "\202qqp\377\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334" ++ "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377" ++ "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340" ++ "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326" ++ "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\0\0\0/\0\0\0\11\220" ++ "\0\0\0\0\25\0\0\0\377\377\377\377\377\366\365\364\377\365\365\363\377" ++ "\364\363\362\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352" ++ "\377\354\353\351\377\0\0\0\377\321\321\321\377\341\337\333\377\340\336" ++ "\332\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331" ++ "\377\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330" ++ "\377\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316" ++ "\377\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377" ++ "\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377\377\377" ++ "\377\353\352\350\377\202nnm\377\15\0\0\0\377\231\230\221\377\243\236" ++ "\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243\235\222" ++ "\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234\220\377" ++ "\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235\227\214" ++ "\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\10" ++ "\0\0\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360" ++ "\377\0\0\0\377\377\377\377\377\347\346\343\377\202\346\345\342\377\1" ++ "\221\220\216\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\220\0\0\0\0\3" ++ "\0\0\0\377\377\377\377\377\360\360\356\377\202\357\357\355\377\3\0\0" ++ "\0\377\371\371\371\377\344\343\340\377\202kki\377\6jig\377ba_\377YXV" ++ "\377WWU\377WVT\377WWU\377\202VVT\377\11\265\264\261\377\264\262\257\377" ++ "\263\261\256\377\261\257\254\377\260\256\253\377\200{s\377\0\0\0\377" ++ "\0\0\0U\0\0\0""6\202\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\220\0\0\0\0\33" ++ "\0\0\0\377\377\377\377\377\355\355\353\377poo\377oon\377\0\0\0\377\355" ++ "\355\355\377\341\340\335\377\341\337\334\377\341\340\334\377\340\337" ++ "\333\377\336\335\331\377\330\330\324\377\331\330\324\377\330\327\323" ++ "\377\331\330\324\377\327\326\322\377\330\326\322\377\325\323\317\377" ++ "\324\322\316\377\321\317\313\377\320\316\311\377\317\315\311\377\227" ++ "\221\206\377\0\0\0\377\0\0\0""6\0\0\0\22\202\0\0\0\11\2\0\0\0\10\0\0" ++ "\0\4\221\0\0\0\0\3\0\0\0\377\377\377\377\377\353\352\350\377\202\351" ++ "\350\346\377\13\0\0\0\377\321\321\321\377\341\337\333\377\340\336\332" ++ "\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331\377" ++ "\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330\377" ++ "\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316\377" ++ "\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\225\0\0\0\0\3\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\202mlk\377\15\0\0\0\377\231\230\221\377" ++ "\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243" ++ "\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234" ++ "\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235" ++ "\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\225\0" ++ "\0\0\0\6\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343" ++ "\342\336\377\217\216\214\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\225" ++ "\0\0\0\0\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334\377" ++ "\341\340\334\377\334\333\327\377\315\314\311\377\273\272\266\377\267" ++ "\266\263\377\266\265\262\377\267\266\263\377\265\265\261\377\266\265" ++ "\261\377\264\262\257\377\263\261\256\377\261\257\254\377\260\256\252" ++ "\377\257\255\252\377\200{q\377\0\0\0\377\0\0\0U\0\0\0""6\202\0\0\0/\3" ++ "\0\0\0*\0\0\0\27\0\0\0\4\225\0\0\0\0\13\0\0\0\377\321\321\321\377\341" ++ "\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377\334\333" ++ "\327\377\327\326\322\377\330\326\322\377\326\325\321\377\330\326\322" ++ "\377\202\326\324\320\377\202\324\322\316\377\7\320\316\312\377\317\316" ++ "\311\377\315\313\306\377\225\217\205\377\0\0\0\377\0\0\0""6\0\0\0\22" ++ "\202\0\0\0\11\2\0\0\0\10\0\0\0\4\226\0\0\0\0\15\0\0\0\377\231\230\221" ++ "\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377" ++ "\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242" ++ "\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202" ++ "\235\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\232" ++ "\0\0\0\0\1\0\0\0^\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\232\0\0\0\0" ++ "\3\0\0\0\4\0\0\0\27\0\0\0*\220\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\233\0" ++ "\0\0\0\2\0\0\0\4\0\0\0\10\220\0\0\0\11\2\0\0\0\10\0\0\0\4\377\0\0\0\0" ++ "\377\0\0\0\0\345\0\0\0\0"}; ++ ++ --- gtk+2.0-2.17.10.orig/debian/patches/009_gtk-export-filechooser.patch +++ gtk+2.0-2.17.10/debian/patches/009_gtk-export-filechooser.patch @@ -0,0 +1,233 @@ +2007-06-24 Loic Minier <lool@dooz.org> + + * gtk/Makefile.am (gtk_private_h_sources, gtk_semi_private_h_sources): + export gtkquery.h and gtksearchengine.h as semi-private + * gtk/gtkquery.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef guard + * gtk/gtksearchengine.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef + guard + +2007-02-07 Kristian Rietveld <kris@imendio.com> + + * gtk/gtkfilechooserutils.[ch] + (hildon_gtk_file_chooser_install_properties): conditionalize with + MAEMO_CHANGES, port over doc comment. + +2006-12-04 Tommi Komulainen <tommi.komulainen@nokia.com> + + Export enough symbols for implementing GtkFileChooser interface + outside gtk. + + * gtk/gtk.symbols: add hildon_gtk_file_chooser_install_properties + * gtk/Makefile.am (INCLUDES): add -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + (gtk_private_h_sources, gtk_semi_private_h_sources): export + gtkfilesystemmodel.h, gtkfilechooserprivate.h, and + gtkfilechooserutils.h as semi-private + * gtk/gtkfilechooserutils.c + (hildon_gtk_file_chooser_install_properties): add exported version of + _gtk_file_chooser_install_properties + * gtk/gtkfilesystemmodel.h: add GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED + #ifdef guard + * gtk/gtkfilechooserprivate.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + #ifdef guard + * gtk/gtkfilechooserutils.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + #ifdef guard, declare hildon_gtk_file_chooser_install_properties + + * tests/autotestfilechooser.c: build with + GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED +Index: gtk+-2.17.9/gtk/Makefile.am +=================================================================== +--- gtk+-2.17.9.orig/gtk/Makefile.am 2009-07-20 12:33:47.000000000 +1000 ++++ gtk+-2.17.9/gtk/Makefile.am 2009-08-27 16:21:54.000000000 +1000 +@@ -42,6 +42,8 @@ + -I$(top_srcdir)/gdk \ + -I$(top_srcdir)/gdk-pixbuf -I../gdk-pixbuf \ + -DGDK_DISABLE_DEPRECATED \ ++ -DMAEMO_CHANGES \ ++ -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED \ + -DGTK_DISABLE_DEPRECATED \ + -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED \ + -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ +@@ -348,12 +350,16 @@ + # Installed header files without compatibility guarantees + # that are not included in gtk/gtk.h + gtk_semi_private_h_sources = \ +- gtktextlayout.h ++ gtktextlayout.h \ ++ gtkfilesystem.h \ ++ gtkfilesystemmodel.h \ ++ gtkfilechooserprivate.h \ ++ gtkfilechooserutils.h \ ++ gtkquery.h \ ++ gtksearchengine.h + + # GTK+ header files that don't get installed + gtk_private_h_sources = \ +- gtkquery.h \ +- gtksearchengine.h \ + gtksearchenginesimple.h \ + gtkdndcursors.h \ + gtkentryprivate.h \ +@@ -362,11 +368,7 @@ + gtkfilechooserdefault.h \ + gtkfilechooserembed.h \ + gtkfilechooserentry.h \ +- gtkfilechooserprivate.h \ + gtkfilechoosersettings.h \ +- gtkfilechooserutils.h \ +- gtkfilesystem.h \ +- gtkfilesystemmodel.h \ + gtkiconcache.h \ + gtkintl.h \ + gtkkeyhash.h \ +Index: gtk+-2.17.9/gtk/gtk.symbols +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtk.symbols 2009-08-15 06:13:11.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtk.symbols 2009-08-27 16:21:54.000000000 +1000 +@@ -1610,6 +1610,12 @@ + #endif + #endif + ++#if IN_HEADER(__GTK_FILE_CHOOSER_UTILS_H__) ++#if IN_FILE(__GTK_FILE_CHOOSER_UTILS_C__) ++hildon_gtk_file_chooser_install_properties ++#endif ++#endif ++ + #if IN_HEADER(__GTK_FILE_CHOOSER_WIDGET_H__) + #if IN_FILE(__GTK_FILE_CHOOSER_WIDGET_C__) + gtk_file_chooser_widget_get_type G_GNUC_CONST +Index: gtk+-2.17.9/gtk/gtkfilechooserprivate.h +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkfilechooserprivate.h 2009-08-07 13:42:23.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkfilechooserprivate.h 2009-08-27 16:21:54.000000000 +1000 +@@ -21,6 +21,14 @@ + #ifndef __GTK_FILE_CHOOSER_PRIVATE_H__ + #define __GTK_FILE_CHOOSER_PRIVATE_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include "gtkfilechooser.h" + #include "gtkfilesystem.h" + #include "gtkfilesystemmodel.h" +Index: gtk+-2.17.9/gtk/gtkfilechooserutils.c +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkfilechooserutils.c 2009-08-07 13:42:23.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkfilechooserutils.c 2009-08-27 16:21:54.000000000 +1000 +@@ -122,6 +122,22 @@ + "create-folders"); + } + ++#ifdef MAEMO_CHANGES ++/** ++ * hildon_gtk_file_chooser_install_properties: ++ * ++ * Exactly the same as the private _gtk_file_chooser_install_properties() ++ * but exported for hildon-fm. ++ * ++ * Since: maemo 2.0 ++ */ ++void ++hildon_gtk_file_chooser_install_properties (GObjectClass *klass) ++{ ++ _gtk_file_chooser_install_properties (klass); ++} ++#endif /* MAEMO_CHANGES */ ++ + /** + * _gtk_file_chooser_delegate_iface_init: + * @iface: a #GtkFileChoserIface structure +@@ -363,3 +379,6 @@ + g_signal_emit_by_name (data, "confirm-overwrite", &conf); + return conf; + } ++ ++#define __GTK_FILE_CHOOSER_UTILS_C__ ++#include "gtkaliasdef.c" +Index: gtk+-2.17.9/gtk/gtkfilechooserutils.h +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkfilechooserutils.h 2009-08-07 13:42:23.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkfilechooserutils.h 2009-08-27 16:21:54.000000000 +1000 +@@ -22,6 +22,14 @@ + #ifndef __GTK_FILE_CHOOSER_UTILS_H__ + #define __GTK_FILE_CHOOSER_UTILS_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserutils.h is not supported API for general use" ++#endif ++ + #include "gtkfilechooserprivate.h" + + G_BEGIN_DECLS +@@ -46,6 +54,9 @@ + } GtkFileChooserProp; + + void _gtk_file_chooser_install_properties (GObjectClass *klass); ++#ifdef MAEMO_CHANGES ++void hildon_gtk_file_chooser_install_properties (GObjectClass *klass); ++#endif /* MAEMO_CHANGES */ + + void _gtk_file_chooser_delegate_iface_init (GtkFileChooserIface *iface); + void _gtk_file_chooser_set_delegate (GtkFileChooser *receiver, +Index: gtk+-2.17.9/gtk/gtkfilesystemmodel.h +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkfilesystemmodel.h 2009-06-05 05:18:04.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkfilesystemmodel.h 2009-08-27 16:21:54.000000000 +1000 +@@ -21,6 +21,10 @@ + #ifndef __GTK_FILE_SYSTEM_MODEL_H__ + #define __GTK_FILE_SYSTEM_MODEL_H__ + ++#ifndef GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED ++#error "GtkFileSystemModel is not supported API for general use" ++#endif ++ + #include "gtkfilesystem.h" + #include <gtk/gtktreemodel.h> + +Index: gtk+-2.17.9/gtk/gtkquery.h +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkquery.h 2009-04-03 00:54:56.000000000 +1100 ++++ gtk+-2.17.9/gtk/gtkquery.h 2009-08-27 16:21:54.000000000 +1000 +@@ -23,6 +23,14 @@ + #ifndef __GTK_QUERY_H__ + #define __GTK_QUERY_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include <glib-object.h> + + G_BEGIN_DECLS +Index: gtk+-2.17.9/gtk/gtksearchengine.h +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtksearchengine.h 2009-06-05 05:18:04.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtksearchengine.h 2009-08-27 16:21:54.000000000 +1000 +@@ -23,6 +23,14 @@ + #ifndef __GTK_SEARCH_ENGINE_H__ + #define __GTK_SEARCH_ENGINE_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include "gtkquery.h" + + G_BEGIN_DECLS --- gtk+2.0-2.17.10.orig/debian/patches/060_ignore-random-icons.patch +++ gtk+2.0-2.17.10/debian/patches/060_ignore-random-icons.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.17.3/gtk/updateiconcache.c +=================================================================== +--- gtk+2.0-2.17.3.orig/gtk/updateiconcache.c 2009-07-02 01:02:22.000000000 +0200 ++++ gtk+2.0-2.17.3/gtk/updateiconcache.c 2009-07-09 17:41:36.000000000 +0200 +@@ -660,7 +660,7 @@ + directories = g_list_append (directories, g_strdup (subdir)); + } + else +- dir_index = 0xffff; ++ continue; + } + + image = g_new0 (Image, 1); --- gtk+2.0-2.17.10.orig/debian/patches/000_gtk+-2.0.6-exportsymbols.patch +++ gtk+2.0-2.17.10/debian/patches/000_gtk+-2.0.6-exportsymbols.patch @@ -0,0 +1,14 @@ +Index: gtk+2.0-2.10.10/configure.in +=================================================================== +--- gtk+2.0-2.10.10.orig/configure.in 2007-03-12 15:07:22.000000000 +0100 ++++ gtk+2.0-2.10.10/configure.in 2007-03-13 14:10:00.000000000 +0100 +@@ -351,7 +351,8 @@ + if test "$os_win32" != yes; then + # libtool option to control which symbols are exported + # right now, symbols starting with _ are not exported +- LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[[^_]].*"' ++ # Disabled until -export-symbols-regex works (RH patch) ++ LIBTOOL_EXPORT_OPTIONS= + else + # We currently use .def files on Windows (for gdk-pixbuf, gdk and gtk) + LIBTOOL_EXPORT_OPTIONS= --- gtk+2.0-2.17.10.orig/debian/patches/022_disable-viqr-im-for-vi-locale.patch +++ gtk+2.0-2.17.10/debian/patches/022_disable-viqr-im-for-vi-locale.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.17.3/modules/input/imviqr.c +=================================================================== +--- gtk+2.0-2.17.3.orig/modules/input/imviqr.c 2009-06-04 21:18:04.000000000 +0200 ++++ gtk+2.0-2.17.3/modules/input/imviqr.c 2009-07-09 17:41:31.000000000 +0200 +@@ -244,7 +244,7 @@ + N_("Vietnamese (VIQR)"), /* Human readable name */ + GETTEXT_PACKAGE, /* Translation domain */ + GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */ +- "vi" /* Languages for which this module is the default */ ++ "" /* Languages for which this module is the default */ + }; + + static const GtkIMContextInfo *info_list[] = { --- gtk+2.0-2.17.10.orig/debian/patches/061_use_pdf_as_default_printing_standard.patch +++ gtk+2.0-2.17.10/debian/patches/061_use_pdf_as_default_printing_standard.patch @@ -0,0 +1,45 @@ +Index: gtk+-2.17.9/modules/printbackends/cups/gtkprintbackendcups.c +=================================================================== +--- gtk+-2.17.9.orig/modules/printbackends/cups/gtkprintbackendcups.c 2009-08-20 12:53:13.000000000 +1000 ++++ gtk+-2.17.9/modules/printbackends/cups/gtkprintbackendcups.c 2009-08-27 16:22:24.000000000 +1000 +@@ -340,8 +340,9 @@ + + /* TODO: check if it is a ps or pdf printer */ + +- surface = cairo_ps_surface_create_for_stream (_cairo_write_to_cups, cache_io, width, height); ++ surface = cairo_pdf_surface_create_for_stream (_cairo_write_to_cups, cache_io, width, height); + ++ /* + ppd_file = gtk_printer_cups_get_ppd (GTK_PRINTER_CUPS (printer)); + + if (ppd_file != NULL) +@@ -408,6 +409,7 @@ + + if (level == 3) + cairo_ps_surface_restrict_to_level (surface, CAIRO_PS_LEVEL_3); ++ */ + + cairo_surface_set_fallback_resolution (surface, + 2.0 * gtk_print_settings_get_printer_lpi (settings), +Index: gtk+-2.17.9/modules/printbackends/lpr/gtkprintbackendlpr.c +=================================================================== +--- gtk+-2.17.9.orig/modules/printbackends/lpr/gtkprintbackendlpr.c 2009-08-12 00:53:42.000000000 +1000 ++++ gtk+-2.17.9/modules/printbackends/lpr/gtkprintbackendlpr.c 2009-08-27 16:22:24.000000000 +1000 +@@ -31,6 +31,8 @@ + #include <cairo.h> + #include <cairo-ps.h> + ++#include <cairo-pdf.h> ++ + #include <glib/gi18n-lib.h> + + #include <gtk/gtk.h> +@@ -209,7 +211,7 @@ + { + cairo_surface_t *surface; + +- surface = cairo_ps_surface_create_for_stream (_cairo_write, cache_io, width, height); ++ surface = cairo_pdf_surface_create_for_stream (_cairo_write, cache_io, width, height); + + if (gtk_print_settings_get_printer_lpi (settings) == 0.0) + gtk_print_settings_set_printer_lpi (settings, 150.0); --- gtk+2.0-2.17.10.orig/debian/patches/070_mandatory-relibtoolize.patch +++ gtk+2.0-2.17.10/debian/patches/070_mandatory-relibtoolize.patch @@ -0,0 +1,89646 @@ +diff -Nur gtk+2.0-2.17.10/aclocal.m4 gtk+2.0-2.17.10.ubuntu/aclocal.m4 +--- gtk+2.0-2.17.10/aclocal.m4 2009-09-01 06:02:43.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/aclocal.m4 2009-09-01 18:43:53.000000000 +0200 +@@ -1,7 +1,7 @@ +-# generated automatically by aclocal 1.7.9 -*- Autoconf -*- ++# generated automatically by aclocal 1.11 -*- Autoconf -*- + +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 +-# Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ++# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -11,1296 +11,699 @@ + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. + +-# autoconf 2.13 / 2.50 compatibility macro +- +-# GLIB_AC_DIVERT_BEFORE_HELP(STUFF) +-# --------------------------------- +-# Put STUFF early enough so that they are available for $ac_help expansion. +-# Handle both classic (<= v2.13) and modern autoconf +-AC_DEFUN([GLIB_AC_DIVERT_BEFORE_HELP], +-[ifdef([m4_divert_text], [m4_divert_text([NOTICE],[$1])], +- [ifdef([AC_DIVERT], [AC_DIVERT([NOTICE],[$1])], +- [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl +-$1 +-AC_DIVERT_POP()])])]) ++m4_ifndef([AC_AUTOCONF_VERSION], ++ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl ++m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],, ++[m4_warning([this file was generated for autoconf 2.64. ++You have another version of autoconf. It may work, but is not guaranteed to. ++If you have problems, you may need to regenerate the build system entirely. ++To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +-# GTK_ADD_LIB(VAR,LIBNAME) +-# --------------------------------- +-# Helper macro to add a -lBlah to a variable, avoiding repeats +-# Note that this needs to be quoted when used in an enclosing macro +-AC_DEFUN([GTK_ADD_LIB], +-[ case "$$1 " in +- *-l$2[[\ \ ]]*) ;; +- *) $1="-l$2 $$1" ;; +- esac +-]) ++# Configure paths for GLIB ++# Owen Taylor 1997-2001 + ++dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) ++dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject, ++dnl gthread, or gio is specified in MODULES, pass to pkg-config ++dnl ++AC_DEFUN([AM_PATH_GLIB_2_0], ++[dnl ++dnl Get the cflags and libraries from pkg-config ++dnl ++AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program], ++ , enable_glibtest=yes) + +-# Checks the location of the XML Catalog +-# Usage: +-# JH_PATH_XML_CATALOG([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +-# Defines XMLCATALOG and XML_CATALOG_FILE substitutions +-AC_DEFUN([JH_PATH_XML_CATALOG], +-[ +- # check for the presence of the XML catalog +- AC_ARG_WITH([xml-catalog], +- AC_HELP_STRING([--with-xml-catalog=CATALOG], +- [path to xml catalog to use]),, +- [with_xml_catalog=/etc/xml/catalog]) +- jh_found_xmlcatalog=true +- XML_CATALOG_FILE="$with_xml_catalog" +- AC_SUBST([XML_CATALOG_FILE]) +- AC_MSG_CHECKING([for XML catalog ($XML_CATALOG_FILE)]) +- if test -f "$XML_CATALOG_FILE"; then +- AC_MSG_RESULT([found]) +- else +- jh_found_xmlcatalog=false +- AC_MSG_RESULT([not found]) +- fi ++ pkg_config_args=glib-2.0 ++ for module in . $4 ++ do ++ case "$module" in ++ gmodule) ++ pkg_config_args="$pkg_config_args gmodule-2.0" ++ ;; ++ gmodule-no-export) ++ pkg_config_args="$pkg_config_args gmodule-no-export-2.0" ++ ;; ++ gobject) ++ pkg_config_args="$pkg_config_args gobject-2.0" ++ ;; ++ gthread) ++ pkg_config_args="$pkg_config_args gthread-2.0" ++ ;; ++ gio*) ++ pkg_config_args="$pkg_config_args $module-2.0" ++ ;; ++ esac ++ done + +- # check for the xmlcatalog program +- AC_PATH_PROG(XMLCATALOG, xmlcatalog, no) +- if test "x$XMLCATALOG" = xno; then +- jh_found_xmlcatalog=false +- fi ++ PKG_PROG_PKG_CONFIG([0.16]) + +- if $jh_found_xmlcatalog; then +- ifelse([$1],,[:],[$1]) +- else +- ifelse([$2],,[AC_MSG_ERROR([could not find XML catalog])],[$2]) +- fi +-]) ++ no_glib="" + +-# Checks if a particular URI appears in the XML catalog +-# Usage: +-# JH_CHECK_XML_CATALOG(URI, [FRIENDLY-NAME], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +-AC_DEFUN([JH_CHECK_XML_CATALOG], +-[ +- AC_REQUIRE([JH_PATH_XML_CATALOG],[JH_PATH_XML_CATALOG(,[:])])dnl +- AC_MSG_CHECKING([for ifelse([$2],,[$1],[$2]) in XML catalog]) +- if $jh_found_xmlcatalog && \ +- AC_RUN_LOG([$XMLCATALOG --noout "$XML_CATALOG_FILE" "$1" >&2]); then +- AC_MSG_RESULT([found]) +- ifelse([$3],,,[$3 +-])dnl +- else +- AC_MSG_RESULT([not found]) +- ifelse([$4],, +- [AC_MSG_ERROR([could not find ifelse([$2],,[$1],[$2]) in XML catalog])], +- [$4]) ++ if test "x$PKG_CONFIG" = x ; then ++ no_glib=yes ++ PKG_CONFIG=no + fi +-]) + +-# Do all the work for Automake. -*- Autoconf -*- +- +-# This macro actually does too much some checks are only needed if +-# your package does certain things. But this isn't really a big deal. +- +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++ min_glib_version=ifelse([$1], ,2.0.0,$1) ++ AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) + +-# 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, or (at your option) +-# any later version. ++ if test x$PKG_CONFIG != xno ; then ++ ## don't try to run the test against uninstalled libtool libs ++ if $PKG_CONFIG --uninstalled $pkg_config_args; then ++ echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" ++ enable_glibtest=no ++ fi + +-# 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. ++ if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then ++ : ++ else ++ no_glib=yes ++ fi ++ fi + +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. ++ if test x"$no_glib" = x ; then ++ GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` ++ GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` ++ GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` + +-# serial 10 ++ GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` ++ GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` ++ glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ++ glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ++ glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` ++ if test "x$enable_glibtest" = "xyes" ; then ++ ac_save_CFLAGS="$CFLAGS" ++ ac_save_LIBS="$LIBS" ++ CFLAGS="$CFLAGS $GLIB_CFLAGS" ++ LIBS="$GLIB_LIBS $LIBS" ++dnl ++dnl Now check if the installed GLIB is sufficiently new. (Also sanity ++dnl checks the results of pkg-config to some extent) ++dnl ++ rm -f conf.glibtest ++ AC_TRY_RUN([ ++#include <glib.h> ++#include <stdio.h> ++#include <stdlib.h> + +-AC_PREREQ([2.54]) ++int ++main () ++{ ++ int major, minor, micro; ++ char *tmp_version; ++ int ignored; + +-# Autoconf 2.50 wants to disallow AM_ names. We explicitly allow +-# the ones we care about. +-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl ++ ignored = system ("touch conf.glibtest"); + +-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +-# AM_INIT_AUTOMAKE([OPTIONS]) +-# ----------------------------------------------- +-# The call with PACKAGE and VERSION arguments is the old style +-# call (pre autoconf-2.50), which is being phased out. PACKAGE +-# and VERSION should now be passed to AC_INIT and removed from +-# the call to AM_INIT_AUTOMAKE. +-# We support both call styles for the transition. After +-# the next Automake release, Autoconf can make the AC_INIT +-# arguments mandatory, and then we can depend on a new Autoconf +-# release and drop the old call support. +-AC_DEFUN([AM_INIT_AUTOMAKE], +-[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +- AC_REQUIRE([AC_PROG_INSTALL])dnl +-# test to see if srcdir already configured +-if test "`cd $srcdir && pwd`" != "`pwd`" && +- test -f $srcdir/config.status; then +- AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) +-fi ++ /* HP/UX 9 (%@#!) writes to sscanf strings */ ++ tmp_version = g_strdup("$min_glib_version"); ++ if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { ++ printf("%s, bad version string\n", "$min_glib_version"); ++ exit(1); ++ } + +-# test whether we have cygpath +-if test -z "$CYGPATH_W"; then +- if (cygpath --version) >/dev/null 2>/dev/null; then +- CYGPATH_W='cygpath -w' ++ if ((glib_major_version != $glib_config_major_version) || ++ (glib_minor_version != $glib_config_minor_version) || ++ (glib_micro_version != $glib_config_micro_version)) ++ { ++ printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", ++ $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, ++ glib_major_version, glib_minor_version, glib_micro_version); ++ printf ("*** was found! If pkg-config was correct, then it is best\n"); ++ printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); ++ printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); ++ printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); ++ printf("*** required on your system.\n"); ++ printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); ++ printf("*** to point to the correct configuration files\n"); ++ } ++ else if ((glib_major_version != GLIB_MAJOR_VERSION) || ++ (glib_minor_version != GLIB_MINOR_VERSION) || ++ (glib_micro_version != GLIB_MICRO_VERSION)) ++ { ++ printf("*** GLIB header files (version %d.%d.%d) do not match\n", ++ GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); ++ printf("*** library (version %d.%d.%d)\n", ++ glib_major_version, glib_minor_version, glib_micro_version); ++ } + else +- CYGPATH_W=echo ++ { ++ if ((glib_major_version > major) || ++ ((glib_major_version == major) && (glib_minor_version > minor)) || ++ ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) ++ { ++ return 0; ++ } ++ else ++ { ++ printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", ++ glib_major_version, glib_minor_version, glib_micro_version); ++ printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", ++ major, minor, micro); ++ printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); ++ printf("***\n"); ++ printf("*** If you have already installed a sufficiently new version, this error\n"); ++ printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); ++ printf("*** being found. The easiest way to fix this is to remove the old version\n"); ++ printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); ++ printf("*** correct copy of pkg-config. (In this case, you will have to\n"); ++ printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); ++ printf("*** so that the correct libraries are found at run-time))\n"); ++ } ++ } ++ return 1; ++} ++],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) ++ CFLAGS="$ac_save_CFLAGS" ++ LIBS="$ac_save_LIBS" ++ fi + fi +-fi +-AC_SUBST([CYGPATH_W]) +- +-# Define the identity of the package. +-dnl Distinguish between old-style and new-style calls. +-m4_ifval([$2], +-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl +- AC_SUBST([PACKAGE], [$1])dnl +- AC_SUBST([VERSION], [$2])], +-[_AM_SET_OPTIONS([$1])dnl +- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl +- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl +- +-_AM_IF_OPTION([no-define],, +-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) +- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl +- +-# Some tools Automake needs. +-AC_REQUIRE([AM_SANITY_CHECK])dnl +-AC_REQUIRE([AC_ARG_PROGRAM])dnl +-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +-AM_MISSING_PROG(AUTOCONF, autoconf) +-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +-AM_MISSING_PROG(AUTOHEADER, autoheader) +-AM_MISSING_PROG(MAKEINFO, makeinfo) +-AM_MISSING_PROG(AMTAR, tar) +-AM_PROG_INSTALL_SH +-AM_PROG_INSTALL_STRIP +-# We need awk for the "check" target. The system "awk" is bad on +-# some platforms. +-AC_REQUIRE([AC_PROG_AWK])dnl +-AC_REQUIRE([AC_PROG_MAKE_SET])dnl +-AC_REQUIRE([AM_SET_LEADING_DOT])dnl +- +-_AM_IF_OPTION([no-dependencies],, +-[AC_PROVIDE_IFELSE([AC_PROG_CC], +- [_AM_DEPENDENCIES(CC)], +- [define([AC_PROG_CC], +- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +-AC_PROVIDE_IFELSE([AC_PROG_CXX], +- [_AM_DEPENDENCIES(CXX)], +- [define([AC_PROG_CXX], +- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +-]) +-]) +- +- +-# When config.status generates a header, we must update the stamp-h file. +-# This file resides in the same directory as the config header +-# that is generated. The stamp files are numbered to have different names. +- +-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +-# loop where config.status creates the headers, so we can generate +-# our stamp files there. +-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +-[# Compute $1's index in $config_headers. +-_am_stamp_count=1 +-for _am_header in $config_headers :; do +- case $_am_header in +- $1 | $1:* ) +- break ;; +- * ) +- _am_stamp_count=`expr $_am_stamp_count + 1` ;; +- esac +-done +-echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) +- +-# Copyright 2002 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +- +-# AM_AUTOMAKE_VERSION(VERSION) +-# ---------------------------- +-# Automake X.Y traces this macro to ensure aclocal.m4 has been +-# generated from the m4 files accompanying Automake X.Y. +-AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"]) +- +-# AM_SET_CURRENT_AUTOMAKE_VERSION +-# ------------------------------- +-# Call AM_AUTOMAKE_VERSION so it can be traced. +-# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +- [AM_AUTOMAKE_VERSION([1.7.9])]) +- +-# Helper functions for option handling. -*- Autoconf -*- +- +-# Copyright 2001, 2002 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 2 +- +-# _AM_MANGLE_OPTION(NAME) +-# ----------------------- +-AC_DEFUN([_AM_MANGLE_OPTION], +-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +- +-# _AM_SET_OPTION(NAME) +-# ------------------------------ +-# Set option NAME. Presently that only means defining a flag for this option. +-AC_DEFUN([_AM_SET_OPTION], +-[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) +- +-# _AM_SET_OPTIONS(OPTIONS) +-# ---------------------------------- +-# OPTIONS is a space-separated list of Automake options. +-AC_DEFUN([_AM_SET_OPTIONS], +-[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) +- +-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +-# ------------------------------------------- +-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +-AC_DEFUN([_AM_IF_OPTION], +-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) ++ if test "x$no_glib" = x ; then ++ AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)) ++ ifelse([$2], , :, [$2]) ++ else ++ AC_MSG_RESULT(no) ++ if test "$PKG_CONFIG" = "no" ; then ++ echo "*** A new enough version of pkg-config was not found." ++ echo "*** See http://www.freedesktop.org/software/pkgconfig/" ++ else ++ if test -f conf.glibtest ; then ++ : ++ else ++ echo "*** Could not run GLIB test program, checking why..." ++ ac_save_CFLAGS="$CFLAGS" ++ ac_save_LIBS="$LIBS" ++ CFLAGS="$CFLAGS $GLIB_CFLAGS" ++ LIBS="$LIBS $GLIB_LIBS" ++ AC_TRY_LINK([ ++#include <glib.h> ++#include <stdio.h> ++], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ], ++ [ echo "*** The test program compiled, but did not run. This usually means" ++ echo "*** that the run-time linker is not finding GLIB or finding the wrong" ++ echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" ++ echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" ++ echo "*** to the installed location Also, make sure you have run ldconfig if that" ++ echo "*** is required on your system" ++ echo "***" ++ echo "*** If you have an old version installed, it is best to remove it, although" ++ echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], ++ [ echo "*** The test program failed to compile or link. See the file config.log for the" ++ echo "*** exact error that occured. This usually means GLIB is incorrectly installed."]) ++ CFLAGS="$ac_save_CFLAGS" ++ LIBS="$ac_save_LIBS" ++ fi ++ fi ++ GLIB_CFLAGS="" ++ GLIB_LIBS="" ++ GLIB_GENMARSHAL="" ++ GOBJECT_QUERY="" ++ GLIB_MKENUMS="" ++ ifelse([$3], , :, [$3]) ++ fi ++ AC_SUBST(GLIB_CFLAGS) ++ AC_SUBST(GLIB_LIBS) ++ AC_SUBST(GLIB_GENMARSHAL) ++ AC_SUBST(GOBJECT_QUERY) ++ AC_SUBST(GLIB_MKENUMS) ++ rm -f conf.glibtest ++]) + ++# Copyright (C) 1995-2002 Free Software Foundation, Inc. ++# Copyright (C) 2001-2003,2004 Red Hat, Inc. + # +-# Check to make sure that the build environment is sane. ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. + # +- +-# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 3 +- +-# AM_SANITY_CHECK +-# --------------- +-AC_DEFUN([AM_SANITY_CHECK], +-[AC_MSG_CHECKING([whether build environment is sane]) +-# Just in case +-sleep 1 +-echo timestamp > conftest.file +-# Do `set' in a subshell so we don't clobber the current shell's +-# arguments. Must try -L first in case configure is actually a +-# symlink; some systems play weird games with the mod time of symlinks +-# (eg FreeBSD returns the mod time of the symlink's containing +-# directory). +-if ( +- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` +- if test "$[*]" = "X"; then +- # -L didn't work. +- set X `ls -t $srcdir/configure conftest.file` +- fi +- rm -f conftest.file +- if test "$[*]" != "X $srcdir/configure conftest.file" \ +- && test "$[*]" != "X conftest.file $srcdir/configure"; then +- +- # If neither matched, then we have a broken ls. This can happen +- # if, for instance, CONFIG_SHELL is bash and it inherits a +- # broken ls alias from the environment. This has actually +- # happened. Such a system could not be considered "sane". +- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +-alias in your environment]) +- fi +- +- test "$[2]" = conftest.file +- ) +-then +- # Ok. +- : +-else +- AC_MSG_ERROR([newly created file is older than distributed files! +-Check your system clock]) +-fi +-AC_MSG_RESULT(yes)]) +- +-# -*- Autoconf -*- +- +- +-# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 3 +- +-# AM_MISSING_PROG(NAME, PROGRAM) +-# ------------------------------ +-AC_DEFUN([AM_MISSING_PROG], +-[AC_REQUIRE([AM_MISSING_HAS_RUN]) +-$1=${$1-"${am_missing_run}$2"} +-AC_SUBST($1)]) +- +- +-# AM_MISSING_HAS_RUN +-# ------------------ +-# Define MISSING if not defined so far and test if it supports --run. +-# If it does, set am_missing_run to use it, otherwise, to nothing. +-AC_DEFUN([AM_MISSING_HAS_RUN], +-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +-# Use eval to expand $SHELL +-if eval "$MISSING --run true"; then +- am_missing_run="$MISSING --run " +-else +- am_missing_run= +- AC_MSG_WARN([`missing' script is too old or missing]) +-fi +-]) +- +-# AM_AUX_DIR_EXPAND +- +-# Copyright 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +-# `$srcdir', `$srcdir/..', or `$srcdir/../..'. ++# This file can be copied and used freely without restrictions. It can ++# be used in projects which are not available under the GNU Public License ++# but which still want to provide support for the GNU gettext functionality. + # +-# Of course, Automake must honor this variable whenever it calls a +-# tool from the auxiliary directory. The problem is that $srcdir (and +-# therefore $ac_aux_dir as well) can be either absolute or relative, +-# depending on how configure is run. This is pretty annoying, since +-# it makes $ac_aux_dir quite unusable in subdirectories: in the top +-# source directory, any form will work fine, but in subdirectories a +-# relative path needs to be adjusted first. ++# Macro to add for using GNU gettext. ++# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 + # +-# $ac_aux_dir/missing +-# fails when called from a subdirectory if $ac_aux_dir is relative +-# $top_srcdir/$ac_aux_dir/missing +-# fails if $ac_aux_dir is absolute, +-# fails when called from a subdirectory in a VPATH build with +-# a relative $ac_aux_dir ++# Modified to never use included libintl. ++# Owen Taylor <otaylor@redhat.com>, 12/15/1998 + # +-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +-# are both prefixed by $srcdir. In an in-source build this is usually +-# harmless because $srcdir is `.', but things will broke when you +-# start a VPATH build or use an absolute $srcdir. ++# Major rework to remove unused code ++# Owen Taylor <otaylor@redhat.com>, 12/11/2002 + # +-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +-# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +-# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +-# and then we would define $MISSING as +-# MISSING="\${SHELL} $am_aux_dir/missing" +-# This will work as long as MISSING is not called from configure, because +-# unfortunately $(top_srcdir) has no meaning in configure. +-# However there are other variables, like CC, which are often used in +-# configure, and could therefore not use this "fixed" $ac_aux_dir. ++# Added better handling of ALL_LINGUAS from GNU gettext version ++# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 + # +-# Another solution, used here, is to always expand $ac_aux_dir to an +-# absolute PATH. The drawback is that using absolute paths prevent a +-# configured tree to be moved without reconfiguration. +- +-# Rely on autoconf to set up CDPATH properly. +-AC_PREREQ([2.50]) +- +-AC_DEFUN([AM_AUX_DIR_EXPAND], [ +-# expand $ac_aux_dir to an absolute path +-am_aux_dir=`cd $ac_aux_dir && pwd` +-]) +- +-# AM_PROG_INSTALL_SH +-# ------------------ +-# Define $install_sh. +- +-# Copyright 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-AC_DEFUN([AM_PROG_INSTALL_SH], +-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-install_sh=${install_sh-"$am_aux_dir/install-sh"} +-AC_SUBST(install_sh)]) +- +-# AM_PROG_INSTALL_STRIP +- +-# Copyright 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# One issue with vendor `install' (even GNU) is that you can't +-# specify the program used to strip binaries. This is especially +-# annoying in cross-compiling environments, where the build's strip +-# is unlikely to handle the host's binaries. +-# Fortunately install-sh will honor a STRIPPROG variable, so we +-# always use install-sh in `make install-strip', and initialize +-# STRIPPROG with the value of the STRIP variable (set by the user). +-AC_DEFUN([AM_PROG_INSTALL_STRIP], +-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +-# Installed binaries are usually stripped using `strip' when the user +-# run `make install-strip'. However `strip' might not be the right +-# tool to use in cross-compilation environments, therefore Automake +-# will honor the `STRIP' environment variable to overrule this program. +-dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +-if test "$cross_compiling" != no; then +- AC_CHECK_TOOL([STRIP], [strip], :) +-fi +-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" +-AC_SUBST([INSTALL_STRIP_PROGRAM])]) +- +-# -*- Autoconf -*- +-# Copyright (C) 2003 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 1 +- +-# Check whether the underlying file-system supports filenames +-# with a leading dot. For instance MS-DOS doesn't. +-AC_DEFUN([AM_SET_LEADING_DOT], +-[rm -rf .tst 2>/dev/null +-mkdir .tst 2>/dev/null +-if test -d .tst; then +- am__leading_dot=. +-else +- am__leading_dot=_ +-fi +-rmdir .tst 2>/dev/null +-AC_SUBST([am__leading_dot])]) +- +-# serial 5 -*- Autoconf -*- +- +-# Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +- +-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +-# written in clear, in which case automake, when reading aclocal.m4, +-# will think it sees a *use*, and therefore will trigger all it's +-# C support machinery. Also note that it means that autoscan, seeing +-# CC etc. in the Makefile, will ask for an AC_PROG_CC use... +- +- +- +-# _AM_DEPENDENCIES(NAME) +-# ---------------------- +-# See how the compiler implements dependency checking. +-# NAME is "CC", "CXX", "GCJ", or "OBJC". +-# We try a few techniques and use that to set a single cache variable. +-# +-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +-# dependency, and given that the user is not expected to run this macro, +-# just rely on AC_PROG_CC. +-AC_DEFUN([_AM_DEPENDENCIES], +-[AC_REQUIRE([AM_SET_DEPDIR])dnl +-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +-AC_REQUIRE([AM_MAKE_INCLUDE])dnl +-AC_REQUIRE([AM_DEP_TRACK])dnl +- +-ifelse([$1], CC, [depcc="$CC" am_compiler_list=], +- [$1], CXX, [depcc="$CXX" am_compiler_list=], +- [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], +- [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], +- [depcc="$$1" am_compiler_list=]) +- +-AC_CACHE_CHECK([dependency style of $depcc], +- [am_cv_$1_dependencies_compiler_type], +-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +- # We make a subdir and do the tests there. Otherwise we can end up +- # making bogus files that we don't know about and never remove. For +- # instance it was reported that on HP-UX the gcc test will end up +- # making a dummy file named `D' -- because `-MD' means `put the output +- # in D'. +- mkdir conftest.dir +- # Copy depcomp to subdir because otherwise we won't find it if we're +- # using a relative directory. +- cp "$am_depcomp" conftest.dir +- cd conftest.dir +- # We will build objects and dependencies in a subdirectory because +- # it helps to detect inapplicable dependency modes. For instance +- # both Tru64's cc and ICC support -MD to output dependencies as a +- # side effect of compilation, but ICC will put the dependencies in +- # the current directory while Tru64 will put them in the object +- # directory. +- mkdir sub +- +- am_cv_$1_dependencies_compiler_type=none +- if test "$am_compiler_list" = ""; then +- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` +- fi +- for depmode in $am_compiler_list; do +- # Setup a source with many dependencies, because some compilers +- # like to wrap large dependency lists on column 80 (with \), and +- # we should not choose a depcomp mode which is confused by this. +- # +- # We need to recreate these files for each test, as the compiler may +- # overwrite some of them when testing with obscure command lines. +- # This happens at least with the AIX C compiler. +- : > sub/conftest.c +- for i in 1 2 3 4 5 6; do +- echo '#include "conftst'$i'.h"' >> sub/conftest.c +- : > sub/conftst$i.h +- done +- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf +- +- case $depmode in +- nosideeffect) +- # after this tag, mechanisms are not by side-effect, so they'll +- # only be used when explicitly requested +- if test "x$enable_dependency_tracking" = xyes; then +- continue +- else +- break +- fi +- ;; +- none) break ;; +- esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. +- if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ +- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ +- >/dev/null 2>conftest.err && +- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && +- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then +- # icc doesn't choke on unknown options, it will just issue warnings +- # (even with -Werror). So we grep stderr for any message +- # that says an option was ignored. +- if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else +- am_cv_$1_dependencies_compiler_type=$depmode +- break +- fi +- fi +- done +- +- cd .. +- rm -rf conftest.dir +-else +- am_cv_$1_dependencies_compiler_type=none +-fi +-]) +-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +-AM_CONDITIONAL([am__fastdep$1], [ +- test "x$enable_dependency_tracking" != xno \ +- && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +-]) +- +- +-# AM_SET_DEPDIR +-# ------------- +-# Choose a directory name for dependency files. +-# This macro is AC_REQUIREd in _AM_DEPENDENCIES +-AC_DEFUN([AM_SET_DEPDIR], +-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +-]) +- +- +-# AM_DEP_TRACK +-# ------------ +-AC_DEFUN([AM_DEP_TRACK], +-[AC_ARG_ENABLE(dependency-tracking, +-[ --disable-dependency-tracking Speeds up one-time builds +- --enable-dependency-tracking Do not reject slow dependency extractors]) +-if test "x$enable_dependency_tracking" != xno; then +- am_depcomp="$ac_aux_dir/depcomp" +- AMDEPBACKSLASH='\' +-fi +-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +-AC_SUBST([AMDEPBACKSLASH]) +-]) +- +-# Generate code to set up dependency tracking. -*- Autoconf -*- +- +-# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-#serial 2 +- +-# _AM_OUTPUT_DEPENDENCY_COMMANDS +-# ------------------------------ +-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +-[for mf in $CONFIG_FILES; do +- # Strip MF so we end up with the name of the file. +- mf=`echo "$mf" | sed -e 's/:.*$//'` +- # Check whether this is an Automake generated Makefile or not. +- # We used to match only the files named `Makefile.in', but +- # some people rename them; so instead we look at the file content. +- # Grep'ing the first line is not enough: some people post-process +- # each Makefile.in and add a new line on top of each file to say so. +- # So let's grep whole file. +- if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then +- dirpart=`AS_DIRNAME("$mf")` +- else +- continue +- fi +- grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue +- # Extract the definition of DEP_FILES from the Makefile without +- # running `make'. +- DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` +- test -z "$DEPDIR" && continue +- # When using ansi2knr, U may be empty or an underscore; expand it +- U=`sed -n -e '/^U = / s///p' < "$mf"` +- test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" +- # We invoke sed twice because it is the simplest approach to +- # changing $(DEPDIR) to its actual value in the expansion. +- for file in `sed -n -e ' +- /^DEP_FILES = .*\\\\$/ { +- s/^DEP_FILES = // +- :loop +- s/\\\\$// +- p +- n +- /\\\\$/ b loop +- p +- } +- /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ +- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do +- # Make sure the directory exists. +- test -f "$dirpart/$file" && continue +- fdir=`AS_DIRNAME(["$file"])` +- AS_MKDIR_P([$dirpart/$fdir]) +- # echo "creating $dirpart/$file" +- echo '# dummy' > "$dirpart/$file" +- done +-done +-])# _AM_OUTPUT_DEPENDENCY_COMMANDS +- +- +-# AM_OUTPUT_DEPENDENCY_COMMANDS +-# ----------------------------- +-# This macro should only be invoked once -- use via AC_REQUIRE. +-# +-# This code is only required when automatic dependency tracking +-# is enabled. FIXME. This creates each `.P' file that we will +-# need in order to bootstrap the dependency handling code. +-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +-[AC_CONFIG_COMMANDS([depfiles], +- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], +- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +-]) +- +-# Check to see how 'make' treats includes. -*- Autoconf -*- +- +-# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 2 +- +-# AM_MAKE_INCLUDE() +-# ----------------- +-# Check to see how make treats includes. +-AC_DEFUN([AM_MAKE_INCLUDE], +-[am_make=${MAKE-make} +-cat > confinc << 'END' +-am__doit: +- @echo done +-.PHONY: am__doit +-END +-# If we don't find an include directive, just comment out the code. +-AC_MSG_CHECKING([for style of include used by $am_make]) +-am__include="#" +-am__quote= +-_am_result=none +-# First try GNU make style include. +-echo "include confinc" > confmf +-# We grep out `Entering directory' and `Leaving directory' +-# messages which can occur if `w' ends up in MAKEFLAGS. +-# In particular we don't look at `^make:' because GNU make might +-# be invoked under some other name (usually "gmake"), in which +-# case it prints its new name instead of `make'. +-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then +- am__include=include +- am__quote= +- _am_result=GNU +-fi +-# Now try BSD make style include. +-if test "$am__include" = "#"; then +- echo '.include "confinc"' > confmf +- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- fi +-fi +-AC_SUBST([am__include]) +-AC_SUBST([am__quote]) +-AC_MSG_RESULT([$_am_result]) +-rm -f confinc confmf +-]) +- +-# AM_CONDITIONAL -*- Autoconf -*- +- +-# Copyright 1997, 2000, 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-# serial 5 +- +-AC_PREREQ(2.52) +- +-# AM_CONDITIONAL(NAME, SHELL-CONDITION) +-# ------------------------------------- +-# Define a conditional. +-AC_DEFUN([AM_CONDITIONAL], +-[ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], +- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +-AC_SUBST([$1_TRUE]) +-AC_SUBST([$1_FALSE]) +-if $2; then +- $1_TRUE= +- $1_FALSE='#' +-else +- $1_TRUE='#' +- $1_FALSE= +-fi +-AC_CONFIG_COMMANDS_PRE( +-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then +- AC_MSG_ERROR([conditional "$1" was never defined. +-Usually this means the macro was only invoked conditionally.]) +-fi])]) +- +-# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*- +- +-# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc. +- +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. +- +-AC_PREREQ([2.52]) +- +-# serial 6 +- +-# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. +-AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) +- +-# Helper functions for option handling. -*- Autoconf -*- +-# +-# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +-# Written by Gary V. Vaughan, 2004 ++# Modified to require ngettext ++# Matthias Clasen <mclasen@redhat.com> 08/06/2004 + # +-# This file is free software; the Free Software Foundation gives +-# unlimited permission to copy and/or distribute it, with or without +-# modifications, as long as this notice is preserved. +- +-# serial 6 ltoptions.m4 +- +-# This is to help aclocal find these macros, as it can't see m4_define. +-AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) +- +- +-# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +-# ------------------------------------------ +-m4_define([_LT_MANGLE_OPTION], +-[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) +- +- +-# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +-# --------------------------------------- +-# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +-# matching handler defined, dispatch to it. Other OPTION-NAMEs are +-# saved as a flag. +-m4_define([_LT_SET_OPTION], +-[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +-m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), +- _LT_MANGLE_DEFUN([$1], [$2]), +- [m4_warning([Unknown $1 option `$2'])])[]dnl +-]) +- +- +-# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +-# ------------------------------------------------------------ +-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +-m4_define([_LT_IF_OPTION], +-[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) +- +- +-# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +-# ------------------------------------------------------- +-# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +-# are set. +-m4_define([_LT_UNLESS_OPTIONS], +-[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), +- [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), +- [m4_define([$0_found])])])[]dnl +-m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +-])[]dnl +-]) +- +- +-# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +-# ---------------------------------------- +-# OPTION-LIST is a space-separated list of Libtool options associated +-# with MACRO-NAME. If any OPTION has a matching handler declared with +-# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +-# the unknown option and exit. +-m4_defun([_LT_SET_OPTIONS], +-[# Set options +-m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), +- [_LT_SET_OPTION([$1], _LT_Option)]) +- +-m4_if([$1],[LT_INIT],[ +- dnl +- dnl Simply set some default values (i.e off) if boolean options were not +- dnl specified: +- _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no +- ]) +- _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no +- ]) +- dnl +- dnl If no reference was made to various pairs of opposing options, then +- dnl we run the default mode handler for the pair. For example, if neither +- dnl `shared' nor `disable-shared' was passed, we enable building of shared +- dnl archives by default: +- _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) +- _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) +- _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) +- _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], +- [_LT_ENABLE_FAST_INSTALL]) +- ]) +-])# _LT_SET_OPTIONS +- +- +- +-# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +-# ----------------------------------------- +-m4_define([_LT_MANGLE_DEFUN], +-[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) +- +- +-# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +-# ----------------------------------------------- +-m4_define([LT_OPTION_DEFINE], +-[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +-])# LT_OPTION_DEFINE +- +- +-# dlopen +-# ------ +-LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +-]) +- +-AU_DEFUN([AC_LIBTOOL_DLOPEN], +-[_LT_SET_OPTION([LT_INIT], [dlopen]) +-AC_DIAGNOSE([obsolete], +-[$0: Remove this warning and the call to _LT_SET_OPTION when you +-put the `dlopen' option into LT_INIT's first parameter.]) +-]) +- +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) +- +- +-# win32-dll +-# --------- +-# Declare package support for building win32 dll's. +-LT_OPTION_DEFINE([LT_INIT], [win32-dll], +-[enable_win32_dll=yes +- +-case $host in +-*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) +- AC_CHECK_TOOL(AS, as, false) +- AC_CHECK_TOOL(DLLTOOL, dlltool, false) +- AC_CHECK_TOOL(OBJDUMP, objdump, false) +- ;; +-esac +- +-test -z "$AS" && AS=as +-_LT_DECL([], [AS], [0], [Assembler program])dnl ++# We need this here as well, since someone might use autoconf-2.5x ++# to configure GLib then an older version to configure a package ++# using AM_GLIB_GNU_GETTEXT ++AC_PREREQ(2.53) + +-test -z "$DLLTOOL" && DLLTOOL=dlltool +-_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl ++dnl ++dnl We go to great lengths to make sure that aclocal won't ++dnl try to pull in the installed version of these macros ++dnl when running aclocal in the glib directory. ++dnl ++m4_copy([AC_DEFUN],[glib_DEFUN]) ++m4_copy([AC_REQUIRE],[glib_REQUIRE]) ++dnl ++dnl At the end, if we're not within glib, we'll define the public ++dnl definitions in terms of our private definitions. ++dnl + +-test -z "$OBJDUMP" && OBJDUMP=objdump +-_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl +-])# win32-dll ++# GLIB_LC_MESSAGES ++#-------------------- ++glib_DEFUN([GLIB_LC_MESSAGES], ++ [AC_CHECK_HEADERS([locale.h]) ++ if test $ac_cv_header_locale_h = yes; then ++ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, ++ [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], ++ am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) ++ if test $am_cv_val_LC_MESSAGES = yes; then ++ AC_DEFINE(HAVE_LC_MESSAGES, 1, ++ [Define if your <locale.h> file defines LC_MESSAGES.]) ++ fi ++ fi]) + +-AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +-[AC_REQUIRE([AC_CANONICAL_HOST])dnl +-_LT_SET_OPTION([LT_INIT], [win32-dll]) +-AC_DIAGNOSE([obsolete], +-[$0: Remove this warning and the call to _LT_SET_OPTION when you +-put the `win32-dll' option into LT_INIT's first parameter.]) ++# GLIB_PATH_PROG_WITH_TEST ++#---------------------------- ++dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, ++dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) ++glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], ++[# Extract the first word of "$2", so it can be a program name with args. ++set dummy $2; ac_word=[$]2 ++AC_MSG_CHECKING([for $ac_word]) ++AC_CACHE_VAL(ac_cv_path_$1, ++[case "[$]$1" in ++ /*) ++ ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ++ ;; ++ *) ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" ++ for ac_dir in ifelse([$5], , $PATH, [$5]); do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ if [$3]; then ++ ac_cv_path_$1="$ac_dir/$ac_word" ++ break ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++dnl If no 4th arg is given, leave the cache variable unset, ++dnl so AC_PATH_PROGS will keep looking. ++ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ++])dnl ++ ;; ++esac])dnl ++$1="$ac_cv_path_$1" ++if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then ++ AC_MSG_RESULT([$]$1) ++else ++ AC_MSG_RESULT(no) ++fi ++AC_SUBST($1)dnl + ]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) +- +- +-# _LT_ENABLE_SHARED([DEFAULT]) +-# ---------------------------- +-# implement the --enable-shared flag, and supports the `shared' and +-# `disable-shared' LT_INIT options. +-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +-m4_define([_LT_ENABLE_SHARED], +-[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +-AC_ARG_ENABLE([shared], +- [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], +- [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], +- [p=${PACKAGE-default} +- case $enableval in +- yes) enable_shared=yes ;; +- no) enable_shared=no ;; +- *) +- enable_shared=no +- # Look at the argument we got. We use all the common list separators. +- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," +- for pkg in $enableval; do +- IFS="$lt_save_ifs" +- if test "X$pkg" = "X$p"; then +- enable_shared=yes +- fi +- done +- IFS="$lt_save_ifs" +- ;; +- esac], +- [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) ++# GLIB_WITH_NLS ++#----------------- ++glib_DEFUN([GLIB_WITH_NLS], ++ dnl NLS is obligatory ++ [USE_NLS=yes ++ AC_SUBST(USE_NLS) + +- _LT_DECL([build_libtool_libs], [enable_shared], [0], +- [Whether or not to build shared libraries]) +-])# _LT_ENABLE_SHARED ++ gt_cv_have_gettext=no + +-LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +-LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) ++ CATOBJEXT=NONE ++ XGETTEXT=: ++ INTLLIBS= + +-# Old names: +-AC_DEFUN([AC_ENABLE_SHARED], +-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +-]) ++ AC_CHECK_HEADER(libintl.h, ++ [gt_cv_func_dgettext_libintl="no" ++ libintl_extra_libs="" + +-AC_DEFUN([AC_DISABLE_SHARED], +-[_LT_SET_OPTION([LT_INIT], [disable-shared]) +-]) ++ # ++ # First check in libc ++ # ++ AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, ++ [AC_TRY_LINK([ ++#include <libintl.h> ++], ++ [return !ngettext ("","", 1)], ++ gt_cv_func_ngettext_libc=yes, ++ gt_cv_func_ngettext_libc=no) ++ ]) ++ ++ if test "$gt_cv_func_ngettext_libc" = "yes" ; then ++ AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, ++ [AC_TRY_LINK([ ++#include <libintl.h> ++], ++ [return !dgettext ("","")], ++ gt_cv_func_dgettext_libc=yes, ++ gt_cv_func_dgettext_libc=no) ++ ]) ++ fi ++ ++ if test "$gt_cv_func_ngettext_libc" = "yes" ; then ++ AC_CHECK_FUNCS(bind_textdomain_codeset) ++ fi + +-AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +-AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ++ # ++ # If we don't have everything we want, check in libintl ++ # ++ if test "$gt_cv_func_dgettext_libc" != "yes" \ ++ || test "$gt_cv_func_ngettext_libc" != "yes" \ ++ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then ++ ++ AC_CHECK_LIB(intl, bindtextdomain, ++ [AC_CHECK_LIB(intl, ngettext, ++ [AC_CHECK_LIB(intl, dgettext, ++ gt_cv_func_dgettext_libintl=yes)])]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AM_ENABLE_SHARED], []) +-dnl AC_DEFUN([AM_DISABLE_SHARED], []) ++ if test "$gt_cv_func_dgettext_libintl" != "yes" ; then ++ AC_MSG_CHECKING([if -liconv is needed to use gettext]) ++ AC_MSG_RESULT([]) ++ AC_CHECK_LIB(intl, ngettext, ++ [AC_CHECK_LIB(intl, dcgettext, ++ [gt_cv_func_dgettext_libintl=yes ++ libintl_extra_libs=-liconv], ++ :,-liconv)], ++ :,-liconv) ++ fi + ++ # ++ # If we found libintl, then check in it for bind_textdomain_codeset(); ++ # we'll prefer libc if neither have bind_textdomain_codeset(), ++ # and both have dgettext and ngettext ++ # ++ if test "$gt_cv_func_dgettext_libintl" = "yes" ; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS -lintl $libintl_extra_libs" ++ unset ac_cv_func_bind_textdomain_codeset ++ AC_CHECK_FUNCS(bind_textdomain_codeset) ++ LIBS="$glib_save_LIBS" + ++ if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then ++ gt_cv_func_dgettext_libc=no ++ else ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ && test "$gt_cv_func_ngettext_libc" = "yes"; then ++ gt_cv_func_dgettext_libintl=no ++ fi ++ fi ++ fi ++ fi + +-# _LT_ENABLE_STATIC([DEFAULT]) +-# ---------------------------- +-# implement the --enable-static flag, and support the `static' and +-# `disable-static' LT_INIT options. +-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +-m4_define([_LT_ENABLE_STATIC], +-[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +-AC_ARG_ENABLE([static], +- [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], +- [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], +- [p=${PACKAGE-default} +- case $enableval in +- yes) enable_static=yes ;; +- no) enable_static=no ;; +- *) +- enable_static=no +- # Look at the argument we got. We use all the common list separators. +- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," +- for pkg in $enableval; do +- IFS="$lt_save_ifs" +- if test "X$pkg" = "X$p"; then +- enable_static=yes ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ || test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ gt_cv_have_gettext=yes ++ fi ++ ++ if test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ INTLLIBS="-lintl $libintl_extra_libs" ++ fi ++ ++ if test "$gt_cv_have_gettext" = "yes"; then ++ AC_DEFINE(HAVE_GETTEXT,1, ++ [Define if the GNU gettext() function is already present or preinstalled.]) ++ GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, ++ [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl ++ if test "$MSGFMT" != "no"; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS $INTLLIBS" ++ AC_CHECK_FUNCS(dcgettext) ++ MSGFMT_OPTS= ++ AC_MSG_CHECKING([if msgfmt accepts -c]) ++ GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ ++msgid "" ++msgstr "" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Project-Id-Version: test 1.0\n" ++"PO-Revision-Date: 2007-02-15 12:01+0100\n" ++"Last-Translator: test <foo@bar.xx>\n" ++"Language-Team: C <LL@li.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Transfer-Encoding: 8bit\n" ++], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) ++ AC_SUBST(MSGFMT_OPTS) ++ AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) ++ GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, ++ [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) ++ AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; ++ return _nl_msg_cat_cntr], ++ [CATOBJEXT=.gmo ++ DATADIRNAME=share], ++ [case $host in ++ *-*-solaris*) ++ dnl On Solaris, if bind_textdomain_codeset is in libc, ++ dnl GNU format message catalog is always supported, ++ dnl since both are added to the libc all together. ++ dnl Hence, we'd like to go with DATADIRNAME=share and ++ dnl and CATOBJEXT=.gmo in this case. ++ AC_CHECK_FUNC(bind_textdomain_codeset, ++ [CATOBJEXT=.gmo ++ DATADIRNAME=share], ++ [CATOBJEXT=.mo ++ DATADIRNAME=lib]) ++ ;; ++ *) ++ CATOBJEXT=.mo ++ DATADIRNAME=lib ++ ;; ++ esac]) ++ LIBS="$glib_save_LIBS" ++ INSTOBJEXT=.mo ++ else ++ gt_cv_have_gettext=no + fi +- done +- IFS="$lt_save_ifs" +- ;; +- esac], +- [enable_static=]_LT_ENABLE_STATIC_DEFAULT) +- +- _LT_DECL([build_old_libs], [enable_static], [0], +- [Whether or not to build static libraries]) +-])# _LT_ENABLE_STATIC ++ fi ++ ]) + +-LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +-LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) ++ if test "$gt_cv_have_gettext" = "yes" ; then ++ AC_DEFINE(ENABLE_NLS, 1, ++ [always defined to indicate that i18n is enabled]) ++ fi + +-# Old names: +-AC_DEFUN([AC_ENABLE_STATIC], +-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +-]) ++ dnl Test whether we really found GNU xgettext. ++ if test "$XGETTEXT" != ":"; then ++ dnl If it is not GNU xgettext we define it as : so that the ++ dnl Makefiles still can work. ++ if $XGETTEXT --omit-header /dev/null 2> /dev/null; then ++ : ; ++ else ++ AC_MSG_RESULT( ++ [found xgettext program is not GNU xgettext; ignore it]) ++ XGETTEXT=":" ++ fi ++ fi + +-AC_DEFUN([AC_DISABLE_STATIC], +-[_LT_SET_OPTION([LT_INIT], [disable-static]) +-]) ++ # We need to process the po/ directory. ++ POSUB=po + +-AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +-AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ++ AC_OUTPUT_COMMANDS( ++ [case "$CONFIG_FILES" in *po/Makefile.in*) ++ sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile ++ esac]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AM_ENABLE_STATIC], []) +-dnl AC_DEFUN([AM_DISABLE_STATIC], []) ++ dnl These rules are solely for the distribution goal. While doing this ++ dnl we only have to keep exactly one list of the available catalogs ++ dnl in configure.in. ++ for lang in $ALL_LINGUAS; do ++ GMOFILES="$GMOFILES $lang.gmo" ++ POFILES="$POFILES $lang.po" ++ done + ++ dnl Make all variables we use known to autoconf. ++ AC_SUBST(CATALOGS) ++ AC_SUBST(CATOBJEXT) ++ AC_SUBST(DATADIRNAME) ++ AC_SUBST(GMOFILES) ++ AC_SUBST(INSTOBJEXT) ++ AC_SUBST(INTLLIBS) ++ AC_SUBST(PO_IN_DATADIR_TRUE) ++ AC_SUBST(PO_IN_DATADIR_FALSE) ++ AC_SUBST(POFILES) ++ AC_SUBST(POSUB) ++ ]) + ++# AM_GLIB_GNU_GETTEXT ++# ------------------- ++# Do checks necessary for use of gettext. If a suitable implementation ++# of gettext is found in either in libintl or in the C library, ++# it will set INTLLIBS to the libraries needed for use of gettext ++# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable ++# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() ++# on various variables needed by the Makefile.in.in installed by ++# glib-gettextize. ++dnl ++glib_DEFUN([GLIB_GNU_GETTEXT], ++ [AC_REQUIRE([AC_PROG_CC])dnl ++ AC_REQUIRE([AC_HEADER_STDC])dnl ++ ++ GLIB_LC_MESSAGES ++ GLIB_WITH_NLS + +-# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +-# ---------------------------------- +-# implement the --enable-fast-install flag, and support the `fast-install' +-# and `disable-fast-install' LT_INIT options. +-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +-m4_define([_LT_ENABLE_FAST_INSTALL], +-[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +-AC_ARG_ENABLE([fast-install], +- [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], +- [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], +- [p=${PACKAGE-default} +- case $enableval in +- yes) enable_fast_install=yes ;; +- no) enable_fast_install=no ;; +- *) +- enable_fast_install=no +- # Look at the argument we got. We use all the common list separators. +- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," +- for pkg in $enableval; do +- IFS="$lt_save_ifs" +- if test "X$pkg" = "X$p"; then +- enable_fast_install=yes +- fi +- done +- IFS="$lt_save_ifs" +- ;; +- esac], +- [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) ++ if test "$gt_cv_have_gettext" = "yes"; then ++ if test "x$ALL_LINGUAS" = "x"; then ++ LINGUAS= ++ else ++ AC_MSG_CHECKING(for catalogs to be installed) ++ NEW_LINGUAS= ++ for presentlang in $ALL_LINGUAS; do ++ useit=no ++ if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then ++ desiredlanguages="$LINGUAS" ++ else ++ desiredlanguages="$ALL_LINGUAS" ++ fi ++ for desiredlang in $desiredlanguages; do ++ # Use the presentlang catalog if desiredlang is ++ # a. equal to presentlang, or ++ # b. a variant of presentlang (because in this case, ++ # presentlang can be used as a fallback for messages ++ # which are not translated in the desiredlang catalog). ++ case "$desiredlang" in ++ "$presentlang"*) useit=yes;; ++ esac ++ done ++ if test $useit = yes; then ++ NEW_LINGUAS="$NEW_LINGUAS $presentlang" ++ fi ++ done ++ LINGUAS=$NEW_LINGUAS ++ AC_MSG_RESULT($LINGUAS) ++ fi + +-_LT_DECL([fast_install], [enable_fast_install], [0], +- [Whether or not to optimize for fast installation])dnl +-])# _LT_ENABLE_FAST_INSTALL ++ dnl Construct list of names of catalog files to be constructed. ++ if test -n "$LINGUAS"; then ++ for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done ++ fi ++ fi + +-LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +-LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) ++ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly ++ dnl find the mkinstalldirs script in another subdir but ($top_srcdir). ++ dnl Try to locate is. ++ MKINSTALLDIRS= ++ if test -n "$ac_aux_dir"; then ++ MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ++ fi ++ if test -z "$MKINSTALLDIRS"; then ++ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" ++ fi ++ AC_SUBST(MKINSTALLDIRS) + +-# Old names: +-AU_DEFUN([AC_ENABLE_FAST_INSTALL], +-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +-AC_DIAGNOSE([obsolete], +-[$0: Remove this warning and the call to _LT_SET_OPTION when you put +-the `fast-install' option into LT_INIT's first parameter.]) +-]) ++ dnl Generate list of files to be processed by xgettext which will ++ dnl be included in po/Makefile. ++ test -d po || mkdir po ++ if test "x$srcdir" != "x."; then ++ if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then ++ posrcprefix="$srcdir/" ++ else ++ posrcprefix="../$srcdir/" ++ fi ++ else ++ posrcprefix="../" ++ fi ++ rm -f po/POTFILES ++ sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ ++ < $srcdir/po/POTFILES.in > po/POTFILES ++ ]) + +-AU_DEFUN([AC_DISABLE_FAST_INSTALL], +-[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +-AC_DIAGNOSE([obsolete], +-[$0: Remove this warning and the call to _LT_SET_OPTION when you put +-the `disable-fast-install' option into LT_INIT's first parameter.]) ++# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) ++# ------------------------------- ++# Define VARIABLE to the location where catalog files will ++# be installed by po/Makefile. ++glib_DEFUN([GLIB_DEFINE_LOCALEDIR], ++[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl ++glib_save_prefix="$prefix" ++glib_save_exec_prefix="$exec_prefix" ++glib_save_datarootdir="$datarootdir" ++test "x$prefix" = xNONE && prefix=$ac_default_prefix ++test "x$exec_prefix" = xNONE && exec_prefix=$prefix ++datarootdir=`eval echo "${datarootdir}"` ++if test "x$CATOBJEXT" = "x.mo" ; then ++ localedir=`eval echo "${libdir}/locale"` ++else ++ localedir=`eval echo "${datadir}/locale"` ++fi ++prefix="$glib_save_prefix" ++exec_prefix="$glib_save_exec_prefix" ++datarootdir="$glib_save_datarootdir" ++AC_DEFINE_UNQUOTED($1, "$localedir", ++ [Define the location where the catalogs will be installed]) + ]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +-dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) ++dnl ++dnl Now the definitions that aclocal will find ++dnl ++ifdef(glib_configure_in,[],[ ++AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) ++AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ++])dnl + ++# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) ++# ++# Create a temporary file with TEST-FILE as its contents and pass the ++# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with ++# 0 and perform ACTION-IF-FAIL for any other exit status. ++AC_DEFUN([GLIB_RUN_PROG], ++[cat >conftest.foo <<_ACEOF ++$2 ++_ACEOF ++if AC_RUN_LOG([$1 conftest.foo]); then ++ m4_ifval([$3], [$3], [:]) ++m4_ifvaln([$4], [else $4])dnl ++echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD ++sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD ++fi]) + +-# _LT_WITH_PIC([MODE]) +-# -------------------- +-# implement the --with-pic flag, and support the `pic-only' and `no-pic' +-# LT_INIT options. +-# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +-m4_define([_LT_WITH_PIC], +-[AC_ARG_WITH([pic], +- [AS_HELP_STRING([--with-pic], +- [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], +- [pic_mode="$withval"], +- [pic_mode=default]) + +-test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) ++dnl -*- mode: autoconf -*- + +-_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +-])# _LT_WITH_PIC ++# serial 1 + +-LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +-LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) ++dnl Usage: ++dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) ++AC_DEFUN([GTK_DOC_CHECK], ++[ ++ AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first ++ AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first ++ dnl for overriding the documentation installation directory ++ AC_ARG_WITH([html-dir], ++ AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, ++ [with_html_dir='${datadir}/gtk-doc/html']) ++ HTML_DIR="$with_html_dir" ++ AC_SUBST([HTML_DIR]) + +-# Old name: +-AU_DEFUN([AC_LIBTOOL_PICMODE], +-[_LT_SET_OPTION([LT_INIT], [pic-only]) +-AC_DIAGNOSE([obsolete], +-[$0: Remove this warning and the call to _LT_SET_OPTION when you +-put the `pic-only' option into LT_INIT's first parameter.]) +-]) ++ dnl enable/disable documentation building ++ AC_ARG_ENABLE([gtk-doc], ++ AS_HELP_STRING([--enable-gtk-doc], ++ [use gtk-doc to build documentation [[default=no]]]),, ++ [enable_gtk_doc=no]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ++ if test x$enable_gtk_doc = xyes; then ++ ifelse([$1],[], ++ [PKG_CHECK_EXISTS([gtk-doc],, ++ AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], ++ [PKG_CHECK_EXISTS([gtk-doc >= $1],, ++ AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))]) ++ fi + ++ AC_MSG_CHECKING([whether to build gtk-doc documentation]) ++ AC_MSG_RESULT($enable_gtk_doc) + +-m4_define([_LTDL_MODE], []) +-LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], +- [m4_define([_LTDL_MODE], [nonrecursive])]) +-LT_OPTION_DEFINE([LTDL_INIT], [recursive], +- [m4_define([_LTDL_MODE], [recursive])]) +-LT_OPTION_DEFINE([LTDL_INIT], [subproject], +- [m4_define([_LTDL_MODE], [subproject])]) ++ AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,) + +-m4_define([_LTDL_TYPE], []) +-LT_OPTION_DEFINE([LTDL_INIT], [installable], +- [m4_define([_LTDL_TYPE], [installable])]) +-LT_OPTION_DEFINE([LTDL_INIT], [convenience], +- [m4_define([_LTDL_TYPE], [convenience])]) ++ AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) ++ AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) ++]) + + # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- + # +@@ -3768,13 +3171,10 @@ + # before this can be enabled. + hardcode_into_libs=yes + +- # Add ABI-specific directories to the system library path. +- sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" +- + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` +- sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" ++ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on +@@ -3786,6 +3186,18 @@ + dynamic_linker='GNU/Linux ld.so' + ;; + ++netbsdelf*-gnu) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ++ soname_spec='${libname}${release}${shared_ext}$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='NetBSD ld.elf_so' ++ ;; ++ + netbsd*) + version_type=sunos + need_lib_prefix=no +@@ -4377,7 +3789,7 @@ + lt_cv_deplibs_check_method=pass_all + ;; + +-netbsd*) ++netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else +@@ -5058,7 +4470,7 @@ + ;; + esac + ;; +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise +@@ -5483,6 +4895,9 @@ + cygwin* | mingw* | cegcc*) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + ;; ++ linux* | k*bsd*-gnu) ++ _LT_TAGVAR(link_all_deplibs, $1)=no ++ ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; +@@ -5547,6 +4962,9 @@ + openbsd*) + with_gnu_ld=no + ;; ++ linux* | k*bsd*-gnu) ++ _LT_TAGVAR(link_all_deplibs, $1)=no ++ ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes +@@ -5729,7 +5147,7 @@ + fi + ;; + +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= +@@ -5904,6 +5322,7 @@ + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi ++ _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then +@@ -6142,7 +5561,7 @@ + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else +@@ -8647,890 +8066,368 @@ + esac + ]) + +-# ltdl.m4 - Configure ltdl for the target system. -*-Autoconf-*- ++# Helper functions for option handling. -*- Autoconf -*- + # +-# Copyright (C) 1999-2006, 2007, 2008 Free Software Foundation, Inc. +-# Written by Thomas Tanner, 1999 ++# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gary V. Vaughan, 2004 + # + # This file is free software; the Free Software Foundation gives + # unlimited permission to copy and/or distribute it, with or without + # modifications, as long as this notice is preserved. + +-# serial 17 LTDL_INIT ++# serial 6 ltoptions.m4 ++ ++# This is to help aclocal find these macros, as it can't see m4_define. ++AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + +-# LT_CONFIG_LTDL_DIR(DIRECTORY, [LTDL-MODE]) +-# ------------------------------------------ +-# DIRECTORY contains the libltdl sources. It is okay to call this +-# function multiple times, as long as the same DIRECTORY is always given. +-AC_DEFUN([LT_CONFIG_LTDL_DIR], +-[AC_BEFORE([$0], [LTDL_INIT]) +-_$0($*) +-])# LT_CONFIG_LTDL_DIR +- +-# We break this out into a separate macro, so that we can call it safely +-# internally without being caught accidentally by the sed scan in libtoolize. +-m4_defun([_LT_CONFIG_LTDL_DIR], +-[dnl remove trailing slashes +-m4_pushdef([_ARG_DIR], m4_bpatsubst([$1], [/*$])) +-m4_case(_LTDL_DIR, +- [], [dnl only set lt_ltdl_dir if _ARG_DIR is not simply `.' +- m4_if(_ARG_DIR, [.], +- [], +- [m4_define([_LTDL_DIR], _ARG_DIR) +- _LT_SHELL_INIT([lt_ltdl_dir=']_ARG_DIR['])])], +- [m4_if(_ARG_DIR, _LTDL_DIR, +- [], +- [m4_fatal([multiple libltdl directories: `]_LTDL_DIR[', `]_ARG_DIR['])])]) +-m4_popdef([_ARG_DIR]) +-])# _LT_CONFIG_LTDL_DIR + +-# Initialise: +-m4_define([_LTDL_DIR], []) ++# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) ++# ------------------------------------------ ++m4_define([_LT_MANGLE_OPTION], ++[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +-# _LT_BUILD_PREFIX +-# ---------------- +-# If Autoconf is new enough, expand to `${top_build_prefix}', otherwise +-# to `${top_builddir}/'. +-m4_define([_LT_BUILD_PREFIX], +-[m4_ifdef([AC_AUTOCONF_VERSION], +- [m4_if(m4_version_compare(m4_defn([AC_AUTOCONF_VERSION]), [2.62]), +- [-1], [m4_ifdef([_AC_HAVE_TOP_BUILD_PREFIX], +- [${top_build_prefix}], +- [${top_builddir}/])], +- [${top_build_prefix}])], +- [${top_builddir}/])[]dnl ++# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) ++# --------------------------------------- ++# Set option OPTION-NAME for macro MACRO-NAME, and if there is a ++# matching handler defined, dispatch to it. Other OPTION-NAMEs are ++# saved as a flag. ++m4_define([_LT_SET_OPTION], ++[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl ++m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), ++ _LT_MANGLE_DEFUN([$1], [$2]), ++ [m4_warning([Unknown $1 option `$2'])])[]dnl + ]) + + +-# LTDL_CONVENIENCE +-# ---------------- +-# sets LIBLTDL to the link flags for the libltdl convenience library and +-# LTDLINCL to the include flags for the libltdl header and adds +-# --enable-ltdl-convenience to the configure arguments. Note that +-# AC_CONFIG_SUBDIRS is not called here. LIBLTDL will be prefixed with +-# '${top_build_prefix}' if available, otherwise with '${top_builddir}/', +-# and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single +-# quotes!). If your package is not flat and you're not using automake, +-# define top_build_prefix, top_builddir, and top_srcdir appropriately +-# in your Makefiles. +-AC_DEFUN([LTDL_CONVENIENCE], +-[AC_BEFORE([$0], [LTDL_INIT])dnl +-dnl Although the argument is deprecated and no longer documented, +-dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one +-dnl here make sure it is the same as any other declaration of libltdl's +-dnl location! This also ensures lt_ltdl_dir is set when configure.ac is +-dnl not yet using an explicit LT_CONFIG_LTDL_DIR. +-m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl +-_$0() +-])# LTDL_CONVENIENCE +- +-# AC_LIBLTDL_CONVENIENCE accepted a directory argument in older libtools, +-# now we have LT_CONFIG_LTDL_DIR: +-AU_DEFUN([AC_LIBLTDL_CONVENIENCE], +-[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) +-_LTDL_CONVENIENCE]) ++# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) ++# ------------------------------------------------------------ ++# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. ++m4_define([_LT_IF_OPTION], ++[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIBLTDL_CONVENIENCE], []) ++ ++# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) ++# ------------------------------------------------------- ++# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME ++# are set. ++m4_define([_LT_UNLESS_OPTIONS], ++[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), ++ [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), ++ [m4_define([$0_found])])])[]dnl ++m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ++])[]dnl ++]) + + +-# _LTDL_CONVENIENCE +-# ----------------- +-# Code shared by LTDL_CONVENIENCE and LTDL_INIT([convenience]). +-m4_defun([_LTDL_CONVENIENCE], +-[case $enable_ltdl_convenience in +- no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; +- "") enable_ltdl_convenience=yes +- ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; +-esac +-LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la" +-LTDLDEPS=$LIBLTDL +-LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" ++# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) ++# ---------------------------------------- ++# OPTION-LIST is a space-separated list of Libtool options associated ++# with MACRO-NAME. If any OPTION has a matching handler declared with ++# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about ++# the unknown option and exit. ++m4_defun([_LT_SET_OPTIONS], ++[# Set options ++m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), ++ [_LT_SET_OPTION([$1], _LT_Option)]) ++ ++m4_if([$1],[LT_INIT],[ ++ dnl ++ dnl Simply set some default values (i.e off) if boolean options were not ++ dnl specified: ++ _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ++ ]) ++ _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ++ ]) ++ dnl ++ dnl If no reference was made to various pairs of opposing options, then ++ dnl we run the default mode handler for the pair. For example, if neither ++ dnl `shared' nor `disable-shared' was passed, we enable building of shared ++ dnl archives by default: ++ _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) ++ _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) ++ _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) ++ _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], ++ [_LT_ENABLE_FAST_INSTALL]) ++ ]) ++])# _LT_SET_OPTIONS + +-AC_SUBST([LIBLTDL]) +-AC_SUBST([LTDLDEPS]) +-AC_SUBST([LTDLINCL]) + +-# For backwards non-gettext consistent compatibility... +-INCLTDL="$LTDLINCL" +-AC_SUBST([INCLTDL]) +-])# _LTDL_CONVENIENCE + ++# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) ++# ----------------------------------------- ++m4_define([_LT_MANGLE_DEFUN], ++[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + +-# LTDL_INSTALLABLE +-# ---------------- +-# sets LIBLTDL to the link flags for the libltdl installable library +-# and LTDLINCL to the include flags for the libltdl header and adds +-# --enable-ltdl-install to the configure arguments. Note that +-# AC_CONFIG_SUBDIRS is not called from here. If an installed libltdl +-# is not found, LIBLTDL will be prefixed with '${top_build_prefix}' if +-# available, otherwise with '${top_builddir}/', and LTDLINCL will be +-# prefixed with '${top_srcdir}/' (note the single quotes!). If your +-# package is not flat and you're not using automake, define top_build_prefix, +-# top_builddir, and top_srcdir appropriately in your Makefiles. +-# In the future, this macro may have to be called after LT_INIT. +-AC_DEFUN([LTDL_INSTALLABLE], +-[AC_BEFORE([$0], [LTDL_INIT])dnl +-dnl Although the argument is deprecated and no longer documented, +-dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one +-dnl here make sure it is the same as any other declaration of libltdl's +-dnl location! This also ensures lt_ltdl_dir is set when configure.ac is +-dnl not yet using an explicit LT_CONFIG_LTDL_DIR. +-m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl +-_$0() +-])# LTDL_INSTALLABLE +- +-# AC_LIBLTDL_INSTALLABLE accepted a directory argument in older libtools, +-# now we have LT_CONFIG_LTDL_DIR: +-AU_DEFUN([AC_LIBLTDL_INSTALLABLE], +-[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) +-_LTDL_INSTALLABLE]) + +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIBLTDL_INSTALLABLE], []) ++# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) ++# ----------------------------------------------- ++m4_define([LT_OPTION_DEFINE], ++[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ++])# LT_OPTION_DEFINE + + +-# _LTDL_INSTALLABLE +-# ----------------- +-# Code shared by LTDL_INSTALLABLE and LTDL_INIT([installable]). +-m4_defun([_LTDL_INSTALLABLE], +-[if test -f $prefix/lib/libltdl.la; then +- lt_save_LDFLAGS="$LDFLAGS" +- LDFLAGS="-L$prefix/lib $LDFLAGS" +- AC_CHECK_LIB([ltdl], [lt_dlinit], [lt_lib_ltdl=yes]) +- LDFLAGS="$lt_save_LDFLAGS" +- if test x"${lt_lib_ltdl-no}" = xyes; then +- if test x"$enable_ltdl_install" != xyes; then +- # Don't overwrite $prefix/lib/libltdl.la without --enable-ltdl-install +- AC_MSG_WARN([not overwriting libltdl at $prefix, force with `--enable-ltdl-install']) +- enable_ltdl_install=no +- fi +- elif test x"$enable_ltdl_install" = xno; then +- AC_MSG_WARN([libltdl not installed, but installation disabled]) +- fi +-fi ++# dlopen ++# ------ ++LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ++]) + +-# If configure.ac declared an installable ltdl, and the user didn't override +-# with --disable-ltdl-install, we will install the shipped libltdl. +-case $enable_ltdl_install in +- no) ac_configure_args="$ac_configure_args --enable-ltdl-install=no" +- LIBLTDL="-lltdl" +- LTDLDEPS= +- LTDLINCL= +- ;; +- *) enable_ltdl_install=yes +- ac_configure_args="$ac_configure_args --enable-ltdl-install" +- LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdl.la" +- LTDLDEPS=$LIBLTDL +- LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" +- ;; +-esac ++AU_DEFUN([AC_LIBTOOL_DLOPEN], ++[_LT_SET_OPTION([LT_INIT], [dlopen]) ++AC_DIAGNOSE([obsolete], ++[$0: Remove this warning and the call to _LT_SET_OPTION when you ++put the `dlopen' option into LT_INIT's first parameter.]) ++]) + +-AC_SUBST([LIBLTDL]) +-AC_SUBST([LTDLDEPS]) +-AC_SUBST([LTDLINCL]) ++dnl aclocal-1.4 backwards compatibility: ++dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + +-# For backwards non-gettext consistent compatibility... +-INCLTDL="$LTDLINCL" +-AC_SUBST([INCLTDL]) +-])# LTDL_INSTALLABLE + ++# win32-dll ++# --------- ++# Declare package support for building win32 dll's. ++LT_OPTION_DEFINE([LT_INIT], [win32-dll], ++[enable_win32_dll=yes + +-# _LTDL_MODE_DISPATCH +-# ------------------- +-m4_define([_LTDL_MODE_DISPATCH], +-[dnl If _LTDL_DIR is `.', then we are configuring libltdl itself: +-m4_if(_LTDL_DIR, [], +- [], +- dnl if _LTDL_MODE was not set already, the default value is `subproject': +- [m4_case(m4_default(_LTDL_MODE, [subproject]), +- [subproject], [AC_CONFIG_SUBDIRS(_LTDL_DIR) +- _LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"])], +- [nonrecursive], [_LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"; lt_libobj_prefix="$lt_ltdl_dir/"])], +- [recursive], [], +- [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])dnl +-dnl Be careful not to expand twice: +-m4_define([$0], []) +-])# _LTDL_MODE_DISPATCH ++case $host in ++*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) ++ AC_CHECK_TOOL(AS, as, false) ++ AC_CHECK_TOOL(DLLTOOL, dlltool, false) ++ AC_CHECK_TOOL(OBJDUMP, objdump, false) ++ ;; ++esac + ++test -z "$AS" && AS=as ++_LT_DECL([], [AS], [0], [Assembler program])dnl + +-# _LT_LIBOBJ(MODULE_NAME) +-# ----------------------- +-# Like AC_LIBOBJ, except that MODULE_NAME goes into _LT_LIBOBJS instead +-# of into LIBOBJS. +-AC_DEFUN([_LT_LIBOBJ], [ +- m4_pattern_allow([^_LT_LIBOBJS$]) +- _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext" +-])# _LT_LIBOBJS ++test -z "$DLLTOOL" && DLLTOOL=dlltool ++_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl + ++test -z "$OBJDUMP" && OBJDUMP=objdump ++_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl ++])# win32-dll + +-# LTDL_INIT([OPTIONS]) +-# -------------------- +-# Clients of libltdl can use this macro to allow the installer to +-# choose between a shipped copy of the ltdl sources or a preinstalled +-# version of the library. If the shipped ltdl sources are not in a +-# subdirectory named libltdl, the directory name must be given by +-# LT_CONFIG_LTDL_DIR. +-AC_DEFUN([LTDL_INIT], +-[dnl Parse OPTIONS +-_LT_SET_OPTIONS([$0], [$1]) ++AU_DEFUN([AC_LIBTOOL_WIN32_DLL], ++[AC_REQUIRE([AC_CANONICAL_HOST])dnl ++_LT_SET_OPTION([LT_INIT], [win32-dll]) ++AC_DIAGNOSE([obsolete], ++[$0: Remove this warning and the call to _LT_SET_OPTION when you ++put the `win32-dll' option into LT_INIT's first parameter.]) ++]) + +-dnl We need to keep our own list of libobjs separate from our parent project, +-dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while +-dnl we look for our own LIBOBJs. +-m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ])) +-m4_pushdef([AC_LIBSOURCES]) +- +-dnl If not otherwise defined, default to the 1.5.x compatible subproject mode: +-m4_if(_LTDL_MODE, [], +- [m4_define([_LTDL_MODE], m4_default([$2], [subproject])) +- m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])], +- [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])]) +- +-AC_ARG_WITH([included_ltdl], +- [AS_HELP_STRING([--with-included-ltdl], +- [use the GNU ltdl sources included here])]) +- +-if test "x$with_included_ltdl" != xyes; then +- # We are not being forced to use the included libltdl sources, so +- # decide whether there is a useful installed version we can use. +- AC_CHECK_HEADER([ltdl.h], +- [AC_CHECK_DECL([lt_dlinterface_register], +- [AC_CHECK_LIB([ltdl], [lt_dladvise_preload], +- [with_included_ltdl=no], +- [with_included_ltdl=yes])], +- [with_included_ltdl=yes], +- [AC_INCLUDES_DEFAULT +- #include <ltdl.h>])], +- [with_included_ltdl=yes], +- [AC_INCLUDES_DEFAULT] +- ) +-fi +- +-dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE +-dnl was called yet, then for old times' sake, we assume libltdl is in an +-dnl eponymous directory: +-AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])]) +- +-AC_ARG_WITH([ltdl_include], +- [AS_HELP_STRING([--with-ltdl-include=DIR], +- [use the ltdl headers installed in DIR])]) ++dnl aclocal-1.4 backwards compatibility: ++dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + +-if test -n "$with_ltdl_include"; then +- if test -f "$with_ltdl_include/ltdl.h"; then : +- else +- AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include']) +- fi +-else +- with_ltdl_include=no +-fi + +-AC_ARG_WITH([ltdl_lib], +- [AS_HELP_STRING([--with-ltdl-lib=DIR], +- [use the libltdl.la installed in DIR])]) ++# _LT_ENABLE_SHARED([DEFAULT]) ++# ---------------------------- ++# implement the --enable-shared flag, and supports the `shared' and ++# `disable-shared' LT_INIT options. ++# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ++m4_define([_LT_ENABLE_SHARED], ++[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl ++AC_ARG_ENABLE([shared], ++ [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], ++ [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], ++ [p=${PACKAGE-default} ++ case $enableval in ++ yes) enable_shared=yes ;; ++ no) enable_shared=no ;; ++ *) ++ enable_shared=no ++ # Look at the argument we got. We use all the common list separators. ++ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ++ for pkg in $enableval; do ++ IFS="$lt_save_ifs" ++ if test "X$pkg" = "X$p"; then ++ enable_shared=yes ++ fi ++ done ++ IFS="$lt_save_ifs" ++ ;; ++ esac], ++ [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) ++ ++ _LT_DECL([build_libtool_libs], [enable_shared], [0], ++ [Whether or not to build shared libraries]) ++])# _LT_ENABLE_SHARED + +-if test -n "$with_ltdl_lib"; then +- if test -f "$with_ltdl_lib/libltdl.la"; then : +- else +- AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib']) +- fi +-else +- with_ltdl_lib=no +-fi ++LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) ++LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +-case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in +- ,yes,no,no,) +- m4_case(m4_default(_LTDL_TYPE, [convenience]), +- [convenience], [_LTDL_CONVENIENCE], +- [installable], [_LTDL_INSTALLABLE], +- [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)]) +- ;; +- ,no,no,no,) +- # If the included ltdl is not to be used, then use the +- # preinstalled libltdl we found. +- AC_DEFINE([HAVE_LTDL], [1], +- [Define this if a modern libltdl is already installed]) +- LIBLTDL=-lltdl +- LTDLDEPS= +- LTDLINCL= +- ;; +- ,no*,no,*) +- AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together]) +- ;; +- *) with_included_ltdl=no +- LIBLTDL="-L$with_ltdl_lib -lltdl" +- LTDLDEPS= +- LTDLINCL="-I$with_ltdl_include" +- ;; +-esac +-INCLTDL="$LTDLINCL" ++# Old names: ++AC_DEFUN([AC_ENABLE_SHARED], ++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ++]) + +-# Report our decision... +-AC_MSG_CHECKING([where to find libltdl headers]) +-AC_MSG_RESULT([$LTDLINCL]) +-AC_MSG_CHECKING([where to find libltdl library]) +-AC_MSG_RESULT([$LIBLTDL]) +- +-_LTDL_SETUP +- +-dnl restore autoconf definition. +-m4_popdef([AC_LIBOBJ]) +-m4_popdef([AC_LIBSOURCES]) +- +-AC_CONFIG_COMMANDS_PRE([ +- _ltdl_libobjs= +- _ltdl_ltlibobjs= +- if test -n "$_LT_LIBOBJS"; then +- # Remove the extension. +- _lt_sed_drop_objext='s/\.o$//;s/\.obj$//' +- for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do +- _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext" +- _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo" +- done +- fi +- AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs]) +- AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs]) ++AC_DEFUN([AC_DISABLE_SHARED], ++[_LT_SET_OPTION([LT_INIT], [disable-shared]) + ]) + +-# Only expand once: +-m4_define([LTDL_INIT]) +-])# LTDL_INIT ++AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ++AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +-# Old names: +-AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)]) +-AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)]) +-AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)]) + dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LIB_LTDL], []) +-dnl AC_DEFUN([AC_WITH_LTDL], []) +-dnl AC_DEFUN([LT_WITH_LTDL], []) +- +- +-# _LTDL_SETUP +-# ----------- +-# Perform all the checks necessary for compilation of the ltdl objects +-# -- including compiler checks and header checks. This is a public +-# interface mainly for the benefit of libltdl's own configure.ac, most +-# other users should call LTDL_INIT instead. +-AC_DEFUN([_LTDL_SETUP], +-[AC_REQUIRE([AC_PROG_CC])dnl +-AC_REQUIRE([LT_SYS_MODULE_EXT])dnl +-AC_REQUIRE([LT_SYS_MODULE_PATH])dnl +-AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl +-AC_REQUIRE([LT_LIB_DLLOAD])dnl +-AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl +-AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl +-AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl +-AC_REQUIRE([gl_FUNC_ARGZ])dnl +- +-m4_require([_LT_CHECK_OBJDIR])dnl +-m4_require([_LT_HEADER_DLFCN])dnl +-m4_require([_LT_CHECK_DLPREOPEN])dnl +-m4_require([_LT_DECL_SED])dnl +- +-dnl Don't require this, or it will be expanded earlier than the code +-dnl that sets the variables it relies on: +-_LT_ENABLE_INSTALL +- +-dnl _LTDL_MODE specific code must be called at least once: +-_LTDL_MODE_DISPATCH +- +-# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS +-# the user used. This is so that ltdl.h can pick up the parent projects +-# config.h file, The first file in AC_CONFIG_HEADERS must contain the +-# definitions required by ltdl.c. +-# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility). +-AC_CONFIG_COMMANDS_PRE([dnl +-m4_pattern_allow([^LT_CONFIG_H$])dnl +-m4_ifset([AH_HEADER], +- [LT_CONFIG_H=AH_HEADER], +- [m4_ifset([AC_LIST_HEADERS], +- [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`], +- [])])]) +-AC_SUBST([LT_CONFIG_H]) +- +-AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h], +- [], [], [AC_INCLUDES_DEFAULT]) +- +-AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])]) +-AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])]) +- +-AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension]) +- +-name=ltdl +-LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""` +-AC_SUBST([LTDLOPEN]) +-])# _LTDL_SETUP +- +- +-# _LT_ENABLE_INSTALL +-# ------------------ +-m4_define([_LT_ENABLE_INSTALL], +-[AC_ARG_ENABLE([ltdl-install], +- [AS_HELP_STRING([--enable-ltdl-install], [install libltdl])]) +- +-case ,${enable_ltdl_install},${enable_ltdl_convenience} in +- *yes*) ;; +- *) enable_ltdl_convenience=yes ;; +-esac ++dnl AC_DEFUN([AM_ENABLE_SHARED], []) ++dnl AC_DEFUN([AM_DISABLE_SHARED], []) + +-m4_ifdef([AM_CONDITIONAL], +-[AM_CONDITIONAL(INSTALL_LTDL, test x"${enable_ltdl_install-no}" != xno) +- AM_CONDITIONAL(CONVENIENCE_LTDL, test x"${enable_ltdl_convenience-no}" != xno)]) +-])# _LT_ENABLE_INSTALL + + +-# LT_SYS_DLOPEN_DEPLIBS +-# --------------------- +-AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], +-[AC_REQUIRE([AC_CANONICAL_HOST])dnl +-AC_CACHE_CHECK([whether deplibs are loaded by dlopen], +- [lt_cv_sys_dlopen_deplibs], +- [# PORTME does your system automatically load deplibs for dlopen? +- # or its logical equivalent (e.g. shl_load for HP-UX < 11) +- # For now, we just catch OSes we know something about -- in the +- # future, we'll try test this programmatically. +- lt_cv_sys_dlopen_deplibs=unknown +- case $host_os in +- aix3*|aix4.1.*|aix4.2.*) +- # Unknown whether this is true for these versions of AIX, but +- # we want this `case' here to explicitly catch those versions. +- lt_cv_sys_dlopen_deplibs=unknown +- ;; +- aix[[4-9]]*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- amigaos*) +- case $host_cpu in +- powerpc) +- lt_cv_sys_dlopen_deplibs=no ++# _LT_ENABLE_STATIC([DEFAULT]) ++# ---------------------------- ++# implement the --enable-static flag, and support the `static' and ++# `disable-static' LT_INIT options. ++# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ++m4_define([_LT_ENABLE_STATIC], ++[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl ++AC_ARG_ENABLE([static], ++ [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], ++ [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], ++ [p=${PACKAGE-default} ++ case $enableval in ++ yes) enable_static=yes ;; ++ no) enable_static=no ;; ++ *) ++ enable_static=no ++ # Look at the argument we got. We use all the common list separators. ++ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ++ for pkg in $enableval; do ++ IFS="$lt_save_ifs" ++ if test "X$pkg" = "X$p"; then ++ enable_static=yes ++ fi ++ done ++ IFS="$lt_save_ifs" + ;; +- esac +- ;; +- darwin*) +- # Assuming the user has installed a libdl from somewhere, this is true +- # If you are looking for one http://www.opendarwin.org/projects/dlcompat +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- freebsd* | dragonfly*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- gnu* | linux* | k*bsd*-gnu) +- # GNU and its variants, using gnu ld.so (Glibc) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- hpux10*|hpux11*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- interix*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- irix[[12345]]*|irix6.[[01]]*) +- # Catch all versions of IRIX before 6.2, and indicate that we don't +- # know how it worked for any of those versions. +- lt_cv_sys_dlopen_deplibs=unknown +- ;; +- irix*) +- # The case above catches anything before 6.2, and it's known that +- # at 6.2 and later dlopen does load deplibs. +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- netbsd*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- openbsd*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- osf[[1234]]*) +- # dlopen did load deplibs (at least at 4.x), but until the 5.x series, +- # it did *not* use an RPATH in a shared library to find objects the +- # library depends on, so we explicitly say `no'. +- lt_cv_sys_dlopen_deplibs=no +- ;; +- osf5.0|osf5.0a|osf5.1) +- # dlopen *does* load deplibs and with the right loader patch applied +- # it even uses RPATH in a shared library to search for shared objects +- # that the library depends on, but there's no easy way to know if that +- # patch is installed. Since this is the case, all we can really +- # say is unknown -- it depends on the patch being installed. If +- # it is, this changes to `yes'. Without it, it would be `no'. +- lt_cv_sys_dlopen_deplibs=unknown +- ;; +- osf*) +- # the two cases above should catch all versions of osf <= 5.1. Read +- # the comments above for what we know about them. +- # At > 5.1, deplibs are loaded *and* any RPATH in a shared library +- # is used to find them so we can finally say `yes'. +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- qnx*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- solaris*) +- lt_cv_sys_dlopen_deplibs=yes +- ;; +- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) +- libltdl_cv_sys_dlopen_deplibs=yes +- ;; +- esac +- ]) +-if test "$lt_cv_sys_dlopen_deplibs" != yes; then +- AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1], +- [Define if the OS needs help to load dependent libraries for dlopen().]) +-fi +-])# LT_SYS_DLOPEN_DEPLIBS +- +-# Old name: +-AU_ALIAS([AC_LTDL_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS]) +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], []) +- +- +-# LT_SYS_MODULE_EXT +-# ----------------- +-AC_DEFUN([LT_SYS_MODULE_EXT], +-[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +-AC_CACHE_CHECK([which extension is used for runtime loadable modules], +- [libltdl_cv_shlibext], +-[ +-module=yes +-eval libltdl_cv_shlibext=$shrext_cmds +- ]) +-if test -n "$libltdl_cv_shlibext"; then +- m4_pattern_allow([LT_MODULE_EXT])dnl +- AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"], +- [Define to the extension used for runtime loadable modules, say, ".so".]) +-fi +-])# LT_SYS_MODULE_EXT +- +-# Old name: +-AU_ALIAS([AC_LTDL_SHLIBEXT], [LT_SYS_MODULE_EXT]) +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_SHLIBEXT], []) ++ esac], ++ [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + ++ _LT_DECL([build_old_libs], [enable_static], [0], ++ [Whether or not to build static libraries]) ++])# _LT_ENABLE_STATIC + +-# LT_SYS_MODULE_PATH +-# ------------------ +-AC_DEFUN([LT_SYS_MODULE_PATH], +-[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +-AC_CACHE_CHECK([which variable specifies run-time module search path], +- [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"]) +-if test -n "$lt_cv_module_path_var"; then +- m4_pattern_allow([LT_MODULE_PATH_VAR])dnl +- AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"], +- [Define to the name of the environment variable that determines the run-time module search path.]) +-fi +-])# LT_SYS_MODULE_PATH ++LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) ++LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +-# Old name: +-AU_ALIAS([AC_LTDL_SHLIBPATH], [LT_SYS_MODULE_PATH]) +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_SHLIBPATH], []) ++# Old names: ++AC_DEFUN([AC_ENABLE_STATIC], ++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ++]) + ++AC_DEFUN([AC_DISABLE_STATIC], ++[_LT_SET_OPTION([LT_INIT], [disable-static]) ++]) + +-# LT_SYS_DLSEARCH_PATH +-# -------------------- +-AC_DEFUN([LT_SYS_DLSEARCH_PATH], +-[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +-AC_CACHE_CHECK([for the default library search path], +- [lt_cv_sys_dlsearch_path], +- [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"]) +-if test -n "$lt_cv_sys_dlsearch_path"; then +- sys_dlsearch_path= +- for dir in $lt_cv_sys_dlsearch_path; do +- if test -z "$sys_dlsearch_path"; then +- sys_dlsearch_path="$dir" +- else +- sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir" +- fi +- done +- m4_pattern_allow([LT_DLSEARCH_PATH])dnl +- AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"], +- [Define to the system default library search path.]) +-fi +-])# LT_SYS_DLSEARCH_PATH ++AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ++AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +-# Old name: +-AU_ALIAS([AC_LTDL_SYSSEARCHPATH], [LT_SYS_DLSEARCH_PATH]) + dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_SYSSEARCHPATH], []) +- ++dnl AC_DEFUN([AM_ENABLE_STATIC], []) ++dnl AC_DEFUN([AM_DISABLE_STATIC], []) + +-# _LT_CHECK_DLPREOPEN +-# ------------------- +-m4_defun([_LT_CHECK_DLPREOPEN], +-[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +-AC_CACHE_CHECK([whether libtool supports -dlopen/-dlpreopen], +- [libltdl_cv_preloaded_symbols], +- [if test -n "$lt_cv_sys_global_symbol_pipe"; then +- libltdl_cv_preloaded_symbols=yes +- else +- libltdl_cv_preloaded_symbols=no +- fi +- ]) +-if test x"$libltdl_cv_preloaded_symbols" = xyes; then +- AC_DEFINE([HAVE_PRELOADED_SYMBOLS], [1], +- [Define if libtool can extract symbol lists from object files.]) +-fi +-])# _LT_CHECK_DLPREOPEN + + +-# LT_LIB_DLLOAD +-# ------------- +-AC_DEFUN([LT_LIB_DLLOAD], +-[m4_pattern_allow([^LT_DLLOADERS$]) +-LT_DLLOADERS= +-AC_SUBST([LT_DLLOADERS]) +- +-AC_LANG_PUSH([C]) +- +-LIBADD_DLOPEN= +-AC_SEARCH_LIBS([dlopen], [dl], +- [AC_DEFINE([HAVE_LIBDL], [1], +- [Define if you have the libdl library or equivalent.]) +- if test "$ac_cv_search_dlopen" != "none required" ; then +- LIBADD_DLOPEN="-ldl" ++# _LT_ENABLE_FAST_INSTALL([DEFAULT]) ++# ---------------------------------- ++# implement the --enable-fast-install flag, and support the `fast-install' ++# and `disable-fast-install' LT_INIT options. ++# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ++m4_define([_LT_ENABLE_FAST_INSTALL], ++[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl ++AC_ARG_ENABLE([fast-install], ++ [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], ++ [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], ++ [p=${PACKAGE-default} ++ case $enableval in ++ yes) enable_fast_install=yes ;; ++ no) enable_fast_install=no ;; ++ *) ++ enable_fast_install=no ++ # Look at the argument we got. We use all the common list separators. ++ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ++ for pkg in $enableval; do ++ IFS="$lt_save_ifs" ++ if test "X$pkg" = "X$p"; then ++ enable_fast_install=yes + fi +- libltdl_cv_lib_dl_dlopen="yes" +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], +- [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H +-# include <dlfcn.h> +-#endif +- ]], [[dlopen(0, 0);]])], +- [AC_DEFINE([HAVE_LIBDL], [1], +- [Define if you have the libdl library or equivalent.]) +- libltdl_cv_func_dlopen="yes" +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], +- [AC_CHECK_LIB([svld], [dlopen], +- [AC_DEFINE([HAVE_LIBDL], [1], +- [Define if you have the libdl library or equivalent.]) +- LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes" +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])]) +-if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes +-then +- lt_save_LIBS="$LIBS" +- LIBS="$LIBS $LIBADD_DLOPEN" +- AC_CHECK_FUNCS([dlerror]) +- LIBS="$lt_save_LIBS" +-fi +-AC_SUBST([LIBADD_DLOPEN]) +- +-LIBADD_SHL_LOAD= +-AC_CHECK_FUNC([shl_load], +- [AC_DEFINE([HAVE_SHL_LOAD], [1], +- [Define if you have the shl_load function.]) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"], +- [AC_CHECK_LIB([dld], [shl_load], +- [AC_DEFINE([HAVE_SHL_LOAD], [1], +- [Define if you have the shl_load function.]) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la" +- LIBADD_SHL_LOAD="-ldld"])]) +-AC_SUBST([LIBADD_SHL_LOAD]) ++ done ++ IFS="$lt_save_ifs" ++ ;; ++ esac], ++ [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +-case $host_os in +-darwin[[1567]].*) +-# We only want this for pre-Mac OS X 10.4. +- AC_CHECK_FUNC([_dyld_func_lookup], +- [AC_DEFINE([HAVE_DYLD], [1], +- [Define if you have the _dyld_func_lookup function.]) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"]) +- ;; +-beos*) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la" +- ;; +-cygwin* | mingw* | os2* | pw32*) +- AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]]) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la" +- ;; +-esac ++_LT_DECL([fast_install], [enable_fast_install], [0], ++ [Whether or not to optimize for fast installation])dnl ++])# _LT_ENABLE_FAST_INSTALL + +-AC_CHECK_LIB([dld], [dld_link], +- [AC_DEFINE([HAVE_DLD], [1], +- [Define if you have the GNU dld library.]) +- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"]) +-AC_SUBST([LIBADD_DLD_LINK]) +- +-m4_pattern_allow([^LT_DLPREOPEN$]) +-LT_DLPREOPEN= +-if test -n "$LT_DLLOADERS" +-then +- for lt_loader in $LT_DLLOADERS; do +- LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader " +- done +- AC_DEFINE([HAVE_LIBDLLOADER], [1], +- [Define if libdlloader will be built on this platform]) +-fi +-AC_SUBST([LT_DLPREOPEN]) ++LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) ++LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +-dnl This isn't used anymore, but set it for backwards compatibility +-LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD" +-AC_SUBST([LIBADD_DL]) ++# Old names: ++AU_DEFUN([AC_ENABLE_FAST_INSTALL], ++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) ++AC_DIAGNOSE([obsolete], ++[$0: Remove this warning and the call to _LT_SET_OPTION when you put ++the `fast-install' option into LT_INIT's first parameter.]) ++]) + +-AC_LANG_POP +-])# LT_LIB_DLLOAD ++AU_DEFUN([AC_DISABLE_FAST_INSTALL], ++[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) ++AC_DIAGNOSE([obsolete], ++[$0: Remove this warning and the call to _LT_SET_OPTION when you put ++the `disable-fast-install' option into LT_INIT's first parameter.]) ++]) + +-# Old name: +-AU_ALIAS([AC_LTDL_DLLIB], [LT_LIB_DLLOAD]) + dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_DLLIB], []) ++dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) ++dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +-# LT_SYS_SYMBOL_USCORE ++# _LT_WITH_PIC([MODE]) + # -------------------- +-# does the compiler prefix global symbols with an underscore? +-AC_DEFUN([LT_SYS_SYMBOL_USCORE], +-[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +-AC_CACHE_CHECK([for _ prefix in compiled symbols], +- [lt_cv_sys_symbol_underscore], +- [lt_cv_sys_symbol_underscore=no +- cat > conftest.$ac_ext <<_LT_EOF +-void nm_test_func(){} +-int main(){nm_test_func;return 0;} +-_LT_EOF +- if AC_TRY_EVAL(ac_compile); then +- # Now try to grab the symbols. +- ac_nlist=conftest.nm +- if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then +- # See whether the symbols have a leading underscore. +- if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then +- lt_cv_sys_symbol_underscore=yes +- else +- if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then +- : +- else +- echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD +- fi +- fi +- else +- echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD +- fi +- else +- echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD +- cat conftest.c >&AS_MESSAGE_LOG_FD +- fi +- rm -rf conftest* +- ]) +- sys_symbol_underscore=$lt_cv_sys_symbol_underscore +- AC_SUBST([sys_symbol_underscore]) +-])# LT_SYS_SYMBOL_USCORE +- +-# Old name: +-AU_ALIAS([AC_LTDL_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE]) +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_SYMBOL_USCORE], []) ++# implement the --with-pic flag, and support the `pic-only' and `no-pic' ++# LT_INIT options. ++# MODE is either `yes' or `no'. If omitted, it defaults to `both'. ++m4_define([_LT_WITH_PIC], ++[AC_ARG_WITH([pic], ++ [AS_HELP_STRING([--with-pic], ++ [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], ++ [pic_mode="$withval"], ++ [pic_mode=default]) + ++test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +-# LT_FUNC_DLSYM_USCORE +-# -------------------- +-AC_DEFUN([LT_FUNC_DLSYM_USCORE], +-[AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl +-if test x"$lt_cv_sys_symbol_underscore" = xyes; then +- if test x"$libltdl_cv_func_dlopen" = xyes || +- test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then +- AC_CACHE_CHECK([whether we have to add an underscore for dlsym], +- [libltdl_cv_need_uscore], +- [libltdl_cv_need_uscore=unknown +- save_LIBS="$LIBS" +- LIBS="$LIBS $LIBADD_DLOPEN" +- _LT_TRY_DLOPEN_SELF( +- [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes], +- [], [libltdl_cv_need_uscore=cross]) +- LIBS="$save_LIBS" +- ]) +- fi +-fi ++_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ++])# _LT_WITH_PIC + +-if test x"$libltdl_cv_need_uscore" = xyes; then +- AC_DEFINE([NEED_USCORE], [1], +- [Define if dlsym() requires a leading underscore in symbol names.]) +-fi +-])# LT_FUNC_DLSYM_USCORE ++LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) ++LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + + # Old name: +-AU_ALIAS([AC_LTDL_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE]) +-dnl aclocal-1.4 backwards compatibility: +-dnl AC_DEFUN([AC_LTDL_DLSYM_USCORE], []) +- +-# Portability macros for glibc argz. -*- Autoconf -*- +-# +-# Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +-# Written by Gary V. Vaughan <gary@gnu.org> +-# +-# This file is free software; the Free Software Foundation gives +-# unlimited permission to copy and/or distribute it, with or without +-# modifications, as long as this notice is preserved. +- +-# serial 5 argz.m4 +- +-AC_DEFUN([gl_FUNC_ARGZ], +-[gl_PREREQ_ARGZ ++AU_DEFUN([AC_LIBTOOL_PICMODE], ++[_LT_SET_OPTION([LT_INIT], [pic-only]) ++AC_DIAGNOSE([obsolete], ++[$0: Remove this warning and the call to _LT_SET_OPTION when you ++put the `pic-only' option into LT_INIT's first parameter.]) ++]) + +-AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT]) ++dnl aclocal-1.4 backwards compatibility: ++dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +-AC_CHECK_TYPES([error_t], +- [], +- [AC_DEFINE([error_t], [int], +- [Define to a type to use for `error_t' if it is not otherwise available.]) +- AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h +- does not typedef error_t.])], +- [#if defined(HAVE_ARGZ_H) +-# include <argz.h> +-#endif]) +- +-ARGZ_H= +-AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \ +- argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])]) +- +-dnl if have system argz functions, allow forced use of +-dnl libltdl-supplied implementation (and default to do so +-dnl on "known bad" systems). Could use a runtime check, but +-dnl (a) detecting malloc issues is notoriously unreliable +-dnl (b) only known system that declares argz functions, +-dnl provides them, yet they are broken, is cygwin +-dnl releases prior to 16-Mar-2007 (1.5.24 and earlier) +-dnl So, it's more straightforward simply to special case +-dnl this for known bad systems. +-AS_IF([test -z "$ARGZ_H"], +- [AC_CACHE_CHECK( +- [if argz actually works], +- [lt_cv_sys_argz_works], +- [[case $host_os in #( +- *cygwin*) +- lt_cv_sys_argz_works=no +- if test "$cross_compiling" != no; then +- lt_cv_sys_argz_works="guessing no" +- else +- lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/' +- save_IFS=$IFS +- IFS=-. +- set x `uname -r | sed -e "$lt_sed_extract_leading_digits"` +- IFS=$save_IFS +- lt_os_major=${2-0} +- lt_os_minor=${3-0} +- lt_os_micro=${4-0} +- if test "$lt_os_major" -gt 1 \ +- || { test "$lt_os_major" -eq 1 \ +- && { test "$lt_os_minor" -gt 5 \ +- || { test "$lt_os_minor" -eq 5 \ +- && test "$lt_os_micro" -gt 24; }; }; }; then +- lt_cv_sys_argz_works=yes +- fi +- fi +- ;; #( +- *) lt_cv_sys_argz_works=yes ;; +- esac]]) +- AS_IF([test $lt_cv_sys_argz_works = yes], +- [AC_DEFINE([HAVE_WORKING_ARGZ], 1, +- [This value is set to 1 to indicate that the system argz facility works])], +- [ARGZ_H=argz.h +- AC_LIBOBJ([argz])])]) + +-AC_SUBST([ARGZ_H]) +-]) ++m4_define([_LTDL_MODE], []) ++LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], ++ [m4_define([_LTDL_MODE], [nonrecursive])]) ++LT_OPTION_DEFINE([LTDL_INIT], [recursive], ++ [m4_define([_LTDL_MODE], [recursive])]) ++LT_OPTION_DEFINE([LTDL_INIT], [subproject], ++ [m4_define([_LTDL_MODE], [subproject])]) + +-# Prerequisites of lib/argz.c. +-AC_DEFUN([gl_PREREQ_ARGZ], [:]) ++m4_define([_LTDL_TYPE], []) ++LT_OPTION_DEFINE([LTDL_INIT], [installable], ++ [m4_define([_LTDL_TYPE], [installable])]) ++LT_OPTION_DEFINE([LTDL_INIT], [convenience], ++ [m4_define([_LTDL_TYPE], [convenience])]) + + # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- + # +@@ -9773,1024 +8670,1216 @@ + m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) + m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) + +-# Figure out how to run the assembler. -*- Autoconf -*- ++# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- ++# ++# Copyright © 2004 Scott James Remnant <scott@netsplit.com>. ++# ++# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. + +-# serial 2 ++# PKG_PROG_PKG_CONFIG([MIN-VERSION]) ++# ---------------------------------- ++AC_DEFUN([PKG_PROG_PKG_CONFIG], ++[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) ++m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) ++AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl ++if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then ++ AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) ++fi ++if test -n "$PKG_CONFIG"; then ++ _pkg_min_version=m4_default([$1], [0.9.0]) ++ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) ++ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then ++ AC_MSG_RESULT([yes]) ++ else ++ AC_MSG_RESULT([no]) ++ PKG_CONFIG="" ++ fi ++ ++fi[]dnl ++])# PKG_PROG_PKG_CONFIG + +-# Copyright 2001 Free Software Foundation, Inc. ++# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) ++# ++# Check to see whether a particular set of modules exists. Similar ++# to PKG_CHECK_MODULES(), but does not set variables or print errors. ++# ++# ++# Similar to PKG_CHECK_MODULES, make sure that the first instance of ++# this or PKG_CHECK_MODULES is called, or make sure to call ++# PKG_CHECK_EXISTS manually ++# -------------------------------------------------------------- ++AC_DEFUN([PKG_CHECK_EXISTS], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl ++if test -n "$PKG_CONFIG" && \ ++ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then ++ m4_ifval([$2], [$2], [:]) ++m4_ifvaln([$3], [else ++ $3])dnl ++fi]) + +-# 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, 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. ++# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) ++# --------------------------------------------- ++m4_define([_PKG_CONFIG], ++[if test -n "$PKG_CONFIG"; then ++ if test -n "$$1"; then ++ pkg_cv_[]$1="$$1" ++ else ++ PKG_CHECK_EXISTS([$3], ++ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], ++ [pkg_failed=yes]) ++ fi ++else ++ pkg_failed=untried ++fi[]dnl ++])# _PKG_CONFIG + +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. ++# _PKG_SHORT_ERRORS_SUPPORTED ++# ----------------------------- ++AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi[]dnl ++])# _PKG_SHORT_ERRORS_SUPPORTED + +-# AM_PROG_AS +-# ---------- +-AC_DEFUN([AM_PROG_AS], +-[# By default we simply use the C compiler to build assembly code. +-AC_REQUIRE([AC_PROG_CC]) +-: ${CCAS='$(CC)'} +-# Set ASFLAGS if not already set. +-: ${CCASFLAGS='$(CFLAGS)'} +-AC_SUBST(CCAS) +-AC_SUBST(CCASFLAGS)]) + +-# Add --enable-maintainer-mode option to configure. +-# From Jim Meyering ++# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], ++# [ACTION-IF-NOT-FOUND]) ++# ++# ++# Note that if there is a possibility the first call to ++# PKG_CHECK_MODULES might not happen, you should be sure to include an ++# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac ++# ++# ++# -------------------------------------------------------------- ++AC_DEFUN([PKG_CHECK_MODULES], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl ++AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl ++AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +-# Copyright 1996, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. ++pkg_failed=no ++AC_MSG_CHECKING([for $1]) + +-# 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, or (at your option) +-# any later version. ++_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) ++_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +-# 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. ++m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS ++and $1[]_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page 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., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. ++if test $pkg_failed = yes; then ++ _PKG_SHORT_ERRORS_SUPPORTED ++ if test $_pkg_short_errors_supported = yes; then ++ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` ++ else ++ $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + +-# serial 2 ++ ifelse([$4], , [AC_MSG_ERROR(dnl ++[Package requirements ($2) were not met: + +-AC_DEFUN([AM_MAINTAINER_MODE], +-[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) +- dnl maintainer-mode is disabled by default +- AC_ARG_ENABLE(maintainer-mode, +-[ --enable-maintainer-mode enable make rules and dependencies not useful +- (and sometimes confusing) to the casual installer], +- USE_MAINTAINER_MODE=$enableval, +- USE_MAINTAINER_MODE=no) +- AC_MSG_RESULT([$USE_MAINTAINER_MODE]) +- AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) +- MAINT=$MAINTAINER_MODE_TRUE +- AC_SUBST(MAINT)dnl +-] +-) ++$$1_PKG_ERRORS + +-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) ++Consider adjusting the PKG_CONFIG_PATH environment variable if you ++installed software in a non-standard prefix. ++ ++_PKG_TEXT ++])], ++ [AC_MSG_RESULT([no]) ++ $4]) ++elif test $pkg_failed = untried; then ++ ifelse([$4], , [AC_MSG_FAILURE(dnl ++[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. ++ ++_PKG_TEXT ++ ++To get pkg-config, see <http://pkg-config.freedesktop.org/>.])], ++ [$4]) ++else ++ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS ++ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS ++ AC_MSG_RESULT([yes]) ++ ifelse([$3], , :, [$3]) ++fi[]dnl ++])# PKG_CHECK_MODULES ++ ++# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# AM_AUTOMAKE_VERSION(VERSION) ++# ---------------------------- ++# Automake X.Y traces this macro to ensure aclocal.m4 has been ++# generated from the m4 files accompanying Automake X.Y. ++# (This private macro should not be called outside this file.) ++AC_DEFUN([AM_AUTOMAKE_VERSION], ++[am__api_version='1.11' ++dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to ++dnl require some minimum version. Point them to the right macro. ++m4_if([$1], [1.11], [], ++ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ++]) + ++# _AM_AUTOCONF_VERSION(VERSION) ++# ----------------------------- ++# aclocal traces this macro to find the Autoconf version. ++# This is a private macro too. Using m4_define simplifies ++# the logic in aclocal, which can simply ignore this definition. ++m4_define([_AM_AUTOCONF_VERSION], []) ++ ++# AM_SET_CURRENT_AUTOMAKE_VERSION ++# ------------------------------- ++# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. ++# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. ++AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ++[AM_AUTOMAKE_VERSION([1.11])dnl ++m4_ifndef([AC_AUTOCONF_VERSION], ++ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl ++_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) ++ ++# Figure out how to run the assembler. -*- Autoconf -*- ++ ++# Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# serial 5 ++ ++# AM_PROG_AS ++# ---------- ++AC_DEFUN([AM_PROG_AS], ++[# By default we simply use the C compiler to build assembly code. ++AC_REQUIRE([AC_PROG_CC]) ++test "${CCAS+set}" = set || CCAS=$CC ++test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS ++AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)]) ++AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)]) ++_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl ++]) ++ ++# AM_AUX_DIR_EXPAND -*- Autoconf -*- ++ ++# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets ++# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to ++# `$srcdir', `$srcdir/..', or `$srcdir/../..'. ++# ++# Of course, Automake must honor this variable whenever it calls a ++# tool from the auxiliary directory. The problem is that $srcdir (and ++# therefore $ac_aux_dir as well) can be either absolute or relative, ++# depending on how configure is run. This is pretty annoying, since ++# it makes $ac_aux_dir quite unusable in subdirectories: in the top ++# source directory, any form will work fine, but in subdirectories a ++# relative path needs to be adjusted first. ++# ++# $ac_aux_dir/missing ++# fails when called from a subdirectory if $ac_aux_dir is relative ++# $top_srcdir/$ac_aux_dir/missing ++# fails if $ac_aux_dir is absolute, ++# fails when called from a subdirectory in a VPATH build with ++# a relative $ac_aux_dir ++# ++# The reason of the latter failure is that $top_srcdir and $ac_aux_dir ++# are both prefixed by $srcdir. In an in-source build this is usually ++# harmless because $srcdir is `.', but things will broke when you ++# start a VPATH build or use an absolute $srcdir. ++# ++# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, ++# iff we strip the leading $srcdir from $ac_aux_dir. That would be: ++# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` ++# and then we would define $MISSING as ++# MISSING="\${SHELL} $am_aux_dir/missing" ++# This will work as long as MISSING is not called from configure, because ++# unfortunately $(top_srcdir) has no meaning in configure. ++# However there are other variables, like CC, which are often used in ++# configure, and could therefore not use this "fixed" $ac_aux_dir. ++# ++# Another solution, used here, is to always expand $ac_aux_dir to an ++# absolute PATH. The drawback is that using absolute paths prevent a ++# configured tree to be moved without reconfiguration. + +-# Copyright 1996, 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. ++AC_DEFUN([AM_AUX_DIR_EXPAND], ++[dnl Rely on autoconf to set up CDPATH properly. ++AC_PREREQ([2.50])dnl ++# expand $ac_aux_dir to an absolute path ++am_aux_dir=`cd $ac_aux_dir && pwd` ++]) + +-# 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, 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. ++# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +-# 02111-1307, USA. ++# serial 4 + +-# serial 2 ++# This was merged into AC_PROG_CC in Autoconf. + +-# @defmac AC_PROG_CC_STDC +-# @maindex PROG_CC_STDC +-# @ovindex CC +-# If the C compiler in not in ANSI C mode by default, try to add an option +-# to output variable @code{CC} to make it so. This macro tries various +-# options that select ANSI C on some system or another. It considers the +-# compiler to be in ANSI C mode if it handles function prototypes correctly. +-# +-# If you use this macro, you should check after calling it whether the C +-# compiler has been set to accept ANSI C; if not, the shell variable +-# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source +-# code in ANSI C, you can make an un-ANSIfied copy of it by using the +-# program @code{ansi2knr}, which comes with Ghostscript. +-# @end defmac +- +-AC_DEFUN([AM_PROG_CC_STDC], +-[AC_REQUIRE([AC_PROG_CC]) +-AC_BEFORE([$0], [AC_C_INLINE]) +-AC_BEFORE([$0], [AC_C_CONST]) +-dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require +-dnl a magic option to avoid problems with ANSI preprocessor commands +-dnl like #elif. +-dnl FIXME: can't do this because then AC_AIX won't work due to a +-dnl circular dependency. +-dnl AC_BEFORE([$0], [AC_PROG_CPP]) +-AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C]) +-AC_CACHE_VAL(am_cv_prog_cc_stdc, +-[am_cv_prog_cc_stdc=no +-ac_save_CC="$CC" +-# Don't try gcc -ansi; that turns off useful extensions and +-# breaks some systems' header files. +-# AIX -qlanglvl=ansi +-# Ultrix and OSF/1 -std1 +-# HP-UX 10.20 and later -Ae +-# HP-UX older versions -Aa -D_HPUX_SOURCE +-# SVR4 -Xc -D__EXTENSIONS__ +-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +-do +- CC="$ac_save_CC $ac_arg" +- AC_TRY_COMPILE( +-[#include <stdarg.h> +-#include <stdio.h> +-#include <sys/types.h> +-#include <sys/stat.h> +-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +-struct buf { int x; }; +-FILE * (*rcsopen) (struct buf *, struct stat *, int); +-static char *e (p, i) +- char **p; +- int i; +-{ +- return p[i]; +-} +-static char *f (char * (*g) (char **, int), char **p, ...) +-{ +- char *s; +- va_list v; +- va_start (v,p); +- s = g (p, va_arg (v,int)); +- va_end (v); +- return s; +-} +-int test (int i, double x); +-struct s1 {int (*f) (int a);}; +-struct s2 {int (*f) (double a);}; +-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +-int argc; +-char **argv; +-], [ +-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; +-], +-[am_cv_prog_cc_stdc="$ac_arg"; break]) +-done +-CC="$ac_save_CC" +-]) +-if test -z "$am_cv_prog_cc_stdc"; then +- AC_MSG_RESULT([none needed]) +-else +- AC_MSG_RESULT([$am_cv_prog_cc_stdc]) +-fi +-case "x$am_cv_prog_cc_stdc" in +- x|xno) ;; +- *) CC="$CC $am_cv_prog_cc_stdc" ;; +-esac ++AU_DEFUN([AM_PROG_CC_STDC], ++[AC_PROG_CC ++AC_DIAGNOSE([obsolete], [$0: ++ your code should no longer depend upon `am_cv_prog_cc_stdc', but upon ++ `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when ++ you adjust the code. You can also remove the above call to ++ AC_PROG_CC if you already called it elsewhere.]) ++am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc + ]) ++AU_DEFUN([fp_PROG_CC_STDC]) + +-AU_DEFUN([fp_PROG_CC_STDC], [AM_PROG_CC_STDC]) ++# AM_CONDITIONAL -*- Autoconf -*- + +-# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +-# +-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>. +-# +-# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 ++# Free Software Foundation, Inc. + # +-# As a special exception to the GNU General Public License, if you +-# distribute this file as part of a program that contains a +-# configuration script generated by Autoconf, you may include it under +-# the same distribution terms that you use for the rest of that program. ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +-# ---------------------------------- +-AC_DEFUN([PKG_PROG_PKG_CONFIG], +-[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +-m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then +- AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) ++# serial 9 ++ ++# AM_CONDITIONAL(NAME, SHELL-CONDITION) ++# ------------------------------------- ++# Define a conditional. ++AC_DEFUN([AM_CONDITIONAL], ++[AC_PREREQ(2.52)dnl ++ ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], ++ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl ++AC_SUBST([$1_TRUE])dnl ++AC_SUBST([$1_FALSE])dnl ++_AM_SUBST_NOTMAKE([$1_TRUE])dnl ++_AM_SUBST_NOTMAKE([$1_FALSE])dnl ++m4_define([_AM_COND_VALUE_$1], [$2])dnl ++if $2; then ++ $1_TRUE= ++ $1_FALSE='#' ++else ++ $1_TRUE='#' ++ $1_FALSE= + fi +-if test -n "$PKG_CONFIG"; then +- _pkg_min_version=m4_default([$1], [0.9.0]) +- AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) +- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then +- AC_MSG_RESULT([yes]) +- else +- AC_MSG_RESULT([no]) +- PKG_CONFIG="" +- fi +- +-fi[]dnl +-])# PKG_PROG_PKG_CONFIG ++AC_CONFIG_COMMANDS_PRE( ++[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then ++ AC_MSG_ERROR([[conditional "$1" was never defined. ++Usually this means the macro was only invoked conditionally.]]) ++fi])]) + +-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +-# +-# Check to see whether a particular set of modules exists. Similar +-# to PKG_CHECK_MODULES(), but does not set variables or print errors. ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 ++# Free Software Foundation, Inc. + # ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# serial 10 ++ ++# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be ++# written in clear, in which case automake, when reading aclocal.m4, ++# will think it sees a *use*, and therefore will trigger all it's ++# C support machinery. Also note that it means that autoscan, seeing ++# CC etc. in the Makefile, will ask for an AC_PROG_CC use... ++ ++ ++# _AM_DEPENDENCIES(NAME) ++# ---------------------- ++# See how the compiler implements dependency checking. ++# NAME is "CC", "CXX", "GCJ", or "OBJC". ++# We try a few techniques and use that to set a single cache variable. + # +-# Similar to PKG_CHECK_MODULES, make sure that the first instance of +-# this or PKG_CHECK_MODULES is called, or make sure to call +-# PKG_CHECK_EXISTS manually +-# -------------------------------------------------------------- +-AC_DEFUN([PKG_CHECK_EXISTS], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +-if test -n "$PKG_CONFIG" && \ +- AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then +- m4_ifval([$2], [$2], [:]) +-m4_ifvaln([$3], [else +- $3])dnl +-fi]) ++# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was ++# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular ++# dependency, and given that the user is not expected to run this macro, ++# just rely on AC_PROG_CC. ++AC_DEFUN([_AM_DEPENDENCIES], ++[AC_REQUIRE([AM_SET_DEPDIR])dnl ++AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl ++AC_REQUIRE([AM_MAKE_INCLUDE])dnl ++AC_REQUIRE([AM_DEP_TRACK])dnl + ++ifelse([$1], CC, [depcc="$CC" am_compiler_list=], ++ [$1], CXX, [depcc="$CXX" am_compiler_list=], ++ [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], ++ [$1], UPC, [depcc="$UPC" am_compiler_list=], ++ [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], ++ [depcc="$$1" am_compiler_list=]) + +-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +-# --------------------------------------------- +-m4_define([_PKG_CONFIG], +-[if test -n "$$1"; then +- pkg_cv_[]$1="$$1" +- elif test -n "$PKG_CONFIG"; then +- PKG_CHECK_EXISTS([$3], +- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], +- [pkg_failed=yes]) +- else +- pkg_failed=untried +-fi[]dnl +-])# _PKG_CONFIG ++AC_CACHE_CHECK([dependency style of $depcc], ++ [am_cv_$1_dependencies_compiler_type], ++[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then ++ # We make a subdir and do the tests there. Otherwise we can end up ++ # making bogus files that we don't know about and never remove. For ++ # instance it was reported that on HP-UX the gcc test will end up ++ # making a dummy file named `D' -- because `-MD' means `put the output ++ # in D'. ++ mkdir conftest.dir ++ # Copy depcomp to subdir because otherwise we won't find it if we're ++ # using a relative directory. ++ cp "$am_depcomp" conftest.dir ++ cd conftest.dir ++ # We will build objects and dependencies in a subdirectory because ++ # it helps to detect inapplicable dependency modes. For instance ++ # both Tru64's cc and ICC support -MD to output dependencies as a ++ # side effect of compilation, but ICC will put the dependencies in ++ # the current directory while Tru64 will put them in the object ++ # directory. ++ mkdir sub + +-# _PKG_SHORT_ERRORS_SUPPORTED +-# ----------------------------- +-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes ++ am_cv_$1_dependencies_compiler_type=none ++ if test "$am_compiler_list" = ""; then ++ am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` ++ fi ++ am__universal=false ++ m4_case([$1], [CC], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac], ++ [CXX], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac]) ++ ++ for depmode in $am_compiler_list; do ++ # Setup a source with many dependencies, because some compilers ++ # like to wrap large dependency lists on column 80 (with \), and ++ # we should not choose a depcomp mode which is confused by this. ++ # ++ # We need to recreate these files for each test, as the compiler may ++ # overwrite some of them when testing with obscure command lines. ++ # This happens at least with the AIX C compiler. ++ : > sub/conftest.c ++ for i in 1 2 3 4 5 6; do ++ echo '#include "conftst'$i'.h"' >> sub/conftest.c ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h ++ done ++ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf ++ ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" ++ case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; ++ nosideeffect) ++ # after this tag, mechanisms are not by side-effect, so they'll ++ # only be used when explicitly requested ++ if test "x$enable_dependency_tracking" = xyes; then ++ continue ++ else ++ break ++ fi ++ ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; ++ none) break ;; ++ esac ++ if depmode=$depmode \ ++ source=sub/conftest.c object=$am__obj \ ++ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ++ # icc doesn't choke on unknown options, it will just issue warnings ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else ++ am_cv_$1_dependencies_compiler_type=$depmode ++ break ++ fi ++ fi ++ done ++ ++ cd .. ++ rm -rf conftest.dir + else +- _pkg_short_errors_supported=no +-fi[]dnl +-])# _PKG_SHORT_ERRORS_SUPPORTED ++ am_cv_$1_dependencies_compiler_type=none ++fi ++]) ++AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) ++AM_CONDITIONAL([am__fastdep$1], [ ++ test "x$enable_dependency_tracking" != xno \ ++ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ++]) + + +-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +-# [ACTION-IF-NOT-FOUND]) +-# +-# +-# Note that if there is a possibility the first call to +-# PKG_CHECK_MODULES might not happen, you should be sure to include an +-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +-# +-# +-# -------------------------------------------------------------- +-AC_DEFUN([PKG_CHECK_MODULES], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl ++# AM_SET_DEPDIR ++# ------------- ++# Choose a directory name for dependency files. ++# This macro is AC_REQUIREd in _AM_DEPENDENCIES ++AC_DEFUN([AM_SET_DEPDIR], ++[AC_REQUIRE([AM_SET_LEADING_DOT])dnl ++AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ++]) ++ ++ ++# AM_DEP_TRACK ++# ------------ ++AC_DEFUN([AM_DEP_TRACK], ++[AC_ARG_ENABLE(dependency-tracking, ++[ --disable-dependency-tracking speeds up one-time build ++ --enable-dependency-tracking do not reject slow dependency extractors]) ++if test "x$enable_dependency_tracking" != xno; then ++ am_depcomp="$ac_aux_dir/depcomp" ++ AMDEPBACKSLASH='\' ++fi ++AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) ++AC_SUBST([AMDEPBACKSLASH])dnl ++_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ++]) + +-pkg_failed=no +-AC_MSG_CHECKING([for $1]) ++# Generate code to set up dependency tracking. -*- Autoconf -*- + +-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +-_PKG_CONFIG([$1][_LIBS], [libs], [$2]) ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +-and $1[]_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details.]) ++#serial 5 + +-if test $pkg_failed = yes; then +- _PKG_SHORT_ERRORS_SUPPORTED +- if test $_pkg_short_errors_supported = yes; then +- $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` +- else +- $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ++# _AM_OUTPUT_DEPENDENCY_COMMANDS ++# ------------------------------ ++AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], ++[{ ++ # Autoconf 2.62 quotes --file arguments for eval, but not when files ++ # are listed without --file. Let's play safe and only enable the eval ++ # if we detect the quoting. ++ case $CONFIG_FILES in ++ *\'*) eval set x "$CONFIG_FILES" ;; ++ *) set x $CONFIG_FILES ;; ++ esac ++ shift ++ for mf ++ do ++ # Strip MF so we end up with the name of the file. ++ mf=`echo "$mf" | sed -e 's/:.*$//'` ++ # Check whether this is an Automake generated Makefile or not. ++ # We used to match only the files named `Makefile.in', but ++ # some people rename them; so instead we look at the file content. ++ # Grep'ing the first line is not enough: some people post-process ++ # each Makefile.in and add a new line on top of each file to say so. ++ # Grep'ing the whole file is not good either: AIX grep has a line ++ # limit of 2048, but all sed's we know have understand at least 4000. ++ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then ++ dirpart=`AS_DIRNAME("$mf")` ++ else ++ continue ++ fi ++ # Extract the definition of DEPDIR, am__include, and am__quote ++ # from the Makefile without running `make'. ++ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` ++ test -z "$DEPDIR" && continue ++ am__include=`sed -n 's/^am__include = //p' < "$mf"` ++ test -z "am__include" && continue ++ am__quote=`sed -n 's/^am__quote = //p' < "$mf"` ++ # When using ansi2knr, U may be empty or an underscore; expand it ++ U=`sed -n 's/^U = //p' < "$mf"` ++ # Find all dependency output files, they are included files with ++ # $(DEPDIR) in their names. We invoke sed twice because it is the ++ # simplest approach to changing $(DEPDIR) to its actual value in the ++ # expansion. ++ for file in `sed -n " ++ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ ++ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do ++ # Make sure the directory exists. ++ test -f "$dirpart/$file" && continue ++ fdir=`AS_DIRNAME(["$file"])` ++ AS_MKDIR_P([$dirpart/$fdir]) ++ # echo "creating $dirpart/$file" ++ echo '# dummy' > "$dirpart/$file" ++ done ++ done ++} ++])# _AM_OUTPUT_DEPENDENCY_COMMANDS + +- ifelse([$4], , [AC_MSG_ERROR(dnl +-[Package requirements ($2) were not met: + +-$$1_PKG_ERRORS ++# AM_OUTPUT_DEPENDENCY_COMMANDS ++# ----------------------------- ++# This macro should only be invoked once -- use via AC_REQUIRE. ++# ++# This code is only required when automatic dependency tracking ++# is enabled. FIXME. This creates each `.P' file that we will ++# need in order to bootstrap the dependency handling code. ++AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], ++[AC_CONFIG_COMMANDS([depfiles], ++ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], ++ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ++]) + +-Consider adjusting the PKG_CONFIG_PATH environment variable if you +-installed software in a non-standard prefix. ++# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-_PKG_TEXT +-])], +- [AC_MSG_RESULT([no]) +- $4]) +-elif test $pkg_failed = untried; then +- ifelse([$4], , [AC_MSG_FAILURE(dnl +-[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. ++# serial 8 + +-_PKG_TEXT ++# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. ++AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) + +-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])], +- [$4]) +-else +- $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS +- $1[]_LIBS=$pkg_cv_[]$1[]_LIBS +- AC_MSG_RESULT([yes]) +- ifelse([$3], , :, [$3]) +-fi[]dnl +-])# PKG_CHECK_MODULES ++# Do all the work for Automake. -*- Autoconf -*- + +-# Copyright (C) 1995-2002 Free Software Foundation, Inc. +-# Copyright (C) 2001-2003,2004 Red Hat, Inc. +-# +-# This file is free software, distributed under the terms of the GNU +-# General Public License. As a special exception to the GNU General +-# Public License, this file may be distributed as part of a program +-# that contains a configuration script generated by Autoconf, under +-# the same distribution terms as the rest of that program. +-# +-# This file can be copied and used freely without restrictions. It can +-# be used in projects which are not available under the GNU Public License +-# but which still want to provide support for the GNU gettext functionality. +-# +-# Macro to add for using GNU gettext. +-# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 +-# +-# Modified to never use included libintl. +-# Owen Taylor <otaylor@redhat.com>, 12/15/1998 +-# +-# Major rework to remove unused code +-# Owen Taylor <otaylor@redhat.com>, 12/11/2002 +-# +-# Added better handling of ALL_LINGUAS from GNU gettext version +-# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 +-# +-# Modified to require ngettext +-# Matthias Clasen <mclasen@redhat.com> 08/06/2004 ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ++# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. + # +-# We need this here as well, since someone might use autoconf-2.5x +-# to configure GLib then an older version to configure a package +-# using AM_GLIB_GNU_GETTEXT +-AC_PREREQ(2.53) ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-dnl +-dnl We go to great lengths to make sure that aclocal won't +-dnl try to pull in the installed version of these macros +-dnl when running aclocal in the glib directory. +-dnl +-m4_copy([AC_DEFUN],[glib_DEFUN]) +-m4_copy([AC_REQUIRE],[glib_REQUIRE]) +-dnl +-dnl At the end, if we're not within glib, we'll define the public +-dnl definitions in terms of our private definitions. +-dnl ++# serial 16 + +-# GLIB_LC_MESSAGES +-#-------------------- +-glib_DEFUN([GLIB_LC_MESSAGES], +- [AC_CHECK_HEADERS([locale.h]) +- if test $ac_cv_header_locale_h = yes; then +- AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, +- [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], +- am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) +- if test $am_cv_val_LC_MESSAGES = yes; then +- AC_DEFINE(HAVE_LC_MESSAGES, 1, +- [Define if your <locale.h> file defines LC_MESSAGES.]) +- fi +- fi]) ++# This macro actually does too much. Some checks are only needed if ++# your package does certain things. But this isn't really a big deal. + +-# GLIB_PATH_PROG_WITH_TEST +-#---------------------------- +-dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +-dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +-glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +-[# Extract the first word of "$2", so it can be a program name with args. +-set dummy $2; ac_word=[$]2 +-AC_MSG_CHECKING([for $ac_word]) +-AC_CACHE_VAL(ac_cv_path_$1, +-[case "[$]$1" in +- /*) +- ac_cv_path_$1="[$]$1" # Let the user override the test with a path. +- ;; +- *) +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" +- for ac_dir in ifelse([$5], , $PATH, [$5]); do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/$ac_word; then +- if [$3]; then +- ac_cv_path_$1="$ac_dir/$ac_word" +- break +- fi +- fi +- done +- IFS="$ac_save_ifs" +-dnl If no 4th arg is given, leave the cache variable unset, +-dnl so AC_PATH_PROGS will keep looking. +-ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +-])dnl +- ;; +-esac])dnl +-$1="$ac_cv_path_$1" +-if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then +- AC_MSG_RESULT([$]$1) +-else +- AC_MSG_RESULT(no) ++# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) ++# AM_INIT_AUTOMAKE([OPTIONS]) ++# ----------------------------------------------- ++# The call with PACKAGE and VERSION arguments is the old style ++# call (pre autoconf-2.50), which is being phased out. PACKAGE ++# and VERSION should now be passed to AC_INIT and removed from ++# the call to AM_INIT_AUTOMAKE. ++# We support both call styles for the transition. After ++# the next Automake release, Autoconf can make the AC_INIT ++# arguments mandatory, and then we can depend on a new Autoconf ++# release and drop the old call support. ++AC_DEFUN([AM_INIT_AUTOMAKE], ++[AC_PREREQ([2.62])dnl ++dnl Autoconf wants to disallow AM_ names. We explicitly allow ++dnl the ones we care about. ++m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl ++AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl ++AC_REQUIRE([AC_PROG_INSTALL])dnl ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ++ fi + fi +-AC_SUBST($1)dnl +-]) + +-# GLIB_WITH_NLS +-#----------------- +-glib_DEFUN([GLIB_WITH_NLS], +- dnl NLS is obligatory +- [USE_NLS=yes +- AC_SUBST(USE_NLS) ++# test whether we have cygpath ++if test -z "$CYGPATH_W"; then ++ if (cygpath --version) >/dev/null 2>/dev/null; then ++ CYGPATH_W='cygpath -w' ++ else ++ CYGPATH_W=echo ++ fi ++fi ++AC_SUBST([CYGPATH_W]) + +- gt_cv_have_gettext=no ++# Define the identity of the package. ++dnl Distinguish between old-style and new-style calls. ++m4_ifval([$2], ++[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl ++ AC_SUBST([PACKAGE], [$1])dnl ++ AC_SUBST([VERSION], [$2])], ++[_AM_SET_OPTIONS([$1])dnl ++dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. ++m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, ++ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl ++ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl ++ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl ++ ++_AM_IF_OPTION([no-define],, ++[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) ++ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl ++ ++# Some tools Automake needs. ++AC_REQUIRE([AM_SANITY_CHECK])dnl ++AC_REQUIRE([AC_ARG_PROGRAM])dnl ++AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) ++AM_MISSING_PROG(AUTOCONF, autoconf) ++AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) ++AM_MISSING_PROG(AUTOHEADER, autoheader) ++AM_MISSING_PROG(MAKEINFO, makeinfo) ++AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ++AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl ++AC_REQUIRE([AM_PROG_MKDIR_P])dnl ++# We need awk for the "check" target. The system "awk" is bad on ++# some platforms. ++AC_REQUIRE([AC_PROG_AWK])dnl ++AC_REQUIRE([AC_PROG_MAKE_SET])dnl ++AC_REQUIRE([AM_SET_LEADING_DOT])dnl ++_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], ++ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], ++ [_AM_PROG_TAR([v7])])]) ++_AM_IF_OPTION([no-dependencies],, ++[AC_PROVIDE_IFELSE([AC_PROG_CC], ++ [_AM_DEPENDENCIES(CC)], ++ [define([AC_PROG_CC], ++ defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl ++AC_PROVIDE_IFELSE([AC_PROG_CXX], ++ [_AM_DEPENDENCIES(CXX)], ++ [define([AC_PROG_CXX], ++ defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ++AC_PROVIDE_IFELSE([AC_PROG_OBJC], ++ [_AM_DEPENDENCIES(OBJC)], ++ [define([AC_PROG_OBJC], ++ defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ++]) ++_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl ++dnl The `parallel-tests' driver may need to know about EXEEXT, so add the ++dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro ++dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. ++AC_CONFIG_COMMANDS_PRE(dnl ++[m4_provide_if([_AM_COMPILER_EXEEXT], ++ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ++]) ++ ++dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not ++dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further ++dnl mangled by Autoconf and run in a shell conditional statement. ++m4_define([_AC_COMPILER_EXEEXT], ++m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) ++ ++ ++# When config.status generates a header, we must update the stamp-h file. ++# This file resides in the same directory as the config header ++# that is generated. The stamp files are numbered to have different names. ++ ++# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the ++# loop where config.status creates the headers, so we can generate ++# our stamp files there. ++AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ++[# Compute $1's index in $config_headers. ++_am_arg=$1 ++_am_stamp_count=1 ++for _am_header in $config_headers :; do ++ case $_am_header in ++ $_am_arg | $_am_arg:* ) ++ break ;; ++ * ) ++ _am_stamp_count=`expr $_am_stamp_count + 1` ;; ++ esac ++done ++echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +- CATOBJEXT=NONE +- XGETTEXT=: +- INTLLIBS= ++# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_CHECK_HEADER(libintl.h, +- [gt_cv_func_dgettext_libintl="no" +- libintl_extra_libs="" ++# AM_PROG_INSTALL_SH ++# ------------------ ++# Define $install_sh. ++AC_DEFUN([AM_PROG_INSTALL_SH], ++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++if test x"${install_sh}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; ++ *) ++ install_sh="\${SHELL} $am_aux_dir/install-sh" ++ esac ++fi ++AC_SUBST(install_sh)]) + +- # +- # First check in libc +- # +- AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, +- [AC_TRY_LINK([ +-#include <libintl.h> +-], +- [return !ngettext ("","", 1)], +- gt_cv_func_ngettext_libc=yes, +- gt_cv_func_ngettext_libc=no) +- ]) +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, +- [AC_TRY_LINK([ +-#include <libintl.h> +-], +- [return !dgettext ("","")], +- gt_cv_func_dgettext_libc=yes, +- gt_cv_func_dgettext_libc=no) +- ]) +- fi +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- AC_CHECK_FUNCS(bind_textdomain_codeset) +- fi ++# Copyright (C) 2003, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- # +- # If we don't have everything we want, check in libintl +- # +- if test "$gt_cv_func_dgettext_libc" != "yes" \ +- || test "$gt_cv_func_ngettext_libc" != "yes" \ +- || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then +- +- AC_CHECK_LIB(intl, bindtextdomain, +- [AC_CHECK_LIB(intl, ngettext, +- [AC_CHECK_LIB(intl, dgettext, +- gt_cv_func_dgettext_libintl=yes)])]) ++# serial 2 + +- if test "$gt_cv_func_dgettext_libintl" != "yes" ; then +- AC_MSG_CHECKING([if -liconv is needed to use gettext]) +- AC_MSG_RESULT([]) +- AC_CHECK_LIB(intl, ngettext, +- [AC_CHECK_LIB(intl, dcgettext, +- [gt_cv_func_dgettext_libintl=yes +- libintl_extra_libs=-liconv], +- :,-liconv)], +- :,-liconv) +- fi ++# Check whether the underlying file-system supports filenames ++# with a leading dot. For instance MS-DOS doesn't. ++AC_DEFUN([AM_SET_LEADING_DOT], ++[rm -rf .tst 2>/dev/null ++mkdir .tst 2>/dev/null ++if test -d .tst; then ++ am__leading_dot=. ++else ++ am__leading_dot=_ ++fi ++rmdir .tst 2>/dev/null ++AC_SUBST([am__leading_dot])]) + +- # +- # If we found libintl, then check in it for bind_textdomain_codeset(); +- # we'll prefer libc if neither have bind_textdomain_codeset(), +- # and both have dgettext and ngettext +- # +- if test "$gt_cv_func_dgettext_libintl" = "yes" ; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS -lintl $libintl_extra_libs" +- unset ac_cv_func_bind_textdomain_codeset +- AC_CHECK_FUNCS(bind_textdomain_codeset) +- LIBS="$glib_save_LIBS" ++# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- ++# From Jim Meyering + +- if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then +- gt_cv_func_dgettext_libc=no +- else +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- && test "$gt_cv_func_ngettext_libc" = "yes"; then +- gt_cv_func_dgettext_libintl=no +- fi +- fi +- fi +- fi ++# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- || test "$gt_cv_func_dgettext_libintl" = "yes"; then +- gt_cv_have_gettext=yes +- fi +- +- if test "$gt_cv_func_dgettext_libintl" = "yes"; then +- INTLLIBS="-lintl $libintl_extra_libs" +- fi +- +- if test "$gt_cv_have_gettext" = "yes"; then +- AC_DEFINE(HAVE_GETTEXT,1, +- [Define if the GNU gettext() function is already present or preinstalled.]) +- GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, +- [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl +- if test "$MSGFMT" != "no"; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS $INTLLIBS" +- AC_CHECK_FUNCS(dcgettext) +- MSGFMT_OPTS= +- AC_MSG_CHECKING([if msgfmt accepts -c]) +- GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ +-msgid "" +-msgstr "" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Project-Id-Version: test 1.0\n" +-"PO-Revision-Date: 2007-02-15 12:01+0100\n" +-"Last-Translator: test <foo@bar.xx>\n" +-"Language-Team: C <LL@li.org>\n" +-"MIME-Version: 1.0\n" +-"Content-Transfer-Encoding: 8bit\n" +-], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) +- AC_SUBST(MSGFMT_OPTS) +- AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) +- GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, +- [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) +- AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; +- return _nl_msg_cat_cntr], +- [CATOBJEXT=.gmo +- DATADIRNAME=share], +- [case $host in +- *-*-solaris*) +- dnl On Solaris, if bind_textdomain_codeset is in libc, +- dnl GNU format message catalog is always supported, +- dnl since both are added to the libc all together. +- dnl Hence, we'd like to go with DATADIRNAME=share and +- dnl and CATOBJEXT=.gmo in this case. +- AC_CHECK_FUNC(bind_textdomain_codeset, +- [CATOBJEXT=.gmo +- DATADIRNAME=share], +- [CATOBJEXT=.mo +- DATADIRNAME=lib]) +- ;; +- *) +- CATOBJEXT=.mo +- DATADIRNAME=lib +- ;; +- esac]) +- LIBS="$glib_save_LIBS" +- INSTOBJEXT=.mo +- else +- gt_cv_have_gettext=no +- fi +- fi +- ]) ++# serial 5 + +- if test "$gt_cv_have_gettext" = "yes" ; then +- AC_DEFINE(ENABLE_NLS, 1, +- [always defined to indicate that i18n is enabled]) +- fi ++# AM_MAINTAINER_MODE([DEFAULT-MODE]) ++# ---------------------------------- ++# Control maintainer-specific portions of Makefiles. ++# Default is to disable them, unless `enable' is passed literally. ++# For symmetry, `disable' may be passed as well. Anyway, the user ++# can override the default with the --enable/--disable switch. ++AC_DEFUN([AM_MAINTAINER_MODE], ++[m4_case(m4_default([$1], [disable]), ++ [enable], [m4_define([am_maintainer_other], [disable])], ++ [disable], [m4_define([am_maintainer_other], [enable])], ++ [m4_define([am_maintainer_other], [enable]) ++ m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) ++AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) ++ dnl maintainer-mode's default is 'disable' unless 'enable' is passed ++ AC_ARG_ENABLE([maintainer-mode], ++[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful ++ (and sometimes confusing) to the casual installer], ++ [USE_MAINTAINER_MODE=$enableval], ++ [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) ++ AC_MSG_RESULT([$USE_MAINTAINER_MODE]) ++ AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) ++ MAINT=$MAINTAINER_MODE_TRUE ++ AC_SUBST([MAINT])dnl ++] ++) + +- dnl Test whether we really found GNU xgettext. +- if test "$XGETTEXT" != ":"; then +- dnl If it is not GNU xgettext we define it as : so that the +- dnl Makefiles still can work. +- if $XGETTEXT --omit-header /dev/null 2> /dev/null; then +- : ; +- else +- AC_MSG_RESULT( +- [found xgettext program is not GNU xgettext; ignore it]) +- XGETTEXT=":" +- fi +- fi ++AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + +- # We need to process the po/ directory. +- POSUB=po ++# Check to see how 'make' treats includes. -*- Autoconf -*- + +- AC_OUTPUT_COMMANDS( +- [case "$CONFIG_FILES" in *po/Makefile.in*) +- sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile +- esac]) ++# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- dnl These rules are solely for the distribution goal. While doing this +- dnl we only have to keep exactly one list of the available catalogs +- dnl in configure.in. +- for lang in $ALL_LINGUAS; do +- GMOFILES="$GMOFILES $lang.gmo" +- POFILES="$POFILES $lang.po" +- done ++# serial 4 + +- dnl Make all variables we use known to autoconf. +- AC_SUBST(CATALOGS) +- AC_SUBST(CATOBJEXT) +- AC_SUBST(DATADIRNAME) +- AC_SUBST(GMOFILES) +- AC_SUBST(INSTOBJEXT) +- AC_SUBST(INTLLIBS) +- AC_SUBST(PO_IN_DATADIR_TRUE) +- AC_SUBST(PO_IN_DATADIR_FALSE) +- AC_SUBST(POFILES) +- AC_SUBST(POSUB) +- ]) ++# AM_MAKE_INCLUDE() ++# ----------------- ++# Check to see how make treats includes. ++AC_DEFUN([AM_MAKE_INCLUDE], ++[am_make=${MAKE-make} ++cat > confinc << 'END' ++am__doit: ++ @echo this is the am__doit target ++.PHONY: am__doit ++END ++# If we don't find an include directive, just comment out the code. ++AC_MSG_CHECKING([for style of include used by $am_make]) ++am__include="#" ++am__quote= ++_am_result=none ++# First try GNU make style include. ++echo "include confinc" > confmf ++# Ignore all kinds of additional output from `make'. ++case `$am_make -s -f confmf 2> /dev/null` in #( ++*the\ am__doit\ target*) ++ am__include=include ++ am__quote= ++ _am_result=GNU ++ ;; ++esac ++# Now try BSD make style include. ++if test "$am__include" = "#"; then ++ echo '.include "confinc"' > confmf ++ case `$am_make -s -f confmf 2> /dev/null` in #( ++ *the\ am__doit\ target*) ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ ;; ++ esac ++fi ++AC_SUBST([am__include]) ++AC_SUBST([am__quote]) ++AC_MSG_RESULT([$_am_result]) ++rm -f confinc confmf ++]) + +-# AM_GLIB_GNU_GETTEXT +-# ------------------- +-# Do checks necessary for use of gettext. If a suitable implementation +-# of gettext is found in either in libintl or in the C library, +-# it will set INTLLIBS to the libraries needed for use of gettext +-# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +-# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +-# on various variables needed by the Makefile.in.in installed by +-# glib-gettextize. +-dnl +-glib_DEFUN([GLIB_GNU_GETTEXT], +- [AC_REQUIRE([AC_PROG_CC])dnl +- AC_REQUIRE([AC_HEADER_STDC])dnl +- +- GLIB_LC_MESSAGES +- GLIB_WITH_NLS ++# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +- if test "$gt_cv_have_gettext" = "yes"; then +- if test "x$ALL_LINGUAS" = "x"; then +- LINGUAS= +- else +- AC_MSG_CHECKING(for catalogs to be installed) +- NEW_LINGUAS= +- for presentlang in $ALL_LINGUAS; do +- useit=no +- if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then +- desiredlanguages="$LINGUAS" +- else +- desiredlanguages="$ALL_LINGUAS" +- fi +- for desiredlang in $desiredlanguages; do +- # Use the presentlang catalog if desiredlang is +- # a. equal to presentlang, or +- # b. a variant of presentlang (because in this case, +- # presentlang can be used as a fallback for messages +- # which are not translated in the desiredlang catalog). +- case "$desiredlang" in +- "$presentlang"*) useit=yes;; +- esac +- done +- if test $useit = yes; then +- NEW_LINGUAS="$NEW_LINGUAS $presentlang" +- fi +- done +- LINGUAS=$NEW_LINGUAS +- AC_MSG_RESULT($LINGUAS) +- fi ++# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- dnl Construct list of names of catalog files to be constructed. +- if test -n "$LINGUAS"; then +- for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done +- fi +- fi ++# serial 6 + +- dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly +- dnl find the mkinstalldirs script in another subdir but ($top_srcdir). +- dnl Try to locate is. +- MKINSTALLDIRS= +- if test -n "$ac_aux_dir"; then +- MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" +- fi +- if test -z "$MKINSTALLDIRS"; then +- MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" +- fi +- AC_SUBST(MKINSTALLDIRS) ++# AM_MISSING_PROG(NAME, PROGRAM) ++# ------------------------------ ++AC_DEFUN([AM_MISSING_PROG], ++[AC_REQUIRE([AM_MISSING_HAS_RUN]) ++$1=${$1-"${am_missing_run}$2"} ++AC_SUBST($1)]) + +- dnl Generate list of files to be processed by xgettext which will +- dnl be included in po/Makefile. +- test -d po || mkdir po +- if test "x$srcdir" != "x."; then +- if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then +- posrcprefix="$srcdir/" +- else +- posrcprefix="../$srcdir/" +- fi +- else +- posrcprefix="../" +- fi +- rm -f po/POTFILES +- sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ +- < $srcdir/po/POTFILES.in > po/POTFILES +- ]) + +-# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +-# ------------------------------- +-# Define VARIABLE to the location where catalog files will +-# be installed by po/Makefile. +-glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +-[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +-glib_save_prefix="$prefix" +-glib_save_exec_prefix="$exec_prefix" +-glib_save_datarootdir="$datarootdir" +-test "x$prefix" = xNONE && prefix=$ac_default_prefix +-test "x$exec_prefix" = xNONE && exec_prefix=$prefix +-datarootdir=`eval echo "${datarootdir}"` +-if test "x$CATOBJEXT" = "x.mo" ; then +- localedir=`eval echo "${libdir}/locale"` ++# AM_MISSING_HAS_RUN ++# ------------------ ++# Define MISSING if not defined so far and test if it supports --run. ++# If it does, set am_missing_run to use it, otherwise, to nothing. ++AC_DEFUN([AM_MISSING_HAS_RUN], ++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++AC_REQUIRE_AUX_FILE([missing])dnl ++if test x"${MISSING+set}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; ++ *) ++ MISSING="\${SHELL} $am_aux_dir/missing" ;; ++ esac ++fi ++# Use eval to expand $SHELL ++if eval "$MISSING --run true"; then ++ am_missing_run="$MISSING --run " + else +- localedir=`eval echo "${datadir}/locale"` ++ am_missing_run= ++ AC_MSG_WARN([`missing' script is too old or missing]) + fi +-prefix="$glib_save_prefix" +-exec_prefix="$glib_save_exec_prefix" +-datarootdir="$glib_save_datarootdir" +-AC_DEFINE_UNQUOTED($1, "$localedir", +- [Define the location where the catalogs will be installed]) + ]) + +-dnl +-dnl Now the definitions that aclocal will find +-dnl +-ifdef(glib_configure_in,[],[ +-AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +-AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +-])dnl ++# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) +-# +-# Create a temporary file with TEST-FILE as its contents and pass the +-# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with +-# 0 and perform ACTION-IF-FAIL for any other exit status. +-AC_DEFUN([GLIB_RUN_PROG], +-[cat >conftest.foo <<_ACEOF +-$2 +-_ACEOF +-if AC_RUN_LOG([$1 conftest.foo]); then +- m4_ifval([$3], [$3], [:]) +-m4_ifvaln([$4], [else $4])dnl +-echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD +-sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD +-fi]) ++# AM_PROG_MKDIR_P ++# --------------- ++# Check for `mkdir -p'. ++AC_DEFUN([AM_PROG_MKDIR_P], ++[AC_PREREQ([2.60])dnl ++AC_REQUIRE([AC_PROG_MKDIR_P])dnl ++dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, ++dnl while keeping a definition of mkdir_p for backward compatibility. ++dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. ++dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of ++dnl Makefile.ins that do not define MKDIR_P, so we do our own ++dnl adjustment using top_builddir (which is defined more often than ++dnl MKDIR_P). ++AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl ++case $mkdir_p in ++ [[\\/$]]* | ?:[[\\/]]*) ;; ++ */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ++esac ++]) + ++# Helper functions for option handling. -*- Autoconf -*- + +-# Configure paths for GLIB +-# Owen Taylor 1997-2001 ++# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) +-dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject, +-dnl gthread, or gio is specified in MODULES, pass to pkg-config +-dnl +-AC_DEFUN([AM_PATH_GLIB_2_0], +-[dnl +-dnl Get the cflags and libraries from pkg-config +-dnl +-AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program], +- , enable_glibtest=yes) ++# serial 4 + +- pkg_config_args=glib-2.0 +- for module in . $4 +- do +- case "$module" in +- gmodule) +- pkg_config_args="$pkg_config_args gmodule-2.0" +- ;; +- gmodule-no-export) +- pkg_config_args="$pkg_config_args gmodule-no-export-2.0" +- ;; +- gobject) +- pkg_config_args="$pkg_config_args gobject-2.0" +- ;; +- gthread) +- pkg_config_args="$pkg_config_args gthread-2.0" +- ;; +- gio*) +- pkg_config_args="$pkg_config_args $module-2.0" +- ;; +- esac +- done ++# _AM_MANGLE_OPTION(NAME) ++# ----------------------- ++AC_DEFUN([_AM_MANGLE_OPTION], ++[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +- PKG_PROG_PKG_CONFIG([0.16]) ++# _AM_SET_OPTION(NAME) ++# ------------------------------ ++# Set option NAME. Presently that only means defining a flag for this option. ++AC_DEFUN([_AM_SET_OPTION], ++[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +- no_glib="" ++# _AM_SET_OPTIONS(OPTIONS) ++# ---------------------------------- ++# OPTIONS is a space-separated list of Automake options. ++AC_DEFUN([_AM_SET_OPTIONS], ++[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +- if test "x$PKG_CONFIG" = x ; then +- no_glib=yes +- PKG_CONFIG=no +- fi ++# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) ++# ------------------------------------------- ++# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. ++AC_DEFUN([_AM_IF_OPTION], ++[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) ++ ++# Check to make sure that the build environment is sane. -*- Autoconf -*- ++ ++# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# serial 5 ++ ++# AM_SANITY_CHECK ++# --------------- ++AC_DEFUN([AM_SANITY_CHECK], ++[AC_MSG_CHECKING([whether build environment is sane]) ++# Just in case ++sleep 1 ++echo timestamp > conftest.file ++# Reject unsafe characters in $srcdir or the absolute working directory ++# name. Accept space and tab only in the latter. ++am_lf=' ++' ++case `pwd` in ++ *[[\\\"\#\$\&\'\`$am_lf]]*) ++ AC_MSG_ERROR([unsafe absolute working directory name]);; ++esac ++case $srcdir in ++ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) ++ AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; ++esac ++ ++# Do `set' in a subshell so we don't clobber the current shell's ++# arguments. Must try -L first in case configure is actually a ++# symlink; some systems play weird games with the mod time of symlinks ++# (eg FreeBSD returns the mod time of the symlink's containing ++# directory). ++if ( ++ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` ++ if test "$[*]" = "X"; then ++ # -L didn't work. ++ set X `ls -t "$srcdir/configure" conftest.file` ++ fi ++ rm -f conftest.file ++ if test "$[*]" != "X $srcdir/configure conftest.file" \ ++ && test "$[*]" != "X conftest.file $srcdir/configure"; then ++ ++ # If neither matched, then we have a broken ls. This can happen ++ # if, for instance, CONFIG_SHELL is bash and it inherits a ++ # broken ls alias from the environment. This has actually ++ # happened. Such a system could not be considered "sane". ++ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken ++alias in your environment]) ++ fi + +- min_glib_version=ifelse([$1], ,2.0.0,$1) +- AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) ++ test "$[2]" = conftest.file ++ ) ++then ++ # Ok. ++ : ++else ++ AC_MSG_ERROR([newly created file is older than distributed files! ++Check your system clock]) ++fi ++AC_MSG_RESULT(yes)]) + +- if test x$PKG_CONFIG != xno ; then +- ## don't try to run the test against uninstalled libtool libs +- if $PKG_CONFIG --uninstalled $pkg_config_args; then +- echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" +- enable_glibtest=no +- fi ++# Copyright (C) 2009 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then +- : +- else +- no_glib=yes +- fi +- fi ++# serial 1 + +- if test x"$no_glib" = x ; then +- GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` +- GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` +- GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` ++# AM_SILENT_RULES([DEFAULT]) ++# -------------------------- ++# Enable less verbose build rules; with the default set to DEFAULT ++# (`yes' being less verbose, `no' or empty being verbose). ++AC_DEFUN([AM_SILENT_RULES], ++[AC_ARG_ENABLE([silent-rules], ++[ --enable-silent-rules less verbose build output (undo: `make V=1') ++ --disable-silent-rules verbose build output (undo: `make V=0')]) ++case $enable_silent_rules in ++yes) AM_DEFAULT_VERBOSITY=0;; ++no) AM_DEFAULT_VERBOSITY=1;; ++*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; ++esac ++AC_SUBST([AM_DEFAULT_VERBOSITY])dnl ++AM_BACKSLASH='\' ++AC_SUBST([AM_BACKSLASH])dnl ++_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ++]) + +- GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` +- GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` +- glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` +- glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` +- glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` +- if test "x$enable_glibtest" = "xyes" ; then +- ac_save_CFLAGS="$CFLAGS" +- ac_save_LIBS="$LIBS" +- CFLAGS="$CFLAGS $GLIB_CFLAGS" +- LIBS="$GLIB_LIBS $LIBS" +-dnl +-dnl Now check if the installed GLIB is sufficiently new. (Also sanity +-dnl checks the results of pkg-config to some extent) +-dnl +- rm -f conf.glibtest +- AC_TRY_RUN([ +-#include <glib.h> +-#include <stdio.h> +-#include <stdlib.h> ++# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-int +-main () +-{ +- int major, minor, micro; +- char *tmp_version; +- int ignored; ++# AM_PROG_INSTALL_STRIP ++# --------------------- ++# One issue with vendor `install' (even GNU) is that you can't ++# specify the program used to strip binaries. This is especially ++# annoying in cross-compiling environments, where the build's strip ++# is unlikely to handle the host's binaries. ++# Fortunately install-sh will honor a STRIPPROG variable, so we ++# always use install-sh in `make install-strip', and initialize ++# STRIPPROG with the value of the STRIP variable (set by the user). ++AC_DEFUN([AM_PROG_INSTALL_STRIP], ++[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ++# Installed binaries are usually stripped using `strip' when the user ++# run `make install-strip'. However `strip' might not be the right ++# tool to use in cross-compilation environments, therefore Automake ++# will honor the `STRIP' environment variable to overrule this program. ++dnl Don't test for $cross_compiling = yes, because it might be `maybe'. ++if test "$cross_compiling" != no; then ++ AC_CHECK_TOOL([STRIP], [strip], :) ++fi ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ++AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +- ignored = system ("touch conf.glibtest"); ++# Copyright (C) 2006, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- /* HP/UX 9 (%@#!) writes to sscanf strings */ +- tmp_version = g_strdup("$min_glib_version"); +- if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { +- printf("%s, bad version string\n", "$min_glib_version"); +- exit(1); +- } ++# serial 2 + +- if ((glib_major_version != $glib_config_major_version) || +- (glib_minor_version != $glib_config_minor_version) || +- (glib_micro_version != $glib_config_micro_version)) +- { +- printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", +- $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, +- glib_major_version, glib_minor_version, glib_micro_version); +- printf ("*** was found! If pkg-config was correct, then it is best\n"); +- printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); +- printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); +- printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); +- printf("*** required on your system.\n"); +- printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); +- printf("*** to point to the correct configuration files\n"); +- } +- else if ((glib_major_version != GLIB_MAJOR_VERSION) || +- (glib_minor_version != GLIB_MINOR_VERSION) || +- (glib_micro_version != GLIB_MICRO_VERSION)) +- { +- printf("*** GLIB header files (version %d.%d.%d) do not match\n", +- GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); +- printf("*** library (version %d.%d.%d)\n", +- glib_major_version, glib_minor_version, glib_micro_version); +- } +- else +- { +- if ((glib_major_version > major) || +- ((glib_major_version == major) && (glib_minor_version > minor)) || +- ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) +- { +- return 0; +- } +- else +- { +- printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", +- glib_major_version, glib_minor_version, glib_micro_version); +- printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", +- major, minor, micro); +- printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); +- printf("***\n"); +- printf("*** If you have already installed a sufficiently new version, this error\n"); +- printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); +- printf("*** being found. The easiest way to fix this is to remove the old version\n"); +- printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); +- printf("*** correct copy of pkg-config. (In this case, you will have to\n"); +- printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); +- printf("*** so that the correct libraries are found at run-time))\n"); +- } +- } +- return 1; +-} +-],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) +- CFLAGS="$ac_save_CFLAGS" +- LIBS="$ac_save_LIBS" +- fi +- fi +- if test "x$no_glib" = x ; then +- AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)) +- ifelse([$2], , :, [$2]) +- else +- AC_MSG_RESULT(no) +- if test "$PKG_CONFIG" = "no" ; then +- echo "*** A new enough version of pkg-config was not found." +- echo "*** See http://www.freedesktop.org/software/pkgconfig/" +- else +- if test -f conf.glibtest ; then +- : +- else +- echo "*** Could not run GLIB test program, checking why..." +- ac_save_CFLAGS="$CFLAGS" +- ac_save_LIBS="$LIBS" +- CFLAGS="$CFLAGS $GLIB_CFLAGS" +- LIBS="$LIBS $GLIB_LIBS" +- AC_TRY_LINK([ +-#include <glib.h> +-#include <stdio.h> +-], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ], +- [ echo "*** The test program compiled, but did not run. This usually means" +- echo "*** that the run-time linker is not finding GLIB or finding the wrong" +- echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" +- echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" +- echo "*** to the installed location Also, make sure you have run ldconfig if that" +- echo "*** is required on your system" +- echo "***" +- echo "*** If you have an old version installed, it is best to remove it, although" +- echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], +- [ echo "*** The test program failed to compile or link. See the file config.log for the" +- echo "*** exact error that occured. This usually means GLIB is incorrectly installed."]) +- CFLAGS="$ac_save_CFLAGS" +- LIBS="$ac_save_LIBS" +- fi +- fi +- GLIB_CFLAGS="" +- GLIB_LIBS="" +- GLIB_GENMARSHAL="" +- GOBJECT_QUERY="" +- GLIB_MKENUMS="" +- ifelse([$3], , :, [$3]) +- fi +- AC_SUBST(GLIB_CFLAGS) +- AC_SUBST(GLIB_LIBS) +- AC_SUBST(GLIB_GENMARSHAL) +- AC_SUBST(GOBJECT_QUERY) +- AC_SUBST(GLIB_MKENUMS) +- rm -f conf.glibtest +-]) ++# _AM_SUBST_NOTMAKE(VARIABLE) ++# --------------------------- ++# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. ++# This macro is traced by Automake. ++AC_DEFUN([_AM_SUBST_NOTMAKE]) + +-dnl -*- mode: autoconf -*- ++# AM_SUBST_NOTMAKE(VARIABLE) ++# --------------------------- ++# Public sister of _AM_SUBST_NOTMAKE. ++AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +-# serial 1 ++# Check how to create a tarball. -*- Autoconf -*- + +-dnl Usage: +-dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) +-AC_DEFUN([GTK_DOC_CHECK], +-[ +- AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first +- AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first +- dnl for overriding the documentation installation directory +- AC_ARG_WITH([html-dir], +- AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, +- [with_html_dir='${datadir}/gtk-doc/html']) +- HTML_DIR="$with_html_dir" +- AC_SUBST([HTML_DIR]) ++# Copyright (C) 2004, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- dnl enable/disable documentation building +- AC_ARG_ENABLE([gtk-doc], +- AS_HELP_STRING([--enable-gtk-doc], +- [use gtk-doc to build documentation [[default=no]]]),, +- [enable_gtk_doc=no]) ++# serial 2 + +- if test x$enable_gtk_doc = xyes; then +- ifelse([$1],[], +- [PKG_CHECK_EXISTS([gtk-doc],, +- AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], +- [PKG_CHECK_EXISTS([gtk-doc >= $1],, +- AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))]) +- fi ++# _AM_PROG_TAR(FORMAT) ++# -------------------- ++# Check how to create a tarball in format FORMAT. ++# FORMAT should be one of `v7', `ustar', or `pax'. ++# ++# Substitute a variable $(am__tar) that is a command ++# writing to stdout a FORMAT-tarball containing the directory ++# $tardir. ++# tardir=directory && $(am__tar) > result.tar ++# ++# Substitute a variable $(am__untar) that extract such ++# a tarball read from stdin. ++# $(am__untar) < result.tar ++AC_DEFUN([_AM_PROG_TAR], ++[# Always define AMTAR for backward compatibility. ++AM_MISSING_PROG([AMTAR], [tar]) ++m4_if([$1], [v7], ++ [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], ++ [m4_case([$1], [ustar],, [pax],, ++ [m4_fatal([Unknown tar format])]) ++AC_MSG_CHECKING([how to create a $1 tar archive]) ++# Loop over all known methods to create a tar archive until one works. ++_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' ++_am_tools=${am_cv_prog_tar_$1-$_am_tools} ++# Do not fold the above two line into one, because Tru64 sh and ++# Solaris sh will not grok spaces in the rhs of `-'. ++for _am_tool in $_am_tools ++do ++ case $_am_tool in ++ gnutar) ++ for _am_tar in tar gnutar gtar; ++ do ++ AM_RUN_LOG([$_am_tar --version]) && break ++ done ++ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' ++ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' ++ am__untar="$_am_tar -xf -" ++ ;; ++ plaintar) ++ # Must skip GNU tar: if it does not support --format= it doesn't create ++ # ustar tarball either. ++ (tar --version) >/dev/null 2>&1 && continue ++ am__tar='tar chf - "$$tardir"' ++ am__tar_='tar chf - "$tardir"' ++ am__untar='tar xf -' ++ ;; ++ pax) ++ am__tar='pax -L -x $1 -w "$$tardir"' ++ am__tar_='pax -L -x $1 -w "$tardir"' ++ am__untar='pax -r' ++ ;; ++ cpio) ++ am__tar='find "$$tardir" -print | cpio -o -H $1 -L' ++ am__tar_='find "$tardir" -print | cpio -o -H $1 -L' ++ am__untar='cpio -i -H $1 -d' ++ ;; ++ none) ++ am__tar=false ++ am__tar_=false ++ am__untar=false ++ ;; ++ esac + +- AC_MSG_CHECKING([whether to build gtk-doc documentation]) +- AC_MSG_RESULT($enable_gtk_doc) ++ # If the value was cached, stop now. We just wanted to have am__tar ++ # and am__untar set. ++ test -n "${am_cv_prog_tar_$1}" && break + +- AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,) ++ # tar/untar a dummy directory, and stop if the command works ++ rm -rf conftest.dir ++ mkdir conftest.dir ++ echo GrepMe > conftest.dir/file ++ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) ++ rm -rf conftest.dir ++ if test -s conftest.tar; then ++ AM_RUN_LOG([$am__untar <conftest.tar]) ++ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break ++ fi ++done ++rm -rf conftest.dir + +- AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) +- AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) +-]) ++AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) ++AC_MSG_RESULT([$am_cv_prog_tar_$1])]) ++AC_SUBST([am__tar]) ++AC_SUBST([am__untar]) ++]) # _AM_PROG_TAR + ++m4_include([acinclude.m4]) +diff -Nur gtk+2.0-2.17.10/config.h.in gtk+2.0-2.17.10.ubuntu/config.h.in +--- gtk+2.0-2.17.10/config.h.in 2009-09-01 06:02:46.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/config.h.in 2009-09-01 18:43:59.000000000 +0200 +@@ -232,6 +232,9 @@ + /* Define to the one symbol short name of this package. */ + #undef PACKAGE_TARNAME + ++/* Define to the home page for this package. */ ++#undef PACKAGE_URL ++ + /* Define to the version of this package. */ + #undef PACKAGE_VERSION + +diff -Nur gtk+2.0-2.17.10/configure gtk+2.0-2.17.10.ubuntu/configure +--- gtk+2.0-2.17.10/configure 2009-09-01 06:03:03.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/configure 2009-09-01 18:45:12.000000000 +0200 +@@ -1,20 +1,22 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.63 for gtk+ 2.17.10. ++# Generated by GNU Autoconf 2.64 for gtk+ 2.17.10. + # + # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B>. + # + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software ++# Foundation, Inc. ++# + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++## -------------------- ## ++## 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 ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +@@ -22,23 +24,15 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- + as_nl=' + ' + export as_nl +@@ -46,7 +40,13 @@ + as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' + else +@@ -57,7 +57,7 @@ + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; +- case $arg in ++ case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +@@ -80,13 +80,6 @@ + } + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- + + # IFS + # We need space, tab and new line, in precisely that order. Quoting is +@@ -96,15 +89,15 @@ + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -116,12 +109,16 @@ + fi + if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' +@@ -133,330 +130,301 @@ + LANGUAGE=C + export LANGUAGE + +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then +- as_basename=basename +-else +- as_basename=false +-fi +- +- +-# Name of the executable. +-as_me=`$as_basename -- "$0" || +-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- + # CDPATH. +-$as_unset CDPATH +- ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + if test "x$CONFIG_SHELL" = x; then +- if (eval ":") 2>/dev/null; then +- as_have_required=yes ++ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : ++ emulate sh ++ NULLCMD=: ++ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '\${1+\"\$@\"}'='\"\$@\"' ++ setopt NO_GLOB_SUBST + else +- as_have_required=no ++ case \`(set -o) 2>/dev/null\` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; ++esac + fi +- +- if test $as_have_required = yes && (eval ": +-(as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++" ++ as_required="as_fn_return () { (exit \$1); } ++as_fn_success () { as_fn_return 0; } ++as_fn_failure () { as_fn_return 1; } ++as_fn_ret_success () { return 0; } ++as_fn_ret_failure () { return 1; } + + exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. +-fi +- +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++as_fn_success || { exitcode=1; echo as_fn_success failed.; } ++as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } ++as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } ++as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } ++if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : ++ ++else ++ exitcode=1; echo positional parameters were not saved. ++fi ++test x\$exitcode = x0 || exit 1" ++ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO ++ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO ++ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && ++ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 ++test \$(( 1 + 1 )) = 2 || exit 1" ++ if (eval "$as_required") 2>/dev/null; then : ++ as_have_required=yes + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_have_required=no + fi ++ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +-test \$exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=\$LINENO +- as_lineno_2=\$LINENO +- test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && +- test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } +-") 2> /dev/null; then +- : + else +- as_candidate_shells= +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++as_found=false + for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- case $as_dir in ++ as_found=: ++ case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do +- as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ++ # Try only shells that exist, to save several forks. ++ as_shell=$as_dir/$as_base ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ CONFIG_SHELL=$as_shell as_have_required=yes ++ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ break 2 ++fi ++fi + done;; + esac ++ as_found=false + done ++$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : ++ CONFIG_SHELL=$SHELL as_have_required=yes ++fi; } + IFS=$as_save_IFS + + +- for as_shell in $as_candidate_shells $SHELL; do +- # 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=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-_ASEOF +-}; then +- 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=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-(as_func_return () { +- (exit $1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} +- +-exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. +-fi +- +-if ( set x; as_func_ret_success y && test x = "$1" ); then +- : +-else +- exitcode=1 +- echo positional parameters were not saved. +-fi +- +-test $exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } +- +-_ASEOF +-}; then +- break +-fi +- +-fi +- +- done +- +- if test "x$CONFIG_SHELL" != x; then +- for as_var in BASH_ENV ENV +- do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- done ++ if test "x$CONFIG_SHELL" != x; then : ++ # 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. ++ 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+"$@"} + fi + +- +- if test $as_have_required = no; then +- echo This script requires a shell more modern than all the +- echo shells that I found on your system. Please install a +- echo modern shell, or manually run the script under such a +- echo shell if you do have one. +- { (exit 1); exit 1; } ++ if test x$as_have_required = xno; then : ++ $as_echo "$0: This script requires a shell more modern than all" ++ $as_echo "$0: the shells that I found on your system." ++ if test x${ZSH_VERSION+set} = xset ; then ++ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" ++ $as_echo "$0: be upgraded to zsh 4.3.4 or later." ++ else ++ $as_echo "$0: Please tell bug-autoconf@gnu.org and ++$0: http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ++$0: about your system, including any error possibly output ++$0: before this message. Then install a modern shell, or ++$0: manually run the script under such a shell if you do ++$0: have one." ++ fi ++ exit 1 + fi +- +- + fi +- + fi ++SHELL=${CONFIG_SHELL-/bin/sh} ++export SHELL ++# Unset more variables known to interfere with behavior of common tools. ++CLICOLOR_FORCE= GREP_OPTIONS= ++unset CLICOLOR_FORCE GREP_OPTIONS ++ ++## --------------------- ## ++## M4sh Shell Functions. ## ++## --------------------- ## ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ + ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +-(eval "as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++} # as_fn_mkdir_p ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append + +-exitcode=0 +-if as_func_success; then +- : ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' + else +- exitcode=1 +- echo as_func_success failed. +-fi ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith + +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi + +-if as_func_ret_success; then +- : ++# as_fn_error ERROR [LINENO LOG_FD] ++# --------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with status $?, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$?; test $as_status -eq 0 && as_status=1 ++ if test "$3"; then ++ as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 ++ fi ++ $as_echo "$as_me: error: $1" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr + else +- exitcode=1 +- echo as_func_ret_success failed. ++ as_expr=false + fi + +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename ++else ++ as_basename=false + fi + +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_dirname=false + fi + +-test \$exitcode = 0") || { +- echo No shell found that supports shell functions. +- echo Please tell bug-autoconf@gnu.org about your system, +- echo including any error possibly output before this message. +- echo This can help us improve future autoconf versions. +- echo Configuration will now proceed without shell functions. +-} ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` + ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) ++ as_lineno_1=$LINENO as_lineno_1a=$LINENO ++ as_lineno_2=$LINENO as_lineno_2a=$LINENO ++ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && ++ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { ++ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= +@@ -473,8 +441,7 @@ + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the +@@ -484,29 +451,18 @@ + exit + } + +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi +- + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi + + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then +@@ -536,7 +492,7 @@ + rmdir conf$$.dir 2>/dev/null + + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +@@ -555,10 +511,10 @@ + if test -d "$1"; then + test -d "$1/."; + else +- case $1 in ++ case $1 in #( + -*)set "./$1";; + esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +@@ -573,7 +529,6 @@ + + + +- + # Check that we are running under the correct shell. + SHELL=${CONFIG_SHELL-/bin/sh} + +@@ -740,7 +695,6 @@ + subdirs= + MFLAGS= + MAKEFLAGS= +-SHELL=${CONFIG_SHELL-/bin/sh} + + # Identity of this package. + PACKAGE_NAME='gtk+' +@@ -748,6 +702,7 @@ + PACKAGE_VERSION='2.17.10' + PACKAGE_STRING='gtk+ 2.17.10' + PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B' ++PACKAGE_URL='' + + ac_unique_file="gdk/gdktypes.h" + # Factoring default headers for most tests. +@@ -786,7 +741,9 @@ + # include <unistd.h> + #endif" + +-ac_subst_vars='LTLIBOBJS ++ac_subst_vars='am__EXEEXT_FALSE ++am__EXEEXT_TRUE ++LTLIBOBJS + LIBOBJS + ENABLE_MAN_FALSE + ENABLE_MAN_TRUE +@@ -837,6 +794,7 @@ + GDK_DEP_LIBS + GDK_EXTRA_CFLAGS + GDK_EXTRA_LIBS ++GDK_PRIVATE_PACKAGES + GDK_PACKAGES + USE_DIRECTFB_FALSE + USE_DIRECTFB_TRUE +@@ -1004,6 +962,9 @@ + MAINT + MAINTAINER_MODE_FALSE + MAINTAINER_MODE_TRUE ++am__fastdepCCAS_FALSE ++am__fastdepCCAS_TRUE ++CCASDEPMODE + CCASFLAGS + CCAS + CXXCPP +@@ -1039,6 +1000,8 @@ + CXXFLAGS + ac_ct_CXX + CXX ++ENABLE_STATIC_FALSE ++ENABLE_STATIC_TRUE + am__fastdepCC_FALSE + am__fastdepCC_TRUE + CCDEPMODE +@@ -1081,13 +1044,19 @@ + GTK_MICRO_VERSION + GTK_MINOR_VERSION + GTK_MAJOR_VERSION ++AM_BACKSLASH ++AM_DEFAULT_VERBOSITY ++am__untar ++am__tar ++AMTAR + am__leading_dot + SET_MAKE + AWK ++mkdir_p ++MKDIR_P + INSTALL_STRIP_PROGRAM + STRIP + install_sh +-AMTAR + MAKEINFO + AUTOHEADER + AUTOMAKE +@@ -1096,6 +1065,7 @@ + VERSION + PACKAGE + CYGPATH_W ++am__isrc + INSTALL_DATA + INSTALL_SCRIPT + INSTALL_PROGRAM +@@ -1129,6 +1099,7 @@ + program_transform_name + prefix + exec_prefix ++PACKAGE_URL + PACKAGE_BUGREPORT + PACKAGE_STRING + PACKAGE_VERSION +@@ -1139,6 +1110,7 @@ + ac_subst_files='' + ac_user_opts=' + enable_option_checking ++enable_silent_rules + enable_dependency_tracking + enable_static + enable_shared +@@ -1188,6 +1160,8 @@ + CCC + CPP + CXXCPP ++CCAS ++CCASFLAGS + PKG_CONFIG + BASE_DEPENDENCIES_CFLAGS + BASE_DEPENDENCIES_LIBS +@@ -1304,8 +1278,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1331,8 +1304,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1536,8 +1508,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1553,8 +1524,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1584,17 +1554,17 @@ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { $as_echo "$as_me: error: unrecognized option: $ac_option +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ++ -*) as_fn_error "unrecognized option: \`$ac_option' ++Try \`$0 --help' for more information." + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. +- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 +- { (exit 1); exit 1; }; } ++ case $ac_envvar in #( ++ '' | [0-9]* | *[!_$as_cr_alnum]* ) ++ as_fn_error "invalid variable name: \`$ac_envvar'" ;; ++ esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + +@@ -1611,15 +1581,13 @@ + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { $as_echo "$as_me: error: missing argument to $ac_option" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "missing argument to $ac_option" + fi + + if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; +- fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 +- { (exit 1); exit 1; }; } ;; ++ fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac + fi +@@ -1642,8 +1610,7 @@ + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac +- { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" + done + + # There might be people who depend on the old broken behavior: `$host' +@@ -1673,11 +1640,9 @@ + ac_pwd=`pwd` && test -n "$ac_pwd" && + ac_ls_di=`ls -di .` && + ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || +- { $as_echo "$as_me: error: working directory cannot be determined" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "working directory cannot be determined" + test "X$ac_ls_di" = "X$ac_pwd_ls_di" || +- { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "pwd does not report name of working directory" + + + # Find the source files, if location was not specified. +@@ -1716,13 +1681,11 @@ + fi + if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." +- { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" + fi + ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" + ac_abs_confdir=`( +- cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 +- { (exit 1); exit 1; }; } ++ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + pwd)` + # When building in place, set srcdir=. + if test "$ac_abs_confdir" = "$ac_pwd"; then +@@ -1830,16 +1793,18 @@ + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] +- --disable-dependency-tracking Speeds up one-time builds +- --enable-dependency-tracking Do not reject slow dependency extractors ++ --enable-silent-rules less verbose build output (undo: `make V=1') ++ --disable-silent-rules verbose build output (undo: `make V=0') ++ --disable-dependency-tracking speeds up one-time build ++ --enable-dependency-tracking do not reject slow dependency extractors + --enable-static[=PKGS] build static libraries [default=no] + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --disable-largefile omit support for large files +- --enable-maintainer-mode enable make rules and dependencies not useful +- (and sometimes confusing) to the casual installer ++ --enable-maintainer-mode enable make rules and dependencies not useful ++ (and sometimes confusing) to the casual installer + --enable-debug=[no/minimum/yes] + turn on debugging [default=yes] + --enable-shm support shared memory if available [default=yes] +@@ -1899,6 +1864,8 @@ + CXXFLAGS C++ compiler flags + CPP C preprocessor + CXXCPP C++ preprocessor ++ CCAS assembler compiler command (defaults to CC) ++ CCASFLAGS assembler compiler flags (defaults to CFLAGS) + PKG_CONFIG path to pkg-config utility + BASE_DEPENDENCIES_CFLAGS + C compiler flags for BASE_DEPENDENCIES, overriding pkg-config +@@ -1981,466 +1948,973 @@ + if $ac_init_version; then + cat <<\_ACEOF + gtk+ configure 2.17.10 +-generated by GNU Autoconf 2.63 ++generated by GNU Autoconf 2.64 + +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 2009 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF + exit + fi +-cat >config.log <<_ACEOF +-This file contains any messages produced by compilers while +-running configure, to aid debugging if configure makes a mistake. + +-It was created by gtk+ $as_me 2.17.10, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++## ------------------------ ## ++## Autoconf initialization. ## ++## ------------------------ ## ++ ++# ac_fn_c_try_compile LINENO ++# -------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +- $ $0 $@ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ return $ac_retval + +-_ACEOF +-exec 5>>config.log ++} # ac_fn_c_try_compile ++ ++# ac_fn_cxx_try_compile LINENO ++# ---------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_compile () + { +-cat <<_ASUNAME +-## --------- ## +-## Platform. ## +-## --------- ## ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +-uname -m = `(uname -m) 2>/dev/null || echo unknown` +-uname -r = `(uname -r) 2>/dev/null || echo unknown` +-uname -s = `(uname -s) 2>/dev/null || echo unknown` +-uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ return $ac_retval + +-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +-/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` ++} # ac_fn_cxx_try_compile + +-/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +-/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +-/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +-/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` ++# ac_fn_c_try_link LINENO ++# ----------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-_ASUNAME ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # 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;} ++ return $ac_retval + +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- $as_echo "PATH: $as_dir" +-done +-IFS=$as_save_IFS ++} # ac_fn_c_try_link + +-} >&5 ++# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists and can be compiled using the include files in ++# INCLUDES, setting the cache variable VAR accordingly. ++ac_fn_c_check_header_compile () ++{ ++ 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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++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;} + +-cat >&5 <<_ACEOF ++} # ac_fn_c_check_header_compile + ++# ac_fn_c_try_cpp LINENO ++# ---------------------- ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-## ----------- ## +-## Core tests. ## +-## ----------- ## ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ return $ac_retval + +-_ACEOF ++} # ac_fn_c_try_cpp + ++# ac_fn_c_try_run LINENO ++# ---------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes ++# that executables *can* be run. ++ac_fn_c_try_run () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-# Keep a trace of the command line. +-# Strip out --no-create and --no-recursion so they do not pile up. +-# Strip out --silent because we don't want to record it for future runs. +-# Also quote any args containing shell meta-characters. +-# Make two passes to allow for proper duplicate-argument suppression. +-ac_configure_args= +-ac_configure_args0= +-ac_configure_args1= +-ac_must_keep_next=false +-for ac_pass in 1 2 +-do +- for ac_arg +- do +- case $ac_arg in +- -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; +- -q | -quiet | --quiet | --quie | --qui | --qu | --q \ +- | -silent | --silent | --silen | --sile | --sil) +- continue ;; +- *\'*) +- ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; +- esac +- case $ac_pass in +- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; +- 2) +- ac_configure_args1="$ac_configure_args1 '$ac_arg'" +- if test $ac_must_keep_next = true; then +- ac_must_keep_next=false # Got value, back to normal. +- else +- case $ac_arg in +- *=* | --config-cache | -C | -disable-* | --disable-* \ +- | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ +- | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ +- | -with-* | --with-* | -without-* | --without-* | --x) +- case "$ac_configure_args0 " in +- "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; +- esac +- ;; +- -* ) ac_must_keep_next=true ;; +- esac +- fi +- ac_configure_args="$ac_configure_args '$ac_arg'" +- ;; +- esac +- done +-done +-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++ 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;} ++ return $ac_retval + +-# When interrupted or exit'd, cleanup temporary files, and complete +-# config.log. We remove comments because anyway the quotes in there +-# would cause problems or look ugly. +-# WARNING: Use '\'' to represent an apostrophe within the trap. +-# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +-trap 'exit_status=$? +- # Save into config.log some information that might help in debugging. +- { +- echo ++} # ac_fn_c_try_run + +- cat <<\_ASBOX +-## ---------------- ## +-## Cache variables. ## +-## ---------------- ## +-_ASBOX +- echo +- # The following way of writing the cache mishandles newlines in values, +-( +- for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do +- eval ac_val=\$$ac_var +- case $ac_val in #( +- *${as_nl}*) +- case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 +-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; +- esac +- case $ac_var in #( +- _ | IFS | as_nl) ;; #( +- BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( +- *) $as_unset $ac_var ;; +- esac ;; +- esac +- done +- (set) 2>&1 | +- case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( +- *${as_nl}ac_space=\ *) +- sed -n \ +- "s/'\''/'\''\\\\'\'''\''/g; +- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" +- ;; #( +- *) +- sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" +- ;; +- esac | +- sort +-) +- echo ++# ac_fn_c_check_func LINENO FUNC VAR ++# ---------------------------------- ++# Tests whether FUNC exists, setting the cache variable VAR accordingly ++ac_fn_c_check_func () ++{ ++ 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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++/* Define $2 to an innocuous variant, in case <limits.h> declares $2. ++ For example, HP-UX 11i <limits.h> declares gettimeofday. */ ++#define $2 innocuous_$2 + +- cat <<\_ASBOX +-## ----------------- ## +-## Output variables. ## +-## ----------------- ## +-_ASBOX +- echo +- for ac_var in $ac_subst_vars +- do +- eval ac_val=\$$ac_var +- case $ac_val in +- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; +- esac +- $as_echo "$ac_var='\''$ac_val'\''" +- done | sort +- echo ++/* System header to define __stub macros and hopefully few prototypes, ++ which can conflict with char $2 (); below. ++ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since ++ <limits.h> exists even on freestanding compilers. */ + +- if test -n "$ac_subst_files"; then +- cat <<\_ASBOX +-## ------------------- ## +-## File substitutions. ## +-## ------------------- ## +-_ASBOX +- echo +- for ac_var in $ac_subst_files +- do +- eval ac_val=\$$ac_var +- case $ac_val in +- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; +- esac +- $as_echo "$ac_var='\''$ac_val'\''" +- done | sort +- echo +- fi +- +- if test -s confdefs.h; then +- cat <<\_ASBOX +-## ----------- ## +-## confdefs.h. ## +-## ----------- ## +-_ASBOX +- echo +- cat confdefs.h +- echo +- fi +- test "$ac_signal" != 0 && +- $as_echo "$as_me: caught signal $ac_signal" +- $as_echo "$as_me: exit $exit_status" +- } >&5 +- rm -f core *.core core.conftest.* && +- rm -f -r conftest* confdefs* conf$$* $ac_clean_files && +- exit $exit_status +-' 0 +-for ac_signal in 1 2 13 15; do +- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal +-done +-ac_signal=0 ++#ifdef __STDC__ ++# include <limits.h> ++#else ++# include <assert.h> ++#endif + +-# confdefs.h avoids OS command line length limits that DEFS can exceed. +-rm -f -r conftest* confdefs.h ++#undef $2 + +-# Predefined preprocessor variables. ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char $2 (); ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined __stub_$2 || defined __stub___$2 ++choke me ++#endif + +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_NAME "$PACKAGE_NAME" ++int ++main () ++{ ++return $2 (); ++ ; ++ return 0; ++} + _ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++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;} + ++} # ac_fn_c_check_func + +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +-_ACEOF ++# ac_fn_cxx_try_cpp LINENO ++# ------------------------ ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ return $ac_retval + +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_VERSION "$PACKAGE_VERSION" +-_ACEOF ++} # ac_fn_cxx_try_cpp + ++# ac_fn_cxx_try_link LINENO ++# ------------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_STRING "$PACKAGE_STRING" +-_ACEOF ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # 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;} ++ return $ac_retval + ++} # ac_fn_cxx_try_link + +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" ++# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists, giving a warning if it cannot be compiled using ++# the include files in INCLUDES and setting the cache variable VAR ++# accordingly. ++ac_fn_c_check_header_mongrel () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++else ++ # Is the header compilable? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 ++$as_echo_n "checking $2 usability... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> + _ACEOF +- +- +-# Let the site file select an alternate cache file if it wants to. +-# Prefer an explicitly selected file to automatically selected ones. +-ac_site_file1=NONE +-ac_site_file2=NONE +-if test -n "$CONFIG_SITE"; then +- ac_site_file1=$CONFIG_SITE +-elif test "x$prefix" != xNONE; then +- ac_site_file1=$prefix/share/config.site +- ac_site_file2=$prefix/etc/config.site ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_header_compiler=yes + else +- ac_site_file1=$ac_default_prefix/share/config.site +- ac_site_file2=$ac_default_prefix/etc/config.site ++ ac_header_compiler=no + fi +-for ac_site_file in "$ac_site_file1" "$ac_site_file2" +-do +- test "x$ac_site_file" = xNONE && continue +- if test -r "$ac_site_file"; then +- { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-$as_echo "$as_me: loading site script $ac_site_file" >&6;} +- sed 's/^/| /' "$ac_site_file" >&5 +- . "$ac_site_file" +- fi +-done ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + +-if test -r "$cache_file"; then +- # Some versions of bash will fail to source /dev/null (special +- # files actually), so we avoid doing that. +- if test -f "$cache_file"; then +- { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 +-$as_echo "$as_me: loading cache $cache_file" >&6;} +- case $cache_file in +- [\\/]* | ?:[\\/]* ) . "$cache_file";; +- *) . "./$cache_file";; +- esac +- fi ++# Is the header present? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 ++$as_echo_n "checking $2 presence... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <$2> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ ac_header_preproc=yes + else +- { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 +-$as_echo "$as_me: creating cache $cache_file" >&6;} +- >$cache_file ++ ac_header_preproc=no + fi ++rm -f conftest.err conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + +-# Check that the precious variables saved in the cache have kept the same +-# value. +-ac_cache_corrupted=false +-for ac_var in $ac_precious_vars; do +- eval ac_old_set=\$ac_cv_env_${ac_var}_set +- eval ac_new_set=\$ac_env_${ac_var}_set +- eval ac_old_val=\$ac_cv_env_${ac_var}_value +- eval ac_new_val=\$ac_env_${ac_var}_value +- case $ac_old_set,$ac_new_set in +- set,) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} +- ac_cache_corrupted=: ;; +- ,set) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} +- ac_cache_corrupted=: ;; +- ,);; +- *) +- if test "x$ac_old_val" != "x$ac_new_val"; then +- # differences in whitespace do not lead to failure. +- ac_old_val_w=`echo x $ac_old_val` +- ac_new_val_w=`echo x $ac_new_val` +- if test "$ac_old_val_w" != "$ac_new_val_w"; then +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- ac_cache_corrupted=: +- else +- { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +-$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} +- eval $ac_var=\$ac_old_val +- fi +- { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 +-$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} +- { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 +-$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} +- fi;; +- esac +- # Pass precious variables to config.status. +- if test "$ac_new_set" = set; then +- case $ac_new_val in +- *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; +- *) ac_arg=$ac_var=$ac_new_val ;; +- esac +- case " $ac_configure_args " in +- *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. +- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; +- esac +- fi +-done +-if $ac_cache_corrupted; then +- { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +- { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} +- { (exit 1); exit 1; }; } ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( ++ yes:no: ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++ no:yes:* ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++( cat <<\_ASBOX ++## --------------------------------------------------------------------- ## ++## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## ++## --------------------------------------------------------------------- ## ++_ASBOX ++ ) | sed "s/^/$as_me: WARNING: /" >&2 ++ ;; ++esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=\$ac_header_compiler" ++fi ++eval ac_res=\$$3 ++ { $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;} + ++} # ac_fn_c_check_header_mongrel + ++# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES ++# ---------------------------------------------------- ++# Tries to find if the field MEMBER exists in type AGGR, after including ++# INCLUDES, setting cache variable VAR accordingly. ++ac_fn_c_check_member () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 ++$as_echo_n "checking for $2.$3... " >&6; } ++if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$5 ++int ++main () ++{ ++static $2 ac_aggr; ++if (ac_aggr.$3) ++return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$4=yes" ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$5 ++int ++main () ++{ ++static $2 ac_aggr; ++if (sizeof ac_aggr.$3) ++return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$4=yes" ++else ++ eval "$4=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$4 ++ { $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;} + ++} # ac_fn_c_check_member ++cat >config.log <<_ACEOF ++This file contains any messages produced by compilers while ++running configure, to aid debugging if configure makes a mistake. + ++It was created by gtk+ $as_me 2.17.10, which was ++generated by GNU Autoconf 2.64. Invocation command line was + ++ $ $0 $@ + ++_ACEOF ++exec 5>>config.log ++{ ++cat <<_ASUNAME ++## --------- ## ++## Platform. ## ++## --------- ## + ++hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` ++uname -m = `(uname -m) 2>/dev/null || echo unknown` ++uname -r = `(uname -r) 2>/dev/null || echo unknown` ++uname -s = `(uname -s) 2>/dev/null || echo unknown` ++uname -v = `(uname -v) 2>/dev/null || echo unknown` + ++/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` ++/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + ++/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` ++/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` ++/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ++/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` ++/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` ++/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` ++/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + ++_ASUNAME + ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ $as_echo "PATH: $as_dir" ++ done ++IFS=$as_save_IFS + ++} >&5 + ++cat >&5 <<_ACEOF + + ++## ----------- ## ++## Core tests. ## ++## ----------- ## + ++_ACEOF + + ++# Keep a trace of the command line. ++# Strip out --no-create and --no-recursion so they do not pile up. ++# Strip out --silent because we don't want to record it for future runs. ++# Also quote any args containing shell meta-characters. ++# Make two passes to allow for proper duplicate-argument suppression. ++ac_configure_args= ++ac_configure_args0= ++ac_configure_args1= ++ac_must_keep_next=false ++for ac_pass in 1 2 ++do ++ for ac_arg ++ do ++ case $ac_arg in ++ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil) ++ continue ;; ++ *\'*) ++ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ case $ac_pass in ++ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; ++ 2) ++ as_fn_append ac_configure_args1 " '$ac_arg'" ++ if test $ac_must_keep_next = true; then ++ ac_must_keep_next=false # Got value, back to normal. ++ else ++ case $ac_arg in ++ *=* | --config-cache | -C | -disable-* | --disable-* \ ++ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ ++ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ ++ | -with-* | --with-* | -without-* | --without-* | --x) ++ case "$ac_configure_args0 " in ++ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; ++ esac ++ ;; ++ -* ) ac_must_keep_next=true ;; ++ esac ++ fi ++ as_fn_append ac_configure_args " '$ac_arg'" ++ ;; ++ esac ++ done ++done ++{ ac_configure_args0=; unset ac_configure_args0;} ++{ ac_configure_args1=; unset ac_configure_args1;} + ++# When interrupted or exit'd, cleanup temporary files, and complete ++# config.log. We remove comments because anyway the quotes in there ++# would cause problems or look ugly. ++# WARNING: Use '\'' to represent an apostrophe within the trap. ++# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. ++trap 'exit_status=$? ++ # Save into config.log some information that might help in debugging. ++ { ++ echo + ++ cat <<\_ASBOX ++## ---------------- ## ++## Cache variables. ## ++## ---------------- ## ++_ASBOX ++ echo ++ # The following way of writing the cache mishandles newlines in values, ++( ++ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do ++ eval ac_val=\$$ac_var ++ case $ac_val in #( ++ *${as_nl}*) ++ case $ac_var in #( ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 ++$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ++ esac ++ case $ac_var in #( ++ _ | IFS | as_nl) ;; #( ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( ++ *) { eval $ac_var=; unset $ac_var;} ;; ++ esac ;; ++ esac ++ done ++ (set) 2>&1 | ++ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( ++ *${as_nl}ac_space=\ *) ++ sed -n \ ++ "s/'\''/'\''\\\\'\'''\''/g; ++ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ++ ;; #( ++ *) ++ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ++ ;; ++ esac | ++ sort ++) ++ echo + ++ cat <<\_ASBOX ++## ----------------- ## ++## Output variables. ## ++## ----------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_vars ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ $as_echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo + ++ if test -n "$ac_subst_files"; then ++ cat <<\_ASBOX ++## ------------------- ## ++## File substitutions. ## ++## ------------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_files ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ $as_echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo ++ fi + ++ if test -s confdefs.h; then ++ cat <<\_ASBOX ++## ----------- ## ++## confdefs.h. ## ++## ----------- ## ++_ASBOX ++ echo ++ cat confdefs.h ++ echo ++ fi ++ test "$ac_signal" != 0 && ++ $as_echo "$as_me: caught signal $ac_signal" ++ $as_echo "$as_me: exit $exit_status" ++ } >&5 ++ rm -f core *.core core.conftest.* && ++ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && ++ exit $exit_status ++' 0 ++for ac_signal in 1 2 13 15; do ++ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal ++done ++ac_signal=0 + ++# confdefs.h avoids OS command line length limits that DEFS can exceed. ++rm -f -r conftest* confdefs.h + +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu ++$as_echo "/* confdefs.h */" > confdefs.h + ++# Predefined preprocessor variables. + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_NAME "$PACKAGE_NAME" ++_ACEOF + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_TARNAME "$PACKAGE_TARNAME" ++_ACEOF + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_VERSION "$PACKAGE_VERSION" ++_ACEOF + +-# Save this value here, since automake will set cflags later +-cflags_set=${CFLAGS+set} ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_STRING "$PACKAGE_STRING" ++_ACEOF + +-am__api_version="1.7" +-ac_aux_dir= +-for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do +- if test -f "$ac_dir/install-sh"; then +- ac_aux_dir=$ac_dir +- ac_install_sh="$ac_aux_dir/install-sh -c" +- break +- elif test -f "$ac_dir/install.sh"; then +- ac_aux_dir=$ac_dir +- ac_install_sh="$ac_aux_dir/install.sh -c" +- break +- elif test -f "$ac_dir/shtool"; then +- ac_aux_dir=$ac_dir +- ac_install_sh="$ac_aux_dir/shtool install -c" +- break +- fi +-done +-if test -z "$ac_aux_dir"; then +- { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 +-$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} +- { (exit 1); exit 1; }; } +-fi ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" ++_ACEOF + +-# These three variables are undocumented and unsupported, +-# and are intended to be withdrawn in a future Autoconf release. +-# They can cause serious problems if a builder's source tree is in a directory +-# whose full name contains unusual characters. +-ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +-ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +-ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_URL "$PACKAGE_URL" ++_ACEOF + + +-# Find a good install program. We prefer a C program (faster), +-# so one script is as good as another. But avoid the broken or +-# incompatible versions: +-# SysV /etc/install, /usr/sbin/install +-# SunOS /usr/etc/install +-# IRIX /sbin/install +-# AIX /bin/install +-# AmigaOS /C/install, which installs bootblocks on floppy discs +-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +-# AFS /usr/afsws/bin/install, which mishandles nonexistent args +-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +-# OS/2's system install, which has a completely different semantic +-# ./install, which can be erroneously created by make from ./install.sh. +-# Reject install programs that cannot install multiple files. +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 ++# Let the site file select an alternate cache file if it wants to. ++# Prefer an explicitly selected file to automatically selected ones. ++ac_site_file1=NONE ++ac_site_file2=NONE ++if test -n "$CONFIG_SITE"; then ++ ac_site_file1=$CONFIG_SITE ++elif test "x$prefix" != xNONE; then ++ ac_site_file1=$prefix/share/config.site ++ ac_site_file2=$prefix/etc/config.site + else +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH ++ ac_site_file1=$ac_default_prefix/share/config.site ++ ac_site_file2=$ac_default_prefix/etc/config.site ++fi ++for ac_site_file in "$ac_site_file1" "$ac_site_file2" + do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ +- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ +- /usr/ucb/* ) ;; +- *) +- # OSF1 and SCO ODT 3.0 have their own names for install. +- # Don't use installbsd from OSF since it installs stuff as root +- # 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. ++ test "x$ac_site_file" = xNONE && continue ++ if test -r "$ac_site_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 ++$as_echo "$as_me: loading site script $ac_site_file" >&6;} ++ sed 's/^/| /' "$ac_site_file" >&5 ++ . "$ac_site_file" ++ fi ++done ++ ++if test -r "$cache_file"; then ++ # Some versions of bash will fail to source /dev/null (special ++ # files actually), so we avoid doing that. ++ if test -f "$cache_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 ++$as_echo "$as_me: loading cache $cache_file" >&6;} ++ case $cache_file in ++ [\\/]* | ?:[\\/]* ) . "$cache_file";; ++ *) . "./$cache_file";; ++ esac ++ fi ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 ++$as_echo "$as_me: creating cache $cache_file" >&6;} ++ >$cache_file ++fi ++ ++# Check that the precious variables saved in the cache have kept the same ++# value. ++ac_cache_corrupted=false ++for ac_var in $ac_precious_vars; do ++ eval ac_old_set=\$ac_cv_env_${ac_var}_set ++ eval ac_new_set=\$ac_env_${ac_var}_set ++ eval ac_old_val=\$ac_cv_env_${ac_var}_value ++ eval ac_new_val=\$ac_env_${ac_var}_value ++ case $ac_old_set,$ac_new_set in ++ set,) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,set) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,);; ++ *) ++ if test "x$ac_old_val" != "x$ac_new_val"; then ++ # differences in whitespace do not lead to failure. ++ ac_old_val_w=`echo x $ac_old_val` ++ ac_new_val_w=`echo x $ac_new_val` ++ if test "$ac_old_val_w" != "$ac_new_val_w"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 ++$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ ac_cache_corrupted=: ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 ++$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} ++ eval $ac_var=\$ac_old_val ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 ++$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 ++$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} ++ fi;; ++ esac ++ # Pass precious variables to config.status. ++ if test "$ac_new_set" = set; then ++ case $ac_new_val in ++ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *) ac_arg=$ac_var=$ac_new_val ;; ++ esac ++ case " $ac_configure_args " in ++ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. ++ *) as_fn_append ac_configure_args " '$ac_arg'" ;; ++ esac ++ fi ++done ++if $ac_cache_corrupted; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 ++$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 ++fi ++## -------------------- ## ++## Main body of script. ## ++## -------------------- ## ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ ++ ++ ++ ++# Save this value here, since automake will set cflags later ++cflags_set=${CFLAGS+set} ++ ++am__api_version='1.11' ++ ++ac_aux_dir= ++for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do ++ for ac_t in install-sh install.sh shtool; do ++ if test -f "$ac_dir/$ac_t"; then ++ ac_aux_dir=$ac_dir ++ ac_install_sh="$ac_aux_dir/$ac_t -c" ++ break 2 ++ fi ++ done ++done ++if test -z "$ac_aux_dir"; then ++ as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 ++fi ++ ++# These three variables are undocumented and unsupported, ++# and are intended to be withdrawn in a future Autoconf release. ++# They can cause serious problems if a builder's source tree is in a directory ++# whose full name contains unusual characters. ++ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ++ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ++ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. ++ ++ ++# Find a good install program. We prefer a C program (faster), ++# so one script is as good as another. But avoid the broken or ++# incompatible versions: ++# SysV /etc/install, /usr/sbin/install ++# SunOS /usr/etc/install ++# IRIX /sbin/install ++# AIX /bin/install ++# AmigaOS /C/install, which installs bootblocks on floppy discs ++# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag ++# AFS /usr/afsws/bin/install, which mishandles nonexistent args ++# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" ++# OS/2's system install, which has a completely different semantic ++# ./install, which can be erroneously created by make from ./install.sh. ++# Reject install programs that cannot install multiple files. ++{ $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 : ++ $as_echo_n "(cached) " >&6 ++else ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ # Account for people who put trailing slashes in PATH elements. ++case $as_dir/ in #(( ++ ./ | .// | /[cC]/* | \ ++ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ++ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ ++ /usr/ucb/* ) ;; ++ *) ++ # OSF1 and SCO ODT 3.0 have their own names for install. ++ # Don't use installbsd from OSF since it installs stuff as root ++ # 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. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +@@ -2466,7 +2940,7 @@ + ;; + esac + +-done ++ done + IFS=$as_save_IFS + + rm -rf conftest.one conftest.two conftest.dir +@@ -2482,7 +2956,7 @@ + INSTALL=$ac_install_sh + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 + $as_echo "$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. +@@ -2493,21 +2967,34 @@ + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 + $as_echo_n "checking whether build environment is sane... " >&6; } + # Just in case + sleep 1 + echo timestamp > conftest.file ++# Reject unsafe characters in $srcdir or the absolute working directory ++# name. Accept space and tab only in the latter. ++am_lf=' ++' ++case `pwd` in ++ *[\\\"\#\$\&\'\`$am_lf]*) ++ as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; ++esac ++case $srcdir in ++ *[\\\"\#\$\&\'\`$am_lf\ \ ]*) ++ as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; ++esac ++ + # Do `set' in a subshell so we don't clobber the current shell's + # arguments. Must try -L first in case configure is actually a + # symlink; some systems play weird games with the mod time of symlinks + # (eg FreeBSD returns the mod time of the symlink's containing + # directory). + if ( +- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` ++ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. +- set X `ls -t $srcdir/configure conftest.file` ++ set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ +@@ -2517,11 +3004,8 @@ + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". +- { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&5 +-$as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "ls -t appears to fail. Make sure there is not a broken ++alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file +@@ -2530,13 +3014,10 @@ + # Ok. + : + else +- { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! +-Check your system clock" >&5 +-$as_echo "$as_me: error: newly created file is older than distributed files! +-Check your system clock" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "newly created file is older than distributed files! ++Check your system clock" "$LINENO" 5 + fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +@@ -2548,248 +3029,315 @@ + ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' + program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +- + # expand $ac_aux_dir to an absolute path + am_aux_dir=`cd $ac_aux_dir && pwd` + +-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" ++if test x"${MISSING+set}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; ++ *) ++ MISSING="\${SHELL} $am_aux_dir/missing" ;; ++ esac ++fi + # Use eval to expand $SHELL + if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " + else + am_missing_run= +- { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 + $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + +-for ac_prog in gawk mawk nawk awk +-do +- # Extract the first word of "$ac_prog", so it can be a program name with args. +-set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++if test x"${install_sh}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; ++ *) ++ install_sh="\${SHELL} $am_aux_dir/install-sh" ++ esac ++fi ++ ++# Installed binaries are usually stripped using `strip' when the user ++# run `make install-strip'. However `strip' might not be the right ++# tool to use in cross-compilation environments, therefore Automake ++# will honor the `STRIP' environment variable to overrule this program. ++if test "$cross_compiling" != no; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. ++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_AWK+set}" = set; then ++if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- if test -n "$AWK"; then +- ac_cv_prog_AWK="$AWK" # Let the user override the test. ++ if test -n "$STRIP"; then ++ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. + else + 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 ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ ac_cv_prog_STRIP="${ac_tool_prefix}strip" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi +-AWK=$ac_cv_prog_AWK +-if test -n "$AWK"; then +- { $as_echo "$as_me:$LINENO: result: $AWK" >&5 +-$as_echo "$AWK" >&6; } ++STRIP=$ac_cv_prog_STRIP ++if test -n "$STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + +- test -n "$AWK" && break +-done +- +-{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-$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 { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then ++fi ++if test -z "$ac_cv_prog_STRIP"; then ++ ac_ct_STRIP=$STRIP ++ # Extract the first word of "strip", so it can be a program name with args. ++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 : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.make <<\_ACEOF +-SHELL = /bin/sh +-all: +- @echo '@@@%%%=$(MAKE)=@@@%%%' +-_ACEOF +-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +-case `${MAKE-make} -f conftest.make 2>/dev/null` in +- *@@@%%%=?*=@@@%%%*) +- eval ac_cv_prog_make_${ac_make}_set=yes;; +- *) +- eval ac_cv_prog_make_${ac_make}_set=no;; +-esac +-rm -f conftest.make ++ if test -n "$ac_ct_STRIP"; then ++ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. ++else ++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_prog_ac_ct_STRIP="strip" ++ $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 ++ + fi +-if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- SET_MAKE= ++fi ++ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP ++if test -n "$ac_ct_STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +- SET_MAKE="MAKE=${MAKE-make}" + fi + +-rm -rf .tst 2>/dev/null +-mkdir .tst 2>/dev/null +-if test -d .tst; then +- am__leading_dot=. ++ if test "x$ac_ct_STRIP" = x; then ++ STRIP=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ STRIP=$ac_ct_STRIP ++ fi + else +- am__leading_dot=_ ++ STRIP="$ac_cv_prog_STRIP" + fi +-rmdir .tst 2>/dev/null + +- # test to see if srcdir already configured +-if test "`cd $srcdir && pwd`" != "`pwd`" && +- test -f $srcdir/config.status; then +- { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +-$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} +- { (exit 1); exit 1; }; } + fi ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +-# test whether we have cygpath +-if test -z "$CYGPATH_W"; then +- if (cygpath --version) >/dev/null 2>/dev/null; then +- CYGPATH_W='cygpath -w' +- else +- CYGPATH_W=echo +- fi +-fi +- +- +-# Define the identity of the package. +- PACKAGE='gtk+' +- VERSION='2.17.10' +- +- +-# Some tools Automake needs. +- +-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} +- +- +-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} +- +- +-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} +- +- +-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} +- +- +-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} +- +- +-AMTAR=${AMTAR-"${am_missing_run}tar"} +- +-install_sh=${install_sh-"$am_aux_dir/install-sh"} +- +-# Installed binaries are usually stripped using `strip' when the user +-# run `make install-strip'. However `strip' might not be the right +-# tool to use in cross-compilation environments, therefore Automake +-# will honor the `STRIP' environment variable to overrule this program. +-if test "$cross_compiling" != no; then +- if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +-set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_STRIP+set}" = set; then ++{ $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 : + $as_echo_n "(cached) " >&6 + else +- if test -n "$STRIP"; then +- ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin + 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_prog_STRIP="${ac_tool_prefix}strip" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done ++ for ac_prog in mkdir gmkdir; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue ++ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( ++ 'mkdir (GNU coreutils) '* | \ ++ 'mkdir (coreutils) '* | \ ++ 'mkdir (fileutils) '4.1*) ++ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext ++ break 3;; ++ esac ++ done ++ done ++ done + IFS=$as_save_IFS + + fi ++ ++ if test "${ac_cv_path_mkdir+set}" = set; then ++ MKDIR_P="$ac_cv_path_mkdir -p" ++ else ++ # As a last resort, use the slow shell script. Don't cache a ++ # value for MKDIR_P within a source directory, because that will ++ # break other packages using the cache if that directory is ++ # removed, or if the value is a relative name. ++ test -d ./--version && rmdir ./--version ++ MKDIR_P="$ac_install_sh -d" ++ fi + fi +-STRIP=$ac_cv_prog_STRIP +-if test -n "$STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 +-$as_echo "$STRIP" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 ++$as_echo "$MKDIR_P" >&6; } + ++mkdir_p="$MKDIR_P" ++case $mkdir_p in ++ [\\/$]* | ?:[\\/]*) ;; ++ */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ++esac + +-fi +-if test -z "$ac_cv_prog_STRIP"; then +- ac_ct_STRIP=$STRIP +- # Extract the first word of "strip", so it can be a program name with args. +-set dummy strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++for ac_prog in gawk mawk nawk awk ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++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_STRIP+set}" = set; then ++if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- if test -n "$ac_ct_STRIP"; then +- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. ++ if test -n "$AWK"; then ++ ac_cv_prog_AWK="$AWK" # Let the user override the test. + else + 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 ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ ac_cv_prog_AWK="$ac_prog" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi +-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +-if test -n "$ac_ct_STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-$as_echo "$ac_ct_STRIP" >&6; } ++AWK=$ac_cv_prog_AWK ++if test -n "$AWK"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 ++$as_echo "$AWK" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +- if test "x$ac_ct_STRIP" = x; then +- STRIP=":" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +-ac_tool_warned=yes ;; ++ ++ test -n "$AWK" && break ++done ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$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 { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat >conftest.make <<\_ACEOF ++SHELL = /bin/sh ++all: ++ @echo '@@@%%%=$(MAKE)=@@@%%%' ++_ACEOF ++# GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++case `${MAKE-make} -f conftest.make 2>/dev/null` in ++ *@@@%%%=?*=@@@%%%*) ++ eval ac_cv_prog_make_${ac_make}_set=yes;; ++ *) ++ eval ac_cv_prog_make_${ac_make}_set=no;; + esac +- STRIP=$ac_ct_STRIP +- fi ++rm -f conftest.make ++fi ++if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ SET_MAKE= + else +- STRIP="$ac_cv_prog_STRIP" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ SET_MAKE="MAKE=${MAKE-make}" ++fi ++ ++rm -rf .tst 2>/dev/null ++mkdir .tst 2>/dev/null ++if test -d .tst; then ++ am__leading_dot=. ++else ++ am__leading_dot=_ ++fi ++rmdir .tst 2>/dev/null ++ ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ am__isrc=' -I$(srcdir)' ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 ++ fi + fi + ++# test whether we have cygpath ++if test -z "$CYGPATH_W"; then ++ if (cygpath --version) >/dev/null 2>/dev/null; then ++ CYGPATH_W='cygpath -w' ++ else ++ CYGPATH_W=echo ++ fi + fi +-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" ++ ++ ++# Define the identity of the package. ++ PACKAGE='gtk+' ++ VERSION='2.17.10' ++ ++ ++# Some tools Automake needs. ++ ++ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} ++ ++ ++AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} ++ ++ ++AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} ++ ++ ++AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} ++ ++ ++MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + + # We need awk for the "check" target. The system "awk" is bad on + # some platforms. ++# Always define AMTAR for backward compatibility. ++ ++AMTAR=${AMTAR-"${am_missing_run}tar"} ++ ++am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ++ ++ + + + +@@ -2799,6 +3347,17 @@ + # Support silent build rules, requires at least automake-1.11. Enable + # by either passing --enable-silent-rules to configure or passing V=0 + # to make ++# Check whether --enable-silent-rules was given. ++if test "${enable_silent_rules+set}" = set; then : ++ enableval=$enable_silent_rules; ++fi ++ ++case $enable_silent_rules in ++yes) AM_DEFAULT_VERBOSITY=0;; ++no) AM_DEFAULT_VERBOSITY=1;; ++*) AM_DEFAULT_VERBOSITY=1;; ++esac ++AM_BACKSLASH='\' + + + # +@@ -2878,35 +3437,27 @@ + + # Make sure we can run config.sub. + $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || +- { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +-$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +-{ $as_echo "$as_me:$LINENO: checking build system type" >&5 ++{ $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 test "${ac_cv_build+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_build_alias=$build_alias + test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + test "x$ac_build_alias" = x && +- { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +-$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 + ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || +- { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 + $as_echo "$ac_cv_build" >&6; } + case $ac_cv_build in + *-*-*) ;; +-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +-$as_echo "$as_me: error: invalid value of canonical build" >&2;} +- { (exit 1); exit 1; }; };; ++*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; + esac + build=$ac_cv_build + ac_save_IFS=$IFS; IFS='-' +@@ -2922,28 +3473,24 @@ + case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +-{ $as_echo "$as_me:$LINENO: checking host system type" >&5 ++{ $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 test "${ac_cv_host+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build + else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || +- { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 + $as_echo "$ac_cv_host" >&6; } + case $ac_cv_host in + *-*-*) ;; +-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +-$as_echo "$as_me: error: invalid value of canonical host" >&2;} +- { (exit 1); exit 1; }; };; ++*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; + esac + host=$ac_cv_host + ac_save_IFS=$IFS; IFS='-' +@@ -2961,7 +3508,7 @@ + + + MATH_LIB=-lm +-{ $as_echo "$as_me:$LINENO: checking for native Win32" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for native Win32" >&5 + $as_echo_n "checking for native Win32... " >&6; } + LIB_EXE_MACHINE_FLAG=X86 + case "$host" in +@@ -2979,7 +3526,7 @@ + os_win32=no + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $os_win32" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $os_win32" >&5 + $as_echo "$os_win32" >&6; } + + +@@ -2998,9 +3545,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -3011,24 +3558,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3038,9 +3585,9 @@ + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then +@@ -3051,24 +3598,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 + $as_echo "$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3077,7 +3624,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -3091,9 +3638,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -3104,24 +3651,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3131,9 +3678,9 @@ + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -3145,18 +3692,18 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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 + fi + ac_cv_prog_CC="cc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + if test $ac_prog_rejected = yes; then +@@ -3175,10 +3722,10 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3190,9 +3737,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -3203,24 +3750,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3234,9 +3781,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then +@@ -3247,24 +3794,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 + $as_echo "$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3277,7 +3824,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -3288,73 +3835,55 @@ + fi + + +-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error "no acceptable C compiler found in \$PATH ++See \`config.log' for more details." "$LINENO" 5; } + + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 + set X $ac_compile + ac_compiler=$2 +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ rm -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +- ++#include <stdio.h> + int + main () + { ++FILE *f = fopen ("conftest.out", "w"); ++ return ferror (f) || fclose (f) != 0; + + ; + return 0; + } + _ACEOF + ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" ++ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out" + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. +-{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 + $as_echo_n "checking for C compiler default output file name... " >&6; } + ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +@@ -3371,17 +3900,17 @@ + done + rm -f $ac_rmfiles + +-if { (ac_try="$ac_link_default" ++if { { ac_try="$ac_link_default" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. + # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' + # in a Makefile. We should not override ac_cv_exeext if it was cached, +@@ -3398,7 +3927,7 @@ + # certainly right. + break;; + *.* ) +- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi +@@ -3417,84 +3946,75 @@ + else + ac_file='' + fi +- +-{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 + $as_echo "$ac_file" >&6; } +-if test -z "$ac_file"; then ++if test -z "$ac_file"; then : + $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C compiler cannot create executables +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++{ as_fn_set_status 77 ++as_fn_error "C compiler cannot create executables ++See \`config.log' for more details." "$LINENO" 5; }; } + 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. +-{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 + $as_echo_n "checking whether the C compiler works... " >&6; } +-# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 + # If not cross compiling, check that we can run a simple program. + if test "$cross_compiling" != yes; then + if { ac_try='./$ac_file' +- { (case "(($ac_try" in ++ { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. ++as_fn_error "cannot run C compiled programs. + If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run C compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++See \`config.log' for more details." "$LINENO" 5; } + fi + fi + fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + +-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ++rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out + ac_clean_files=$ac_clean_files_save + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +-{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 + $as_echo_n "checking whether we are cross compiling... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 + $as_echo "$cross_compiling" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 + $as_echo_n "checking for suffix of executables... " >&6; } +-if { (ac_try="$ac_link" ++if { { ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) + # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will + # work properly (i.e., refer to `conftest.exe'), while it won't with +@@ -3509,32 +4029,24 @@ + esac + done + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error "cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details." "$LINENO" 5; } + fi +- + rm -f conftest$ac_cv_exeext +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 + $as_echo "$ac_cv_exeext" >&6; } + + rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +-{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++{ $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 test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3546,17 +4058,17 @@ + } + _ACEOF + rm -f conftest.o conftest.obj +-if { (ac_try="$ac_compile" ++if { { ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in +@@ -3569,31 +4081,23 @@ + $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error "cannot compute suffix of object files: cannot compile ++See \`config.log' for more details." "$LINENO" 5; } + fi +- + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 + $as_echo "$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++{ $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 test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3607,37 +4111,16 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 + $as_echo "$ac_cv_c_compiler_gnu" >&6; } + if test $ac_compiler_gnu = yes; then + GCC=yes +@@ -3646,20 +4129,16 @@ + fi + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++{ $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 test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3670,35 +4149,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3709,36 +4164,12 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + +- ac_c_werror_flag=$ac_save_c_werror_flag ++else ++ ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3749,42 +4180,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 + $as_echo "$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +@@ -3801,18 +4207,14 @@ + CFLAGS= + fi + fi +-{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++{ $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 test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <stdarg.h> + #include <stdio.h> +@@ -3869,32 +4271,9 @@ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" + do + CC="$ac_save_CC $ac_arg" +- rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++ if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break + done +@@ -3905,17 +4284,19 @@ + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 + $as_echo "none needed" >&6; } ;; + xno) +- { $as_echo "$as_me:$LINENO: result: unsupported" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 + $as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 + $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac ++if test "x$ac_cv_prog_cc_c89" != xno; then : + ++fi + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -3930,44 +4311,44 @@ + am_make=${MAKE-make} + cat > confinc << 'END' + am__doit: +- @echo done ++ @echo this is the am__doit target + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +-{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 + $as_echo_n "checking for style of include used by $am_make... " >&6; } + am__include="#" + am__quote= + _am_result=none + # First try GNU make style include. + echo "include confinc" > confmf +-# We grep out `Entering directory' and `Leaving directory' +-# messages which can occur if `w' ends up in MAKEFLAGS. +-# In particular we don't look at `^make:' because GNU make might +-# be invoked under some other name (usually "gmake"), in which +-# case it prints its new name instead of `make'. +-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then +- am__include=include +- am__quote= +- _am_result=GNU +-fi ++# Ignore all kinds of additional output from `make'. ++case `$am_make -s -f confmf 2> /dev/null` in #( ++*the\ am__doit\ target*) ++ am__include=include ++ am__quote= ++ _am_result=GNU ++ ;; ++esac + # Now try BSD make style include. + if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf +- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- fi ++ case `$am_make -s -f confmf 2> /dev/null` in #( ++ *the\ am__doit\ target*) ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ ;; ++ esac + fi + + +-{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 + $as_echo "$_am_result" >&6; } + rm -f confinc confmf + + # Check whether --enable-dependency-tracking was given. +-if test "${enable_dependency_tracking+set}" = set; then ++if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; + fi + +@@ -3975,9 +4356,7 @@ + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + fi +- +- +-if test "x$enable_dependency_tracking" != xno; then ++ if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' + else +@@ -3987,12 +4366,11 @@ + + + +- + depcc="$CC" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++{ $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 test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +@@ -4018,6 +4396,11 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -4029,11 +4412,23 @@ + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c +- : > sub/conftst$i.h ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" + case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -4043,23 +4438,33 @@ + break + fi + ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; + none) break ;; + esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. + if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ++ source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings +- # (even with -Werror). So we grep stderr for any message +- # that says an option was ignored. +- if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi +@@ -4073,13 +4478,11 @@ + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 + $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + +- +- +-if ++ if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= +@@ -4091,7 +4494,7 @@ + + + # Check whether --enable-static was given. +-if test "${enable_static+set}" = set; then ++if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; +@@ -4121,15 +4524,23 @@ + + + ++ if test "$enable_static" = yes; then ++ ENABLE_STATIC_TRUE= ++ ENABLE_STATIC_FALSE='#' ++else ++ ENABLE_STATIC_TRUE='#' ++ ENABLE_STATIC_FALSE= ++fi ++ + + if test -n "$ac_tool_prefix"; then + for ac_prog in $CCC c++ g++ gcc CC cxx cc++ cl + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then +@@ -4140,24 +4551,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { $as_echo "$as_me:$LINENO: result: $CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 + $as_echo "$CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4171,9 +4582,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then +@@ -4184,24 +4595,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 + $as_echo "$ac_ct_CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4214,7 +4625,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -4244,9 +4655,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then +@@ -4257,24 +4668,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { $as_echo "$as_me:$LINENO: result: $CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 + $as_echo "$CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4288,9 +4699,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then +@@ -4301,24 +4712,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 + $as_echo "$ac_ct_CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4331,7 +4742,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -4342,53 +4753,36 @@ + fi + fi + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 + set X $ac_compile + ac_compiler=$2 +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ rm -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++{ $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_cxx_compiler_gnu+set}" = set; then ++if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4402,37 +4796,16 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 + $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } + if test $ac_compiler_gnu = yes; then + GXX=yes +@@ -4441,20 +4814,16 @@ + fi + ac_test_CXXFLAGS=${CXXFLAGS+set} + ac_save_CXXFLAGS=$CXXFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 + $as_echo_n "checking whether $CXX accepts -g... " >&6; } +-if test "${ac_cv_prog_cxx_g+set}" = set; then ++if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4465,35 +4834,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CXXFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CXXFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4504,36 +4849,12 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_compile "$LINENO"; then : + +- ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++else ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4544,42 +4865,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 + $as_echo "$ac_cv_prog_cxx_g" >&6; } + if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +@@ -4604,9 +4900,9 @@ + + depcc="$CXX" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++{ $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_CXX_dependencies_compiler_type+set}" = set; then ++if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +@@ -4632,6 +4928,11 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -4643,11 +4944,23 @@ + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c +- : > sub/conftst$i.h ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" + case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -4657,23 +4970,33 @@ + break + fi + ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; + none) break ;; + esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. + if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ++ source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings +- # (even with -Werror). So we grep stderr for any message +- # that says an option was ignored. +- if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi +@@ -4687,13 +5010,11 @@ + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 + $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + +- +- +-if ++ if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= +@@ -4705,11 +5026,7 @@ + + + +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4720,36 +5037,13 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_compile "$LINENO"; then : + +- CXX= ++else ++ CXX= + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +- +-if test "$CXX" != ""; then ++ if test "$CXX" != ""; then + HAVE_CXX_TRUE= + HAVE_CXX_FALSE='#' + else +@@ -4760,11 +5054,7 @@ + + gtk_save_cxxflags="$CXXFLAGS" + CXXFLAGS="$CXXFLAGS -x objective-c++" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + @interface Foo @end + int +@@ -4775,36 +5065,13 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + OBJC=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- OBJC=no ++ OBJC=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +- +-if test "$OBJC" = "yes"; then ++ if test "$OBJC" = "yes"; then + HAVE_OBJC_TRUE= + HAVE_OBJC_FALSE='#' + else +@@ -4822,12 +5089,12 @@ + + if test "$os_win32" = "yes"; then + if test x$enable_static = xyes -o x$enable_static = x; then +- { $as_echo "$as_me:$LINENO: WARNING: Disabling static library build, must build as DLL on Windows." >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Disabling static library build, must build as DLL on Windows." >&5 + $as_echo "$as_me: WARNING: Disabling static library build, must build as DLL on Windows." >&2;} + enable_static=no + fi + if test x$enable_shared = xno; then +- { $as_echo "$as_me:$LINENO: WARNING: Enabling shared library build, must build as DLL on Windows." >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Enabling shared library build, must build as DLL on Windows." >&5 + $as_echo "$as_me: WARNING: Enabling shared library build, must build as DLL on Windows." >&2;} + fi + enable_shared=yes +@@ -4840,9 +5107,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. + set dummy ${ac_tool_prefix}as; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_AS+set}" = set; then ++if test "${ac_cv_prog_AS+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$AS"; then +@@ -4853,24 +5120,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_AS="${ac_tool_prefix}as" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AS=$ac_cv_prog_AS + if test -n "$AS"; then +- { $as_echo "$as_me:$LINENO: result: $AS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 + $as_echo "$AS" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4880,9 +5147,9 @@ + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. + set dummy as; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_AS+set}" = set; then ++if test "${ac_cv_prog_ac_ct_AS+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AS"; then +@@ -4893,24 +5160,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_AS="as" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_AS=$ac_cv_prog_ac_ct_AS + if test -n "$ac_ct_AS"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_AS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 + $as_echo "$ac_ct_AS" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4919,7 +5186,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -4932,9 +5199,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. + set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_DLLTOOL+set}" = set; then ++if test "${ac_cv_prog_DLLTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$DLLTOOL"; then +@@ -4945,24 +5212,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DLLTOOL="${ac_tool_prefix}dlltool" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + DLLTOOL=$ac_cv_prog_DLLTOOL + if test -n "$DLLTOOL"; then +- { $as_echo "$as_me:$LINENO: result: $DLLTOOL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 + $as_echo "$DLLTOOL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4972,9 +5239,9 @@ + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. + set dummy dlltool; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_DLLTOOL+set}" = set; then ++if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DLLTOOL"; then +@@ -4985,24 +5252,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DLLTOOL="dlltool" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL + if test -n "$ac_ct_DLLTOOL"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_DLLTOOL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 + $as_echo "$ac_ct_DLLTOOL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -5011,7 +5278,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -5024,9 +5291,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. + set dummy ${ac_tool_prefix}objdump; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$OBJDUMP"; then +@@ -5037,24 +5304,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OBJDUMP="${ac_tool_prefix}objdump" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + OBJDUMP=$ac_cv_prog_OBJDUMP + if test -n "$OBJDUMP"; then +- { $as_echo "$as_me:$LINENO: result: $OBJDUMP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 + $as_echo "$OBJDUMP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -5064,9 +5331,9 @@ + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. + set dummy objdump; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_OBJDUMP"; then +@@ -5077,24 +5344,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OBJDUMP="objdump" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP + if test -n "$ac_ct_OBJDUMP"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 + $as_echo "$ac_ct_OBJDUMP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -5103,7 +5370,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -5138,7 +5405,7 @@ + + case `pwd` in + *\ * | *\ *) +- { $as_echo "$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 + $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; + esac + +@@ -5161,9 +5428,9 @@ + + ltmain="$ac_aux_dir/ltmain.sh" + +-{ $as_echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 ++{ $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 test "${ac_cv_path_SED+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ +@@ -5171,7 +5438,7 @@ + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed +- $as_unset ac_script || ac_script= ++ { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST +@@ -5180,7 +5447,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in sed gsed; do ++ for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue +@@ -5200,7 +5467,7 @@ + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" +@@ -5215,19 +5482,17 @@ + $ac_path_SED_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable sed could be found in \$PATH" >&5 +-$as_echo "$as_me: error: no acceptable sed could be found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi + else + ac_cv_path_SED=$SED + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_SED" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 + $as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed +@@ -5245,9 +5510,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 ++{ $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 test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$GREP"; then +@@ -5258,7 +5523,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in grep ggrep; do ++ 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 +@@ -5278,7 +5543,7 @@ + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" +@@ -5293,26 +5558,24 @@ + $ac_path_GREP_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi + else + ac_cv_path_GREP=$GREP + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 + $as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +-{ $as_echo "$as_me:$LINENO: checking for egrep" >&5 ++{ $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 test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 +@@ -5326,7 +5589,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in egrep; do ++ 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 +@@ -5346,7 +5609,7 @@ + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" +@@ -5361,12 +5624,10 @@ + $ac_path_EGREP_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi + else + ac_cv_path_EGREP=$EGREP +@@ -5374,14 +5635,14 @@ + + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 + $as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +-{ $as_echo "$as_me:$LINENO: checking for fgrep" >&5 ++{ $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 test "${ac_cv_path_FGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 +@@ -5395,7 +5656,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in fgrep; do ++ for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue +@@ -5415,7 +5676,7 @@ + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" +@@ -5430,12 +5691,10 @@ + $ac_path_FGREP_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi + else + ac_cv_path_FGREP=$FGREP +@@ -5443,7 +5702,7 @@ + + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_FGREP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 + $as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + +@@ -5469,7 +5728,7 @@ + + + # Check whether --with-gnu-ld was given. +-if test "${with_gnu_ld+set}" = set; then ++if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + else + with_gnu_ld=no +@@ -5478,7 +5737,7 @@ + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 + $as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) +@@ -5508,13 +5767,13 @@ + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 + $as_echo_n "checking for GNU ld... " >&6; } + else +- { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ++ { $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 test "${lt_cv_path_LD+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then +@@ -5545,18 +5804,16 @@ + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { $as_echo "$as_me:$LINENO: result: $LD" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 + $as_echo "$LD" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi +-test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } +-{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ++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 test "${lt_cv_prog_gnu_ld+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +@@ -5569,7 +5826,7 @@ + ;; + esac + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 + $as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + +@@ -5581,9 +5838,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5 ++{ $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 test "${lt_cv_path_NM+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$NM"; then +@@ -5630,7 +5887,7 @@ + : ${lt_cv_path_NM=no} + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 + $as_echo "$lt_cv_path_NM" >&6; } + if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +@@ -5641,9 +5898,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_DUMPBIN+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$DUMPBIN"; then +@@ -5654,24 +5911,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DUMPBIN="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + DUMPBIN=$ac_cv_prog_DUMPBIN + if test -n "$DUMPBIN"; then +- { $as_echo "$as_me:$LINENO: result: $DUMPBIN" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 + $as_echo "$DUMPBIN" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -5685,9 +5942,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DUMPBIN"; then +@@ -5698,24 +5955,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DUMPBIN="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN + if test -n "$ac_ct_DUMPBIN"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_DUMPBIN" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 + $as_echo "$ac_ct_DUMPBIN" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -5728,7 +5985,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -5748,44 +6005,44 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking the name lister ($NM) interface" >&5 ++{ $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 test "${lt_cv_nm_interface+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext +- (eval echo "\"\$as_me:5758: $ac_compile\"" >&5) ++ (eval echo "\"\$as_me:6015: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 +- (eval echo "\"\$as_me:5761: $NM \\\"conftest.$ac_objext\\\"\"" >&5) ++ (eval echo "\"\$as_me:6018: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 +- (eval echo "\"\$as_me:5764: output\"" >&5) ++ (eval echo "\"\$as_me:6021: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 + $as_echo "$lt_cv_nm_interface" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 + $as_echo_n "checking whether ln -s works... " >&6; } + LN_S=$as_ln_s + if test "$LN_S" = "ln -s"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 + $as_echo "no, using $LN_S" >&6; } + fi + + # find the maximum length of command line arguments +-{ $as_echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 ++{ $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 test "${lt_cv_sys_max_cmd_len+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + i=0 +@@ -5903,10 +6160,10 @@ + fi + + if test -n $lt_cv_sys_max_cmd_len ; then +- { $as_echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 + $as_echo "$lt_cv_sys_max_cmd_len" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: none" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 + $as_echo "none" >&6; } + fi + max_cmd_len=$lt_cv_sys_max_cmd_len +@@ -5920,7 +6177,7 @@ + : ${MV="mv -f"} + : ${RM="rm -f"} + +-{ $as_echo "$as_me:$LINENO: checking whether the shell understands some XSI constructs" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 + $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } + # Try some XSI features + xsi_shell=no +@@ -5930,17 +6187,17 @@ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +-{ $as_echo "$as_me:$LINENO: result: $xsi_shell" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 + $as_echo "$xsi_shell" >&6; } + + +-{ $as_echo "$as_me:$LINENO: checking whether the shell understands \"+=\"" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 + $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } + lt_shell_append=no + ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +-{ $as_echo "$as_me:$LINENO: result: $lt_shell_append" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 + $as_echo "$lt_shell_append" >&6; } + + +@@ -5975,14 +6232,14 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 ++{ $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 test "${lt_cv_ld_reload_flag+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_ld_reload_flag='-r' + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 + $as_echo "$lt_cv_ld_reload_flag" >&6; } + reload_flag=$lt_cv_ld_reload_flag + case $reload_flag in +@@ -6011,9 +6268,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. + set dummy ${ac_tool_prefix}objdump; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$OBJDUMP"; then +@@ -6024,24 +6281,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OBJDUMP="${ac_tool_prefix}objdump" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + OBJDUMP=$ac_cv_prog_OBJDUMP + if test -n "$OBJDUMP"; then +- { $as_echo "$as_me:$LINENO: result: $OBJDUMP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 + $as_echo "$OBJDUMP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6051,9 +6308,9 @@ + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. + set dummy objdump; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_OBJDUMP"; then +@@ -6064,24 +6321,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OBJDUMP="objdump" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP + if test -n "$ac_ct_OBJDUMP"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 + $as_echo "$ac_ct_OBJDUMP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6090,7 +6347,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -6107,9 +6364,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 ++{ $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 test "${lt_cv_deplibs_check_method+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_file_magic_cmd='$MAGIC_CMD' +@@ -6228,7 +6485,7 @@ + lt_cv_deplibs_check_method=pass_all + ;; + +-netbsd*) ++netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else +@@ -6303,7 +6560,7 @@ + esac + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 + $as_echo "$lt_cv_deplibs_check_method" >&6; } + file_magic_cmd=$lt_cv_file_magic_cmd + deplibs_check_method=$lt_cv_deplibs_check_method +@@ -6323,9 +6580,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_AR+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$AR"; then +@@ -6336,24 +6593,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_AR="${ac_tool_prefix}ar" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { $as_echo "$as_me:$LINENO: result: $AR" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 + $as_echo "$AR" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6363,9 +6620,9 @@ + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_AR+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AR"; then +@@ -6376,24 +6633,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_AR="ar" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 + $as_echo "$ac_ct_AR" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6402,7 +6659,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -6428,9 +6685,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then +@@ -6441,24 +6698,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 + $as_echo "$STRIP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6468,9 +6725,9 @@ + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then +@@ -6481,24 +6738,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 + $as_echo "$ac_ct_STRIP" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6507,7 +6764,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -6527,9 +6784,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then +@@ -6540,24 +6797,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_RANLIB="${ac_tool_prefix}ranlib" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 + $as_echo "$RANLIB" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6567,9 +6824,9 @@ + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then +@@ -6580,24 +6837,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_RANLIB="ranlib" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 + $as_echo "$ac_ct_RANLIB" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -6606,7 +6863,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -6684,9 +6941,9 @@ + + + # Check for command to grab the raw symbol name followed by C symbol from nm. +-{ $as_echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 ++{ $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 test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + +@@ -6802,18 +7059,18 @@ + int main(){nm_test_var='a';nm_test_func();return(0);} + _LT_EOF + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm +- if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s "$nlist"; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" +@@ -6866,11 +7123,11 @@ + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" +- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext}; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" +@@ -6904,10 +7161,10 @@ + lt_cv_sys_global_symbol_to_cdecl= + fi + if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then +- { $as_echo "$as_me:$LINENO: result: failed" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 + $as_echo "failed" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: ok" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 + $as_echo "ok" >&6; } + fi + +@@ -6934,7 +7191,7 @@ + + + # Check whether --enable-libtool-lock was given. +-if test "${enable_libtool_lock+set}" = set; then ++if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; + fi + +@@ -6946,11 +7203,11 @@ + ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" +@@ -6964,12 +7221,12 @@ + ;; + *-*-irix6*) + # Find out which ABI we are using. +- echo '#line 6967 "configure"' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ echo '#line 7224 "configure"' > conftest.$ac_ext ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) +@@ -7003,11 +7260,11 @@ + s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in +@@ -7056,9 +7313,9 @@ + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" +- { $as_echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 ++ { $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 test "${lt_cv_cc_needs_belf+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_ext=c +@@ -7067,11 +7324,7 @@ + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -7082,38 +7335,13 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- lt_cv_cc_needs_belf=no ++ lt_cv_cc_needs_belf=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -7121,7 +7349,7 @@ + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 + $as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf +@@ -7131,11 +7359,11 @@ + sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in +@@ -7161,9 +7389,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. + set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_DSYMUTIL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$DSYMUTIL"; then +@@ -7174,24 +7402,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DSYMUTIL="${ac_tool_prefix}dsymutil" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + DSYMUTIL=$ac_cv_prog_DSYMUTIL + if test -n "$DSYMUTIL"; then +- { $as_echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 + $as_echo "$DSYMUTIL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7201,9 +7429,9 @@ + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. + set dummy dsymutil; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DSYMUTIL"; then +@@ -7214,24 +7442,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DSYMUTIL="dsymutil" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL + if test -n "$ac_ct_DSYMUTIL"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 + $as_echo "$ac_ct_DSYMUTIL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7240,7 +7468,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -7253,9 +7481,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. + set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_NMEDIT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$NMEDIT"; then +@@ -7266,24 +7494,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_NMEDIT="${ac_tool_prefix}nmedit" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + NMEDIT=$ac_cv_prog_NMEDIT + if test -n "$NMEDIT"; then +- { $as_echo "$as_me:$LINENO: result: $NMEDIT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 + $as_echo "$NMEDIT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7293,9 +7521,9 @@ + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. + set dummy nmedit; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_NMEDIT"; then +@@ -7306,24 +7534,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_NMEDIT="nmedit" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT + if test -n "$ac_ct_NMEDIT"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 + $as_echo "$ac_ct_NMEDIT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7332,7 +7560,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -7345,9 +7573,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. + set dummy ${ac_tool_prefix}lipo; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_LIPO+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$LIPO"; then +@@ -7358,24 +7586,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_LIPO="${ac_tool_prefix}lipo" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + LIPO=$ac_cv_prog_LIPO + if test -n "$LIPO"; then +- { $as_echo "$as_me:$LINENO: result: $LIPO" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 + $as_echo "$LIPO" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7385,9 +7613,9 @@ + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. + set dummy lipo; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_LIPO"; then +@@ -7398,24 +7626,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_LIPO="lipo" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO + if test -n "$ac_ct_LIPO"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_LIPO" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 + $as_echo "$ac_ct_LIPO" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7424,7 +7652,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -7437,9 +7665,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. + set dummy ${ac_tool_prefix}otool; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_OTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$OTOOL"; then +@@ -7450,24 +7678,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OTOOL="${ac_tool_prefix}otool" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + OTOOL=$ac_cv_prog_OTOOL + if test -n "$OTOOL"; then +- { $as_echo "$as_me:$LINENO: result: $OTOOL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 + $as_echo "$OTOOL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7477,9 +7705,9 @@ + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. + set dummy otool; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_OTOOL"; then +@@ -7490,24 +7718,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OTOOL="otool" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL + if test -n "$ac_ct_OTOOL"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_OTOOL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 + $as_echo "$ac_ct_OTOOL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7516,7 +7744,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -7529,9 +7757,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. + set dummy ${ac_tool_prefix}otool64; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_OTOOL64+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$OTOOL64"; then +@@ -7542,24 +7770,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OTOOL64="${ac_tool_prefix}otool64" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + OTOOL64=$ac_cv_prog_OTOOL64 + if test -n "$OTOOL64"; then +- { $as_echo "$as_me:$LINENO: result: $OTOOL64" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 + $as_echo "$OTOOL64" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7569,9 +7797,9 @@ + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. + set dummy otool64; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_OTOOL64"; then +@@ -7582,24 +7810,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_OTOOL64="otool64" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 + if test -n "$ac_ct_OTOOL64"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_OTOOL64" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 + $as_echo "$ac_ct_OTOOL64" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7608,7 +7836,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -7644,9 +7872,9 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 ++ { $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 test "${lt_cv_apple_cc_single_mod+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_apple_cc_single_mod=no +@@ -7671,22 +7899,18 @@ + rm -f conftest.* + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 + $as_echo "$lt_cv_apple_cc_single_mod" >&6; } +- { $as_echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 ++ { $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 test "${lt_cv_ld_exported_symbols_list+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -7697,42 +7921,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- lt_cv_ld_exported_symbols_list=no ++ lt_cv_ld_exported_symbols_list=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 + $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) +@@ -7774,14 +7973,14 @@ + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu +-{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 + $as_echo_n "checking how to run the C preprocessor... " >&6; } + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= + fi + if test -z "$CPP"; then +- if test "${ac_cv_prog_CPP+set}" = set; then ++ if test "${ac_cv_prog_CPP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + # Double quotes because CPP needs to be expanded +@@ -7796,11 +7995,7 @@ + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include <limits.h> +@@ -7809,78 +8004,34 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <ac_nonexistent.h> + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++if $ac_preproc_ok; then : + break + fi + +@@ -7892,7 +8043,7 @@ + else + ac_cv_prog_CPP=$CPP + fi +-{ $as_echo "$as_me:$LINENO: result: $CPP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 + $as_echo "$CPP" >&6; } + ac_preproc_ok=false + for ac_c_preproc_warn_flag in '' yes +@@ -7903,11 +8054,7 @@ + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include <limits.h> +@@ -7916,87 +8063,40 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <ac_nonexistent.h> + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++if $ac_preproc_ok; then : ++ + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error "C preprocessor \"$CPP\" fails sanity check ++See \`config.log' for more details." "$LINENO" 5; } + fi + + ac_ext=c +@@ -8006,16 +8106,12 @@ + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +-{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ++{ $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 test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <stdlib.h> + #include <stdarg.h> +@@ -8030,48 +8126,23 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_stdc=no ++ ac_cv_header_stdc=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <string.h> + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "memchr" >/dev/null 2>&1; then +- : ++ $EGREP "memchr" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -8081,18 +8152,14 @@ + + if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <stdlib.h> + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "free" >/dev/null 2>&1; then +- : ++ $EGREP "free" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -8102,14 +8169,10 @@ + + if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + : + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <ctype.h> + #include <stdlib.h> +@@ -8136,118 +8199,34 @@ + return 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_run "$LINENO"; then : + +-( exit $ac_status ) +-ac_cv_header_stdc=no ++else ++ ac_cv_header_stdc=no + fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 + $as_echo "$ac_cv_header_stdc" >&6; } + if test $ac_cv_header_stdc = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define STDC_HEADERS 1 +-_ACEOF ++$as_echo "#define STDC_HEADERS 1" >>confdefs.h + + fi + + # On IRIX 5.3, sys/types and inttypes.h are conflicting. +- +- +- +- +- +- +- +- +- + for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ++" ++eval as_val=\$$as_ac_Header ++ if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF + #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +@@ -8257,62 +8236,13 @@ + done + + +- + for ac_header in dlfcn.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++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 : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DLFCN_H 1 + _ACEOF + + fi +@@ -8335,9 +8265,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then +@@ -8348,24 +8278,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { $as_echo "$as_me:$LINENO: result: $CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 + $as_echo "$CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -8379,9 +8309,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CXX+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then +@@ -8392,24 +8322,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CXX="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 + $as_echo "$ac_ct_CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -8422,7 +8352,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -8433,53 +8363,36 @@ + fi + fi + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 + set X $ac_compile + ac_compiler=$2 +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ rm -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++{ $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_cxx_compiler_gnu+set}" = set; then ++if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -8493,37 +8406,16 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 + $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } + if test $ac_compiler_gnu = yes; then + GXX=yes +@@ -8532,20 +8424,16 @@ + fi + ac_test_CXXFLAGS=${CXXFLAGS+set} + ac_save_CXXFLAGS=$CXXFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 + $as_echo_n "checking whether $CXX accepts -g... " >&6; } +-if test "${ac_cv_prog_cxx_g+set}" = set; then ++if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -8556,35 +8444,27 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ CXXFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ + +- CXXFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_cxx_try_compile "$LINENO"; then : ++ ++else ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++ CXXFLAGS="-g" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -8595,82 +8475,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cxx_werror_flag=$ac_save_cxx_werror_flag +- CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 + $as_echo "$ac_cv_prog_cxx_g" >&6; } + if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +@@ -8695,9 +8510,9 @@ + + depcc="$CXX" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++{ $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_CXX_dependencies_compiler_type+set}" = set; then ++if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +@@ -8723,6 +8538,11 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -8734,11 +8554,23 @@ + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c +- : > sub/conftst$i.h ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" + case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -8748,23 +8580,33 @@ + break + fi + ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; + none) break ;; + esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. + if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ++ source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings +- # (even with -Werror). So we grep stderr for any message +- # that says an option was ignored. +- if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi +@@ -8778,13 +8620,11 @@ + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 + $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + +- +- +-if ++ if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= +@@ -8803,10 +8643,10 @@ + ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +-{ $as_echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 + $as_echo_n "checking how to run the C++ preprocessor... " >&6; } + if test -z "$CXXCPP"; then +- if test "${ac_cv_prog_CXXCPP+set}" = set; then ++ if test "${ac_cv_prog_CXXCPP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + # Double quotes because CXXCPP needs to be expanded +@@ -8821,11 +8661,7 @@ + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include <limits.h> +@@ -8834,78 +8670,34 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <ac_nonexistent.h> + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++if $ac_preproc_ok; then : + break + fi + +@@ -8917,7 +8709,7 @@ + else + ac_cv_prog_CXXCPP=$CXXCPP + fi +-{ $as_echo "$as_me:$LINENO: result: $CXXCPP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 + $as_echo "$CXXCPP" >&6; } + ac_preproc_ok=false + for ac_cxx_preproc_warn_flag in '' yes +@@ -8928,11 +8720,7 @@ + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include <limits.h> +@@ -8941,81 +8729,37 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <ac_nonexistent.h> + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++if $ac_preproc_ok; then : ++ + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + _lt_caught_CXX_error=yes; } + fi +@@ -9042,7 +8786,7 @@ + + + # Check whether --enable-shared was given. +-if test "${enable_shared+set}" = set; then ++if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; +@@ -9075,7 +8819,7 @@ + + + # Check whether --with-pic was given. +-if test "${with_pic+set}" = set; then ++if test "${with_pic+set}" = set; then : + withval=$with_pic; pic_mode="$withval" + else + pic_mode=default +@@ -9091,7 +8835,7 @@ + + + # Check whether --enable-fast-install was given. +-if test "${enable_fast_install+set}" = set; then ++if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; +@@ -9172,9 +8916,9 @@ + setopt NO_GLOB_SUBST + fi + +-{ $as_echo "$as_me:$LINENO: checking for objdir" >&5 ++{ $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 test "${lt_cv_objdir+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + rm -f .libs 2>/dev/null +@@ -9187,7 +8931,7 @@ + fi + rmdir .libs 2>/dev/null + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 + $as_echo "$lt_cv_objdir" >&6; } + objdir=$lt_cv_objdir + +@@ -9280,9 +9024,9 @@ + case $deplibs_check_method in + file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then +- { $as_echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 ++ { $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 test "${lt_cv_path_MAGIC_CMD+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in +@@ -9333,10 +9077,10 @@ + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 + $as_echo "$MAGIC_CMD" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -9346,9 +9090,9 @@ + + if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then +- { $as_echo "$as_me:$LINENO: checking for file" >&5 ++ { $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 test "${lt_cv_path_MAGIC_CMD+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in +@@ -9399,10 +9143,10 @@ + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 + $as_echo "$MAGIC_CMD" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -9479,9 +9223,9 @@ + if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + +- { $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++ { $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 test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_rtti_exceptions=no +@@ -9497,11 +9241,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9500: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9244: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9504: \$? = $ac_status" >&5 ++ echo "$as_me:9248: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9514,7 +9258,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 + $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + + if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then +@@ -9534,7 +9278,7 @@ + lt_prog_compiler_pic= + lt_prog_compiler_static= + +-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 + $as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then +@@ -9806,7 +9550,7 @@ + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 + $as_echo "$lt_prog_compiler_pic" >&6; } + + +@@ -9818,9 +9562,9 @@ + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic"; then +- { $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 ++ { $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 test "${lt_cv_prog_compiler_pic_works+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works=no +@@ -9836,11 +9580,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9839: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9583: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9843: \$? = $ac_status" >&5 ++ echo "$as_me:9587: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9853,7 +9597,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 + $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works" = xyes; then +@@ -9877,9 +9621,9 @@ + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++{ $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 test "${lt_cv_prog_compiler_static_works+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works=no +@@ -9905,7 +9649,7 @@ + LDFLAGS="$save_LDFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 + $as_echo "$lt_cv_prog_compiler_static_works" >&6; } + + if test x"$lt_cv_prog_compiler_static_works" = xyes; then +@@ -9920,9 +9664,9 @@ + + + +- { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++ { $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 test "${lt_cv_prog_compiler_c_o+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o=no +@@ -9941,11 +9685,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9944: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9688: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:9948: \$? = $ac_status" >&5 ++ echo "$as_me:9692: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -9967,7 +9711,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 + $as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + +@@ -9975,9 +9719,9 @@ + + + +- { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++ { $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 test "${lt_cv_prog_compiler_c_o+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o=no +@@ -9996,11 +9740,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9999: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9743: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:10003: \$? = $ac_status" >&5 ++ echo "$as_me:9747: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -10022,7 +9766,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 + $as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + +@@ -10031,7 +9775,7 @@ + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 + $as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* +@@ -10039,10 +9783,10 @@ + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 + $as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 + $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +@@ -10055,7 +9799,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 + $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= +@@ -10115,6 +9859,9 @@ + openbsd*) + with_gnu_ld=no + ;; ++ linux* | k*bsd*-gnu) ++ link_all_deplibs=no ++ ;; + esac + + ld_shlibs=yes +@@ -10297,7 +10044,7 @@ + fi + ;; + +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= +@@ -10472,6 +10219,7 @@ + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi ++ link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then +@@ -10497,11 +10245,7 @@ + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -10512,27 +10256,7 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -10546,16 +10270,9 @@ + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -10568,11 +10285,7 @@ + else + # Determine the default libpath from the value encoded in an + # empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -10583,27 +10296,7 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -10617,16 +10310,9 @@ + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -10838,42 +10524,16 @@ + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" +- cat >conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + int foo(void) {} + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' +@@ -10886,7 +10546,7 @@ + link_all_deplibs=yes + ;; + +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else +@@ -11129,7 +10789,7 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 + $as_echo "$ld_shlibs" >&6; } + test "$ld_shlibs" = no && can_build_shared=no + +@@ -11166,16 +10826,16 @@ + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++ { $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; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -11189,11 +10849,11 @@ + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc=no + else +@@ -11204,7 +10864,7 @@ + cat conftest.err 1>&5 + fi + $RM conftest* +- { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 + $as_echo "$archive_cmds_need_lc" >&6; } + ;; + esac +@@ -11368,7 +11028,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 + $as_echo_n "checking dynamic linker characteristics... " >&6; } + + if test "$GCC" = yes; then +@@ -11790,11 +11450,7 @@ + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -11805,41 +11461,13 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then ++if ac_fn_c_try_link "$LINENO"; then : ++ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes + fi +- +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +@@ -11848,13 +11476,10 @@ + # before this can be enabled. + hardcode_into_libs=yes + +- # Add ABI-specific directories to the system library path. +- sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" +- + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` +- sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" ++ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on +@@ -11866,6 +11491,18 @@ + dynamic_linker='GNU/Linux ld.so' + ;; + ++netbsdelf*-gnu) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ++ soname_spec='${libname}${release}${shared_ext}$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='NetBSD ld.elf_so' ++ ;; ++ + netbsd*) + version_type=sunos + need_lib_prefix=no +@@ -12054,7 +11691,7 @@ + dynamic_linker=no + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 + $as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +@@ -12156,7 +11793,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 + $as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action= + if test -n "$hardcode_libdir_flag_spec" || +@@ -12181,7 +11818,7 @@ + # directories. + hardcode_action=unsupported + fi +-{ $as_echo "$as_me:$LINENO: result: $hardcode_action" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 + $as_echo "$hardcode_action" >&6; } + + if test "$hardcode_action" = relink || +@@ -12226,18 +11863,14 @@ + + darwin*) + # if libdl is installed we need to link against it +- { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ++ { $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 test "${ac_cv_lib_dl_dlopen+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -12255,43 +11888,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dl_dlopen=no ++ ac_cv_lib_dl_dlopen=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ++{ $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" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else + +@@ -12304,33 +11912,19 @@ + ;; + + *) +- { $as_echo "$as_me:$LINENO: checking for shl_load" >&5 +-$as_echo_n "checking for shl_load... " >&6; } +-if test "${ac_cv_func_shl_load+set}" = set; then ++ ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" ++if test "x$ac_cv_func_shl_load" = x""yes; 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 : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldld $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define shl_load innocuous_shl_load +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char shl_load (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef shl_load + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -12339,13 +11933,6 @@ + extern "C" + #endif + char shl_load (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_shl_load || defined __stub___shl_load +-choke me +-#endif +- + int + main () + { +@@ -12354,212 +11941,32 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_shl_load=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dld_shl_load=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_shl_load=no ++ ac_cv_lib_dld_shl_load=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +-$as_echo "$ac_cv_func_shl_load" >&6; } +-if test "x$ac_cv_func_shl_load" = x""yes; then +- lt_cv_dlopen="shl_load" ++{ $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 : ++ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + else +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shl_load (); +-int +-main () +-{ +-return shl_load (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_dld_shl_load=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dld_shl_load=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +-else +- { $as_echo "$as_me:$LINENO: checking for dlopen" >&5 +-$as_echo_n "checking for dlopen... " >&6; } +-if test "${ac_cv_func_dlopen+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define dlopen innocuous_dlopen +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char dlopen (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef dlopen +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dlopen (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_dlopen || defined __stub___dlopen +-choke me +-#endif +- +-int +-main () +-{ +-return dlopen (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_dlopen=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_dlopen=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +-$as_echo "$ac_cv_func_dlopen" >&6; } +-if test "x$ac_cv_func_dlopen" = x""yes; then +- lt_cv_dlopen="dlopen" +-else +- { $as_echo "$as_me:$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 ++ ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" ++if test "x$ac_cv_func_dlopen" = x""yes; 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 : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -12577,57 +11984,28 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dl_dlopen=no ++ ac_cv_lib_dl_dlopen=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ++{ $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" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else +- { $as_echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 ++ { $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 test "${ac_cv_lib_svld_dlopen+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsvld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -12645,57 +12023,28 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_svld_dlopen=no ++ ac_cv_lib_svld_dlopen=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 ++{ $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" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + else +- { $as_echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 ++ { $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 test "${ac_cv_lib_dld_dld_link+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -12713,43 +12062,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dld_dld_link=no ++ ac_cv_lib_dld_dld_link=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 ++{ $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" = x""yes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + fi + +@@ -12788,9 +12112,9 @@ + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + +- { $as_echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 ++ { $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 test "${lt_cv_dlopen_self+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : +@@ -12799,7 +12123,7 @@ + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +-#line 12802 "configure" ++#line 12126 "configure" + #include "confdefs.h" + + #if HAVE_DLFCN_H +@@ -12858,11 +12182,11 @@ + return status; + } + _LT_EOF +- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in +@@ -12879,14 +12203,14 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 + $as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" +- { $as_echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 ++ { $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 test "${lt_cv_dlopen_self_static+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : +@@ -12895,7 +12219,7 @@ + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +-#line 12898 "configure" ++#line 12222 "configure" + #include "confdefs.h" + + #if HAVE_DLFCN_H +@@ -12954,11 +12278,11 @@ + return status; + } + _LT_EOF +- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in +@@ -12975,7 +12299,7 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 + $as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + +@@ -13014,12 +12338,12 @@ + + striplib= + old_striplib= +-{ $as_echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 + $as_echo_n "checking whether stripping libraries is possible... " >&6; } + if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else + # FIXME - insert some real tests, host_os isn't really good enough +@@ -13028,15 +12352,15 @@ + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + ;; + esac +@@ -13054,12 +12378,12 @@ + + + # Report which library types will actually be built +- { $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 + $as_echo_n "checking if libtool supports shared libraries... " >&6; } +- { $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 + $as_echo "$can_build_shared" >&6; } + +- { $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 + $as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + +@@ -13080,14 +12404,14 @@ + fi + ;; + esac +- { $as_echo "$as_me:$LINENO: result: $enable_shared" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 + $as_echo "$enable_shared" >&6; } + +- { $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 + $as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes +- { $as_echo "$as_me:$LINENO: result: $enable_static" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 + $as_echo "$enable_static" >&6; } + + +@@ -13228,7 +12552,7 @@ + + + # Check whether --with-gnu-ld was given. +-if test "${with_gnu_ld+set}" = set; then ++if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + else + with_gnu_ld=no +@@ -13237,7 +12561,7 @@ + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 + $as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) +@@ -13267,13 +12591,13 @@ + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 + $as_echo_n "checking for GNU ld... " >&6; } + else +- { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ++ { $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 test "${lt_cv_path_LD+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then +@@ -13304,18 +12628,16 @@ + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { $as_echo "$as_me:$LINENO: result: $LD" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 + $as_echo "$LD" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi +-test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } +-{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ++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 test "${lt_cv_prog_gnu_ld+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +@@ -13328,7 +12650,7 @@ + ;; + esac + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 + $as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + +@@ -13383,7 +12705,7 @@ + fi + + # PORTME: fill in a description of your system's C++ link characteristics +- { $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 + $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in +@@ -13484,11 +12806,7 @@ + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -13499,27 +12817,7 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -13533,16 +12831,9 @@ + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -13556,11 +12847,7 @@ + else + # Determine the default libpath from the value encoded in an + # empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -13571,27 +12858,7 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -13605,16 +12872,9 @@ + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -14358,7 +13618,7 @@ + ;; + esac + +- { $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 + $as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + +@@ -14386,11 +13646,11 @@ + }; + _LT_EOF + +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + +@@ -14571,7 +13831,7 @@ + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX= + +-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 + $as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + # C++ specific cases for pic, static, wl, etc. +@@ -14791,7 +14051,7 @@ + ;; + esac + ;; +- netbsd*) ++ netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise +@@ -14888,7 +14148,7 @@ + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 + $as_echo "$lt_prog_compiler_pic_CXX" >&6; } + + +@@ -14897,9 +14157,9 @@ + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_CXX"; then +- { $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 + $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +-if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_CXX=no +@@ -14915,11 +14175,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14918: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14178: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:14922: \$? = $ac_status" >&5 ++ echo "$as_me:14182: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -14932,7 +14192,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 + $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then +@@ -14953,9 +14213,9 @@ + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++{ $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_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_CXX=no +@@ -14981,7 +14241,7 @@ + LDFLAGS="$save_LDFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 + $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then +@@ -14993,9 +14253,9 @@ + + + +- { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++ { $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_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_CXX=no +@@ -15014,11 +14274,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:15017: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14277: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:15021: \$? = $ac_status" >&5 ++ echo "$as_me:14281: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -15040,14 +14300,14 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 + $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + +- { $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++ { $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_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_CXX=no +@@ -15066,11 +14326,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:15069: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14329: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:15073: \$? = $ac_status" >&5 ++ echo "$as_me:14333: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -15092,7 +14352,7 @@ + $RM conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 + $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + +@@ -15101,7 +14361,7 @@ + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 + $as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* +@@ -15109,10 +14369,10 @@ + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 + $as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 + $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +@@ -15122,7 +14382,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 + $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' +@@ -15142,13 +14402,16 @@ + cygwin* | mingw* | cegcc*) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + ;; ++ linux* | k*bsd*-gnu) ++ link_all_deplibs_CXX=no ++ ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + +-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 + $as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + +@@ -15176,16 +14439,16 @@ + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++ { $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; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -15199,11 +14462,11 @@ + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc_CXX=no + else +@@ -15214,7 +14477,7 @@ + cat conftest.err 1>&5 + fi + $RM conftest* +- { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 + $as_echo "$archive_cmds_need_lc_CXX" >&6; } + ;; + esac +@@ -15285,7 +14548,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 + $as_echo_n "checking dynamic linker characteristics... " >&6; } + + library_names_spec= +@@ -15655,11 +14918,7 @@ + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -15670,41 +14929,13 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then ++if ac_fn_cxx_try_link "$LINENO"; then : ++ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes + fi +- +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +@@ -15713,13 +14944,10 @@ + # before this can be enabled. + hardcode_into_libs=yes + +- # Add ABI-specific directories to the system library path. +- sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" +- + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` +- sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" ++ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on +@@ -15731,6 +14959,18 @@ + dynamic_linker='GNU/Linux ld.so' + ;; + ++netbsdelf*-gnu) ++ version_type=linux ++ need_lib_prefix=no ++ need_version=no ++ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ++ soname_spec='${libname}${release}${shared_ext}$major' ++ shlibpath_var=LD_LIBRARY_PATH ++ shlibpath_overrides_runpath=no ++ hardcode_into_libs=yes ++ dynamic_linker='NetBSD ld.elf_so' ++ ;; ++ + netbsd*) + version_type=sunos + need_lib_prefix=no +@@ -15919,7 +15159,7 @@ + dynamic_linker=no + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 + $as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +@@ -15970,7 +15210,7 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 + $as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_CXX= + if test -n "$hardcode_libdir_flag_spec_CXX" || +@@ -15995,7 +15235,7 @@ + # directories. + hardcode_action_CXX=unsupported + fi +-{ $as_echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 + $as_echo "$hardcode_action_CXX" >&6; } + + if test "$hardcode_action_CXX" = relink || +@@ -16054,7 +15294,7 @@ + + + : ${CONFIG_LT=./config.lt} +-{ $as_echo "$as_me:$LINENO: creating $CONFIG_LT" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_LT" >&5 + $as_echo "$as_me: creating $CONFIG_LT" >&6;} + cat >"$CONFIG_LT" <<_LTEOF + #! $SHELL +@@ -16066,13 +15306,13 @@ + _LTEOF + + cat >>"$CONFIG_LT" <<\_LTEOF +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++## -------------------- ## ++## 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 ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +@@ -16080,23 +15320,15 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- + as_nl=' + ' + export as_nl +@@ -16104,7 +15336,13 @@ + as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' + else +@@ -16115,7 +15353,7 @@ + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; +- case $arg in ++ case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +@@ -16138,13 +15376,6 @@ + } + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- + + # IFS + # We need space, tab and new line, in precisely that order. Quoting is +@@ -16154,15 +15385,15 @@ + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -16174,12 +15405,16 @@ + fi + if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' +@@ -16191,7 +15426,90 @@ + LANGUAGE=C + export LANGUAGE + +-# Required to use basename. ++# CDPATH. ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH ++ ++ ++ ++# as_fn_error ERROR [LINENO LOG_FD] ++# --------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with status $?, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$?; test $as_status -eq 0 && as_status=1 ++ if test "$3"; then ++ as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 ++ fi ++ $as_echo "$as_me: error: $1" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith ++ ++ + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -16205,8 +15523,12 @@ + as_basename=false + fi + +- +-# Name of the executable. ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi ++ + as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ +@@ -16226,77 +15548,25 @@ + } + s/.*/./; q'` + +-# CDPATH. +-$as_unset CDPATH +- +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) +- sed -n ' +- p +- /[$]LINENO/= +- ' <$as_myself | +- sed ' +- s/[$]LINENO.*/&-/ +- t lineno +- b +- :lineno +- N +- :loop +- s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ +- t loop +- s/-\n.*// +- ' >$as_me.lineno && +- chmod +x "$as_me.lineno" || +- { { $as_echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 +-$as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensitive to this). +- . "./$as_me.lineno" +- # Exit status is that of the last command. +- exit +-} +- +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi + + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then +@@ -16325,8 +15595,56 @@ + rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file + rmdir conf$$.dir 2>/dev/null + ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ ++ ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" "$LINENO" 5 ++ ++ ++} # as_fn_mkdir_p + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +@@ -16345,10 +15663,10 @@ + if test -d "$1"; then + test -d "$1/."; + else +- case $1 in ++ case $1 in #( + -*)set "./$1";; + esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +@@ -16388,7 +15706,7 @@ + + lt_cl_version="\ + gtk+ config.lt 2.17.10 +-configured by $0, generated by GNU Autoconf 2.63. ++configured by $0, generated by GNU Autoconf 2.64. + + Copyright (C) 2008 Free Software Foundation, Inc. + This config.lt script is free software; the Free Software Foundation +@@ -16406,17 +15724,11 @@ + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + +- -*) { { $as_echo "$as_me:$LINENO: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&5 +-$as_echo "$as_me: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&2;} +- { (exit 1); exit 1; }; } ;; +- +- *) { { $as_echo "$as_me:$LINENO: error: unrecognized argument: $1 +-Try \`$0 --help' for more information." >&5 +-$as_echo "$as_me: error: unrecognized argument: $1 +-Try \`$0 --help' for more information." >&2;} +- { (exit 1); exit 1; }; } ;; ++ -*) as_fn_error "unrecognized option: $1 ++Try \`$0 --help' for more information." "$LINENO" 5 ;; ++ ++ *) as_fn_error "unrecognized argument: $1 ++Try \`$0 --help' for more information." "$LINENO" 5 ;; + esac + shift + done +@@ -16782,7 +16094,7 @@ + _LTEOF + + cat >>"$CONFIG_LT" <<\_LTEOF +-{ $as_echo "$as_me:$LINENO: creating $ofile" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 + $as_echo "$as_me: creating $ofile" >&6;} + + +@@ -17592,7 +16904,7 @@ + _LT_EOF + + +-{ (exit 0); exit 0; } ++as_fn_exit 0 + _LTEOF + chmod +x "$CONFIG_LT" + +@@ -17607,22 +16919,22 @@ + exec 5>/dev/null + $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false + exec 5>>config.log +- $lt_cl_success || { (exit 1); exit 1; } ++ $lt_cl_success || as_fn_exit 1 + fi + + + + # Make sure we use 64-bit versions of various file stuff. + # Check whether --enable-largefile was given. +-if test "${enable_largefile+set}" = set; then ++if test "${enable_largefile+set}" = set; then : + enableval=$enable_largefile; + fi + + if test "$enable_largefile" != no; then + +- { $as_echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 + $as_echo_n "checking for special C compiler options needed for large files... " >&6; } +-if test "${ac_cv_sys_largefile_CC+set}" = set; then ++if test "${ac_cv_sys_largefile_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_cv_sys_largefile_CC=no +@@ -17631,11 +16943,7 @@ + while :; do + # IRIX 6.2 and later do not support large files by default, + # so use the C compiler's -n32 option if that helps. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <sys/types.h> + /* Check that off_t can represent 2**63 - 1 correctly. +@@ -17654,60 +16962,14 @@ + return 0; + } + _ACEOF +- rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++ if ac_fn_c_try_compile "$LINENO"; then : + break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext + CC="$CC -n32" +- rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++ if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_largefile_CC=' -n32'; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext + break + done +@@ -17715,23 +16977,19 @@ + rm -f conftest.$ac_ext + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 + $as_echo "$ac_cv_sys_largefile_CC" >&6; } + if test "$ac_cv_sys_largefile_CC" != no; then + CC=$CC$ac_cv_sys_largefile_CC + fi + +- { $as_echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } +-if test "${ac_cv_sys_file_offset_bits+set}" = set; then ++if test "${ac_cv_sys_file_offset_bits+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + while :; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <sys/types.h> + /* Check that off_t can represent 2**63 - 1 correctly. +@@ -17750,38 +17008,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=no; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #define _FILE_OFFSET_BITS 64 + #include <sys/types.h> +@@ -17801,38 +17032,15 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=64; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_file_offset_bits=unknown + break + done + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 + $as_echo "$ac_cv_sys_file_offset_bits" >&6; } + case $ac_cv_sys_file_offset_bits in #( + no | unknown) ;; +@@ -17844,17 +17052,13 @@ + esac + rm -rf conftest* + if test $ac_cv_sys_file_offset_bits = unknown; then +- { $as_echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 + $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } +-if test "${ac_cv_sys_large_files+set}" = set; then ++if test "${ac_cv_sys_large_files+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + while :; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <sys/types.h> + /* Check that off_t can represent 2**63 - 1 correctly. +@@ -17873,38 +17077,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=no; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #define _LARGE_FILES 1 + #include <sys/types.h> +@@ -17924,38 +17101,15 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=1; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_large_files=unknown + break + done + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 + $as_echo "$ac_cv_sys_large_files" >&6; } + case $ac_cv_sys_large_files in #( + no | unknown) ;; +@@ -17972,79 +17126,203 @@ + + # By default we simply use the C compiler to build assembly code. + +-: ${CCAS='$(CC)'} +-# Set ASFLAGS if not already set. +-: ${CCASFLAGS='$(CFLAGS)'} +- +- +-# Extract the first word of "nm", so it can be a program name with args. +-set dummy nm; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_NM+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- case $NM in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_NM="$NM" # 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_NM="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS ++test "${CCAS+set}" = set || CCAS=$CC ++test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + +- test -z "$ac_cv_path_NM" && ac_cv_path_NM="nm" +- ;; +-esac +-fi +-NM=$ac_cv_path_NM +-if test -n "$NM"; then +- { $as_echo "$as_me:$LINENO: result: $NM" >&5 +-$as_echo "$NM" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi + + ++depcc="$CCAS" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 +-$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } +- # Check whether --enable-maintainer-mode was given. +-if test "${enable_maintainer_mode+set}" = set; then +- enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval ++{ $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_CCAS_dependencies_compiler_type+set}" = set; then : ++ $as_echo_n "(cached) " >&6 + else +- USE_MAINTAINER_MODE=no +-fi +- +- { $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 +-$as_echo "$USE_MAINTAINER_MODE" >&6; } +- ++ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then ++ # We make a subdir and do the tests there. Otherwise we can end up ++ # making bogus files that we don't know about and never remove. For ++ # instance it was reported that on HP-UX the gcc test will end up ++ # making a dummy file named `D' -- because `-MD' means `put the output ++ # in D'. ++ mkdir conftest.dir ++ # Copy depcomp to subdir because otherwise we won't find it if we're ++ # using a relative directory. ++ cp "$am_depcomp" conftest.dir ++ cd conftest.dir ++ # We will build objects and dependencies in a subdirectory because ++ # it helps to detect inapplicable dependency modes. For instance ++ # both Tru64's cc and ICC support -MD to output dependencies as a ++ # side effect of compilation, but ICC will put the dependencies in ++ # the current directory while Tru64 will put them in the object ++ # directory. ++ mkdir sub + +-if test $USE_MAINTAINER_MODE = yes; then +- MAINTAINER_MODE_TRUE= +- MAINTAINER_MODE_FALSE='#' +-else +- MAINTAINER_MODE_TRUE='#' +- MAINTAINER_MODE_FALSE= +-fi ++ am_cv_CCAS_dependencies_compiler_type=none ++ if test "$am_compiler_list" = ""; then ++ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` ++ fi ++ am__universal=false + +- MAINT=$MAINTAINER_MODE_TRUE ++ ++ for depmode in $am_compiler_list; do ++ # Setup a source with many dependencies, because some compilers ++ # like to wrap large dependency lists on column 80 (with \), and ++ # we should not choose a depcomp mode which is confused by this. ++ # ++ # We need to recreate these files for each test, as the compiler may ++ # overwrite some of them when testing with obscure command lines. ++ # This happens at least with the AIX C compiler. ++ : > sub/conftest.c ++ for i in 1 2 3 4 5 6; do ++ echo '#include "conftst'$i'.h"' >> sub/conftest.c ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h ++ done ++ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf ++ ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" ++ case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; ++ nosideeffect) ++ # after this tag, mechanisms are not by side-effect, so they'll ++ # only be used when explicitly requested ++ if test "x$enable_dependency_tracking" = xyes; then ++ continue ++ else ++ break ++ fi ++ ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; ++ none) break ;; ++ esac ++ if depmode=$depmode \ ++ source=sub/conftest.c object=$am__obj \ ++ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ++ # icc doesn't choke on unknown options, it will just issue warnings ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else ++ am_cv_CCAS_dependencies_compiler_type=$depmode ++ break ++ fi ++ fi ++ done ++ ++ cd .. ++ rm -rf conftest.dir ++else ++ am_cv_CCAS_dependencies_compiler_type=none ++fi ++ ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; } ++CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type ++ ++ if ++ test "x$enable_dependency_tracking" != xno \ ++ && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then ++ am__fastdepCCAS_TRUE= ++ am__fastdepCCAS_FALSE='#' ++else ++ am__fastdepCCAS_TRUE='#' ++ am__fastdepCCAS_FALSE= ++fi ++ ++ ++# Extract the first word of "nm", so it can be a program name with args. ++set dummy nm; 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_NM+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ case $NM in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_NM="$NM" # 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_NM="$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_NM" && ac_cv_path_NM="nm" ++ ;; ++esac ++fi ++NM=$ac_cv_path_NM ++if test -n "$NM"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NM" >&5 ++$as_echo "$NM" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++ ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 ++$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } ++ # Check whether --enable-maintainer-mode was given. ++if test "${enable_maintainer_mode+set}" = set; then : ++ enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval ++else ++ USE_MAINTAINER_MODE=no ++fi ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 ++$as_echo "$USE_MAINTAINER_MODE" >&6; } ++ if test $USE_MAINTAINER_MODE = yes; then ++ MAINTAINER_MODE_TRUE= ++ MAINTAINER_MODE_FALSE='#' ++else ++ MAINTAINER_MODE_TRUE='#' ++ MAINTAINER_MODE_FALSE= ++fi ++ ++ MAINT=$MAINTAINER_MODE_TRUE + + + +-{ $as_echo "$as_me:$LINENO: checking for some Win32 platform" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for some Win32 platform" >&5 + $as_echo_n "checking for some Win32 platform... " >&6; } + case "$host" in + *-*-mingw*|*-*-cygwin*) +@@ -18054,11 +17332,9 @@ + platform_win32=no + ;; + esac +-{ $as_echo "$as_me:$LINENO: result: $platform_win32" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $platform_win32" >&5 + $as_echo "$platform_win32" >&6; } +- +- +-if test "$platform_win32" = "yes"; then ++ if test "$platform_win32" = "yes"; then + PLATFORM_WIN32_TRUE= + PLATFORM_WIN32_FALSE='#' + else +@@ -18067,9 +17343,7 @@ + fi + + +- +- +-if test "$os_win32" = "yes"; then ++ if test "$os_win32" = "yes"; then + OS_WIN32_TRUE= + OS_WIN32_FALSE='#' + else +@@ -18077,9 +17351,7 @@ + OS_WIN32_FALSE= + fi + +- +- +-if test "$os_win32" != "yes"; then ++ if test "$os_win32" != "yes"; then + OS_UNIX_TRUE= + OS_UNIX_FALSE='#' + else +@@ -18087,9 +17359,7 @@ + OS_UNIX_FALSE= + fi + +- +- +-if test "$os_linux" = "yes"; then ++ if test "$os_linux" = "yes"; then + OS_LINUX_TRUE= + OS_LINUX_FALSE='#' + else +@@ -18102,9 +17372,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. + set dummy ${ac_tool_prefix}windres; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_WINDRES+set}" = set; then ++if test "${ac_cv_prog_WINDRES+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$WINDRES"; then +@@ -18115,24 +17385,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_WINDRES="${ac_tool_prefix}windres" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + WINDRES=$ac_cv_prog_WINDRES + if test -n "$WINDRES"; then +- { $as_echo "$as_me:$LINENO: result: $WINDRES" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 + $as_echo "$WINDRES" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -18142,9 +17412,9 @@ + ac_ct_WINDRES=$WINDRES + # Extract the first word of "windres", so it can be a program name with args. + set dummy windres; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_WINDRES+set}" = set; then ++if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_WINDRES"; then +@@ -18155,24 +17425,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_WINDRES="windres" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES + if test -n "$ac_ct_WINDRES"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_WINDRES" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5 + $as_echo "$ac_ct_WINDRES" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -18181,7 +17451,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -18192,15 +17462,13 @@ + fi + + if test "$WINDRES" = no; then +- { { $as_echo "$as_me:$LINENO: error: *** Could not find an implementation of windres in your PATH." >&5 +-$as_echo "$as_me: error: *** Could not find an implementation of windres in your PATH." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "*** Could not find an implementation of windres in your PATH." "$LINENO" 5 + fi + # Extract the first word of "lib.exe", so it can be a program name with args. + set dummy lib.exe; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_ms_librarian+set}" = set; then ++if test "${ac_cv_prog_ms_librarian+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ms_librarian"; then +@@ -18211,14 +17479,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_ms_librarian="yes" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_prog_ms_librarian" && ac_cv_prog_ms_librarian="no" +@@ -18226,18 +17494,16 @@ + fi + ms_librarian=$ac_cv_prog_ms_librarian + if test -n "$ms_librarian"; then +- { $as_echo "$as_me:$LINENO: result: $ms_librarian" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ms_librarian" >&5 + $as_echo "$ms_librarian" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + fi +- +- +-if test x$ms_librarian = xyes; then ++ if test x$ms_librarian = xyes; then + MS_LIB_AVAILABLE_TRUE= + MS_LIB_AVAILABLE_FALSE='#' + else +@@ -18249,5578 +17515,167 @@ + + + # Check whether --enable-debug was given. +-if test "${enable_debug+set}" = set; then ++if test "${enable_debug+set}" = set; then : + enableval=$enable_debug; + else + enable_debug=yes + fi + + # Check whether --enable-shm was given. +-if test "${enable_shm+set}" = set; then ++if test "${enable_shm+set}" = set; then : + enableval=$enable_shm; + else + enable_shm="yes" + fi + + # Check whether --enable-xkb was given. +-if test "${enable_xkb+set}" = set; then ++if test "${enable_xkb+set}" = set; then : + enableval=$enable_xkb; + else + enable_xkb="maybe" + fi + + # Check whether --enable-xinerama was given. +-if test "${enable_xinerama+set}" = set; then ++if test "${enable_xinerama+set}" = set; then : + enableval=$enable_xinerama; + else + enable_xinerama="yes" + fi + + # Check whether --enable-rebuilds was given. +-if test "${enable_rebuilds+set}" = set; then ++if test "${enable_rebuilds+set}" = set; then : + enableval=$enable_rebuilds; + else + enable_rebuilds=yes +-fi +- +-# Check whether --enable-visibility was given. +-if test "${enable_visibility+set}" = set; then +- enableval=$enable_visibility; +-else +- enable_visibility=yes +-fi +- +- +- +-# Check whether --with-xinput was given. +-if test "${with_xinput+set}" = set; then +- withval=$with_xinput; +-fi +- +- +-if test "$platform_win32" = yes; then +- gdktarget=win32 +-else +- gdktarget=x11 +-fi +- +- +-# Check whether --with-gdktarget was given. +-if test "${with_gdktarget+set}" = set; then +- withval=$with_gdktarget; gdktarget=$with_gdktarget +-fi +- +- +- +-case $gdktarget in +- x11|win32|quartz|directfb) ;; +- *) { { $as_echo "$as_me:$LINENO: error: Invalid target for GDK: use x11, quartz, directfb or win32." >&5 +-$as_echo "$as_me: error: Invalid target for GDK: use x11, quartz, directfb or win32." >&2;} +- { (exit 1); exit 1; }; };; +-esac +- +-gdktargetlib=libgdk-$gdktarget-$GTK_API_VERSION.la +-gtktargetlib=libgtk-$gdktarget-$GTK_API_VERSION.la +- +- +- +- +-if test "x$enable_debug" = "xyes"; then +- test "$cflags_set" = set || CFLAGS="$CFLAGS -g" +- GTK_DEBUG_FLAGS="-DG_ENABLE_DEBUG -DG_ERRORCHECK_MUTEXES" +-else +- if test "x$enable_debug" = "xno"; then +- GTK_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS" +- else +- GTK_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS" +- fi +-fi +- +- +-if test "x$enable_visibility" = "xno"; then +- GTK_DEBUG_FLAGS="$GTK_DEBUG_FLAGS -DDISABLE_VISIBILITY" +-fi +- +- +- +-cat >>confdefs.h <<_ACEOF +-#define GTK_COMPILED_WITH_DEBUGGING "${enable_debug}" +-_ACEOF +- +- +- +-# Build time sanity check... +-{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +-$as_echo_n "checking whether build environment is sane... " >&6; } +-# Just in case +-sleep 1 +-echo timestamp > conftest.file +-# Do `set' in a subshell so we don't clobber the current shell's +-# arguments. Must try -L first in case configure is actually a +-# symlink; some systems play weird games with the mod time of symlinks +-# (eg FreeBSD returns the mod time of the symlink's containing +-# directory). +-if ( +- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` +- if test "$*" = "X"; then +- # -L didn't work. +- set X `ls -t $srcdir/configure conftest.file` +- fi +- rm -f conftest.file +- if test "$*" != "X $srcdir/configure conftest.file" \ +- && test "$*" != "X conftest.file $srcdir/configure"; then +- +- # If neither matched, then we have a broken ls. This can happen +- # if, for instance, CONFIG_SHELL is bash and it inherits a +- # broken ls alias from the environment. This has actually +- # happened. Such a system could not be considered "sane". +- { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&5 +-$as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +- test "$2" = conftest.file +- ) +-then +- # Ok. +- : +-else +- { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! +-Check your system clock" >&5 +-$as_echo "$as_me: error: newly created file is older than distributed files! +-Check your system clock" >&2;} +- { (exit 1); exit 1; }; } +-fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- +-# Checks for programs. +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_func_search_save_LIBS=$LIBS +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char strerror (); +-int +-main () +-{ +-return strerror (); +- ; +- return 0; +-} +-_ACEOF +-for ac_lib in '' cposix; do +- if test -z "$ac_lib"; then +- ac_res="none required" +- else +- ac_res=-l$ac_lib +- LIBS="-l$ac_lib $ac_func_search_save_LIBS" +- fi +- rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_search_strerror=$ac_res +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext +- if test "${ac_cv_search_strerror+set}" = set; then +- break +-fi +-done +-if test "${ac_cv_search_strerror+set}" = set; then +- : +-else +- ac_cv_search_strerror=no +-fi +-rm conftest.$ac_ext +-LIBS=$ac_func_search_save_LIBS +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +-$as_echo "$ac_cv_search_strerror" >&6; } +-ac_res=$ac_cv_search_strerror +-if test "$ac_res" != no; then +- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +- +-fi +- +- +- +- +-{ $as_echo "$as_me:$LINENO: checking for ${CC-cc} option to accept ANSI C" >&5 +-$as_echo_n "checking for ${CC-cc} option to accept ANSI C... " >&6; } +-if test "${am_cv_prog_cc_stdc+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- am_cv_prog_cc_stdc=no +-ac_save_CC="$CC" +-# Don't try gcc -ansi; that turns off useful extensions and +-# breaks some systems' header files. +-# AIX -qlanglvl=ansi +-# Ultrix and OSF/1 -std1 +-# HP-UX 10.20 and later -Ae +-# HP-UX older versions -Aa -D_HPUX_SOURCE +-# SVR4 -Xc -D__EXTENSIONS__ +-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +-do +- CC="$ac_save_CC $ac_arg" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdarg.h> +-#include <stdio.h> +-#include <sys/types.h> +-#include <sys/stat.h> +-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +-struct buf { int x; }; +-FILE * (*rcsopen) (struct buf *, struct stat *, int); +-static char *e (p, i) +- char **p; +- int i; +-{ +- return p[i]; +-} +-static char *f (char * (*g) (char **, int), char **p, ...) +-{ +- char *s; +- va_list v; +- va_start (v,p); +- s = g (p, va_arg (v,int)); +- va_end (v); +- return s; +-} +-int test (int i, double x); +-struct s1 {int (*f) (int a);}; +-struct s2 {int (*f) (double a);}; +-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +-int argc; +-char **argv; +- +-int +-main () +-{ +- +-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- am_cv_prog_cc_stdc="$ac_arg"; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-done +-CC="$ac_save_CC" +- +-fi +- +-if test -z "$am_cv_prog_cc_stdc"; then +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: $am_cv_prog_cc_stdc" >&5 +-$as_echo "$am_cv_prog_cc_stdc" >&6; } +-fi +-case "x$am_cv_prog_cc_stdc" in +- x|xno) ;; +- *) CC="$CC $am_cv_prog_cc_stdc" ;; +-esac +- +-# Find a good install program. We prefer a C program (faster), +-# so one script is as good as another. But avoid the broken or +-# incompatible versions: +-# SysV /etc/install, /usr/sbin/install +-# SunOS /usr/etc/install +-# IRIX /sbin/install +-# AIX /bin/install +-# AmigaOS /C/install, which installs bootblocks on floppy discs +-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +-# AFS /usr/afsws/bin/install, which mishandles nonexistent args +-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +-# OS/2's system install, which has a completely different semantic +-# ./install, which can be erroneously created by make from ./install.sh. +-# Reject install programs that cannot install multiple files. +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ +- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ +- /usr/ucb/* ) ;; +- *) +- # OSF1 and SCO ODT 3.0 have their own names for install. +- # Don't use installbsd from OSF since it installs stuff as root +- # 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. +- : +- elif test $ac_prog = install && +- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +- # program-specific install script used by HP pwplus--don't use. +- : +- else +- rm -rf conftest.one conftest.two conftest.dir +- echo one > conftest.one +- echo two > conftest.two +- mkdir conftest.dir +- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && +- test -s conftest.one && test -s conftest.two && +- test -s conftest.dir/conftest.one && +- test -s conftest.dir/conftest.two +- then +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 +- fi +- fi +- fi +- done +- done +- ;; +-esac +- +-done +-IFS=$as_save_IFS +- +-rm -rf conftest.one conftest.two conftest.dir +- +-fi +- if test "${ac_cv_path_install+set}" = set; then +- INSTALL=$ac_cv_path_install +- else +- # As a last resort, use the slow shell script. Don't cache a +- # value for INSTALL within a source directory, because that will +- # break other packages using the cache if that directory is +- # removed, or if the value is a relative name. +- INSTALL=$ac_install_sh +- fi +-fi +-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 +-$as_echo "$INSTALL" >&6; } +- +-# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +-# It thinks the first close brace ends the variable substitution. +-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' +- +-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' +- +-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' +- +-{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-$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 { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.make <<\_ACEOF +-SHELL = /bin/sh +-all: +- @echo '@@@%%%=$(MAKE)=@@@%%%' +-_ACEOF +-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +-case `${MAKE-make} -f conftest.make 2>/dev/null` in +- *@@@%%%=?*=@@@%%%*) +- eval ac_cv_prog_make_${ac_make}_set=yes;; +- *) +- eval ac_cv_prog_make_${ac_make}_set=no;; +-esac +-rm -f conftest.make +-fi +-if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- SET_MAKE= +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- SET_MAKE="MAKE=${MAKE-make}" +-fi +- +- +-if test "x$GCC" = "xyes"; then +- case " $CFLAGS " in +- *[\ \ ]-Wall[\ \ ]*) ;; +- *) CFLAGS="$CFLAGS -Wall" ;; +- esac +- +- if test "x$enable_ansi" = "xyes"; then +- case " $CFLAGS " in +- *[\ \ ]-ansi[\ \ ]*) ;; +- *) CFLAGS="$CFLAGS -ansi" ;; +- esac +- +- case " $CFLAGS " in +- *[\ \ ]-pedantic[\ \ ]*) ;; +- *) CFLAGS="$CFLAGS -pedantic" ;; +- esac +- fi +-fi +- +-CPPFLAGS="$CPPFLAGS -DG_DISABLE_SINGLE_INCLUDES -DATK_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES" +- +-# Ensure MSVC-compatible struct packing convention is used when +-# compiling for Win32 with gcc. +-# What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while +-# gcc2 uses "-fnative-struct". +-if test x"$os_win32" = xyes; then +- if test x"$GCC" = xyes; then +- msnative_struct='' +- { $as_echo "$as_me:$LINENO: checking how to get MSVC-compatible struct packing" >&5 +-$as_echo_n "checking how to get MSVC-compatible struct packing... " >&6; } +- if test -z "$ac_cv_prog_CC"; then +- our_gcc="$CC" +- else +- our_gcc="$ac_cv_prog_CC" +- fi +- case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in +- 2.) +- if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then +- msnative_struct='-fnative-struct' +- fi +- ;; +- *) +- if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then +- msnative_struct='-mms-bitfields' +- fi +- ;; +- esac +- if test x"$msnative_struct" = x ; then +- { $as_echo "$as_me:$LINENO: result: no way" >&5 +-$as_echo "no way" >&6; } +- { $as_echo "$as_me:$LINENO: WARNING: produced libraries might be incompatible with MSVC-compiled code" >&5 +-$as_echo "$as_me: WARNING: produced libraries might be incompatible with MSVC-compiled code" >&2;} +- else +- CFLAGS="$CFLAGS $msnative_struct" +- { $as_echo "$as_me:$LINENO: result: ${msnative_struct}" >&5 +-$as_echo "${msnative_struct}" >&6; } +- fi +- fi +-fi +- +-# Honor aclocal flags +-ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" +- +-## Initial sanity check, done here so that users get told they +-## have the wrong dependencies as early in the process as possible. +-## Later on we actually use the cflags/libs from separate pkg-config +-## calls. Oh, also the later pkg-config calls don't include +-## the version requirements since those make the module lists +-## annoying to construct +- +- +-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 +-{ $as_echo "$as_me:$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:$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 +- { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +-$as_echo "$PKG_CONFIG" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "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 +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_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 +- { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +-$as_echo "$ac_pt_PKG_CONFIG" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- if test "x$ac_pt_PKG_CONFIG" = x; then +- PKG_CONFIG="" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&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 +- { $as_echo "$as_me:$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 +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- PKG_CONFIG="" +- fi +- +-fi +- +-pkg_failed=no +-{ $as_echo "$as_me:$LINENO: checking for BASE_DEPENDENCIES" >&5 +-$as_echo_n "checking for BASE_DEPENDENCIES... " >&6; } +- +-if test -n "$BASE_DEPENDENCIES_CFLAGS"; then +- pkg_cv_BASE_DEPENDENCIES_CFLAGS="$BASE_DEPENDENCIES_CFLAGS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6\"") >&5 +- ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_BASE_DEPENDENCIES_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- else +- pkg_failed=untried +-fi +-if test -n "$BASE_DEPENDENCIES_LIBS"; then +- pkg_cv_BASE_DEPENDENCIES_LIBS="$BASE_DEPENDENCIES_LIBS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6\"") >&5 +- ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_BASE_DEPENDENCIES_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>/dev/null` +-else +- pkg_failed=yes +-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 +- BASE_DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>&1` +- else +- BASE_DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>&1` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$BASE_DEPENDENCIES_PKG_ERRORS" >&5 +- +- { { $as_echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6) were not met: +- +-$BASE_DEPENDENCIES_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 BASE_DEPENDENCIES_CFLAGS +-and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-$as_echo "$as_me: error: Package requirements (glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6) were not met: +- +-$BASE_DEPENDENCIES_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 BASE_DEPENDENCIES_CFLAGS +-and BASE_DEPENDENCIES_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 +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_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 BASE_DEPENDENCIES_CFLAGS +-and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&5 +-$as_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 BASE_DEPENDENCIES_CFLAGS +-and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } +-else +- BASE_DEPENDENCIES_CFLAGS=$pkg_cv_BASE_DEPENDENCIES_CFLAGS +- BASE_DEPENDENCIES_LIBS=$pkg_cv_BASE_DEPENDENCIES_LIBS +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- : +-fi +- +-## In addition to checking that cairo is present, we also need to +-## check that the correct cairo backend is there. E.g. if the GDK +-## target is win32 we need the cairo-win32 backend and so on. +-cairo_backend=$gdktarget +- +-# GDK calls the xlib backend "x11," cairo calls it "xlib." Other +-# backend names are identical. +-if test "x$cairo_backend" = "xx11"; then +- cairo_backend=xlib +-fi +- +-pkg_failed=no +-{ $as_echo "$as_me:$LINENO: checking for CAIRO_BACKEND" >&5 +-$as_echo_n "checking for CAIRO_BACKEND... " >&6; } +- +-if test -n "$CAIRO_BACKEND_CFLAGS"; then +- pkg_cv_CAIRO_BACKEND_CFLAGS="$CAIRO_BACKEND_CFLAGS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"cairo-\$cairo_backend >= 1.6\"") >&5 +- ($PKG_CONFIG --exists --print-errors "cairo-$cairo_backend >= 1.6") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_CAIRO_BACKEND_CFLAGS=`$PKG_CONFIG --cflags "cairo-$cairo_backend >= 1.6" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- else +- pkg_failed=untried +-fi +-if test -n "$CAIRO_BACKEND_LIBS"; then +- pkg_cv_CAIRO_BACKEND_LIBS="$CAIRO_BACKEND_LIBS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"cairo-\$cairo_backend >= 1.6\"") >&5 +- ($PKG_CONFIG --exists --print-errors "cairo-$cairo_backend >= 1.6") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_CAIRO_BACKEND_LIBS=`$PKG_CONFIG --libs "cairo-$cairo_backend >= 1.6" 2>/dev/null` +-else +- pkg_failed=yes +-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 +- CAIRO_BACKEND_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "cairo-$cairo_backend >= 1.6" 2>&1` +- else +- CAIRO_BACKEND_PKG_ERRORS=`$PKG_CONFIG --print-errors "cairo-$cairo_backend >= 1.6" 2>&1` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$CAIRO_BACKEND_PKG_ERRORS" >&5 +- +- { { $as_echo "$as_me:$LINENO: error: Package requirements (cairo-$cairo_backend >= 1.6) were not met: +- +-$CAIRO_BACKEND_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 CAIRO_BACKEND_CFLAGS +-and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-$as_echo "$as_me: error: Package requirements (cairo-$cairo_backend >= 1.6) were not met: +- +-$CAIRO_BACKEND_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 CAIRO_BACKEND_CFLAGS +-and CAIRO_BACKEND_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 +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_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 CAIRO_BACKEND_CFLAGS +-and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&5 +-$as_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 CAIRO_BACKEND_CFLAGS +-and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } +-else +- CAIRO_BACKEND_CFLAGS=$pkg_cv_CAIRO_BACKEND_CFLAGS +- CAIRO_BACKEND_LIBS=$pkg_cv_CAIRO_BACKEND_LIBS +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- : +-fi +- +-if test "$os_win32" != yes; then +- # libtool option to control which symbols are exported +- # right now, symbols starting with _ are not exported +- LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[^_].*"' +-else +- # We currently use .def files on Windows (for gdk-pixbuf, gdk and gtk) +- LIBTOOL_EXPORT_OPTIONS= +-fi +- +- +- +-# Check whether --enable-explicit-deps was given. +-if test "${enable_explicit_deps+set}" = set; then +- enableval=$enable_explicit_deps; +-else +- enable_explicit_deps=auto +-fi +- +- +-{ $as_echo "$as_me:$LINENO: checking Whether to write dependencies into .pc files" >&5 +-$as_echo_n "checking Whether to write dependencies into .pc files... " >&6; } +-case $enable_explicit_deps in +- auto) +- export SED +- deplibs_check_method=`(./libtool --config; echo 'eval echo \"$deplibs_check_method\"') | sh` +- if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then +- enable_explicit_deps=yes +- else +- enable_explicit_deps=no +- fi +- ;; +- yes|no) +- ;; +- *) { { $as_echo "$as_me:$LINENO: error: Value given to --enable-explicit-deps must be one of yes, no or auto" >&5 +-$as_echo "$as_me: error: Value given to --enable-explicit-deps must be one of yes, no or auto" >&2;} +- { (exit 1); exit 1; }; } +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: result: $enable_explicit_deps" >&5 +-$as_echo "$enable_explicit_deps" >&6; } +- +- +- +-if test $enable_explicit_deps = no; then +- DISABLE_EXPLICIT_DEPS_TRUE= +- DISABLE_EXPLICIT_DEPS_FALSE='#' +-else +- DISABLE_EXPLICIT_DEPS_TRUE='#' +- DISABLE_EXPLICIT_DEPS_FALSE= +-fi +- +- +-# define a MAINT-like variable REBUILD which is set if Perl +-# and awk are found, so autogenerated sources can be rebuilt +- +-for ac_prog in perl5 perl +-do +- # Extract the first word of "$ac_prog", so it can be a program name with args. +-set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_PERL+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- case $PERL in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_PERL="$PERL" # 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_PERL="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- ;; +-esac +-fi +-PERL=$ac_cv_path_PERL +-if test -n "$PERL"; then +- { $as_echo "$as_me:$LINENO: result: $PERL" >&5 +-$as_echo "$PERL" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +- test -n "$PERL" && break +-done +- +- +-# We would like indent, but don't require it. +-# Extract the first word of "indent", so it can be a program name with args. +-set dummy indent; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_INDENT+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- if test -n "$INDENT"; then +- ac_cv_prog_INDENT="$INDENT" # Let the user override the test. +-else +-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_prog_INDENT="indent" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +-fi +-fi +-INDENT=$ac_cv_prog_INDENT +-if test -n "$INDENT"; then +- { $as_echo "$as_me:$LINENO: result: $INDENT" >&5 +-$as_echo "$INDENT" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +- +-REBUILD=\# +-if test "x$enable_rebuilds" = "xyes" && \ +- test -n "$PERL" && \ +- $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 ; then +- REBUILD= +-fi +- +- +- +- +- +- +-for ac_func in lstat mkstemp flockfile getc_unlocked +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- +-for ac_func in localtime_r +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- +-# _NL_TIME_FIRST_WEEKDAY is an enum and not a define +-{ $as_echo "$as_me:$LINENO: checking for _NL_TIME_FIRST_WEEKDAY" >&5 +-$as_echo_n "checking for _NL_TIME_FIRST_WEEKDAY... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <langinfo.h> +-int +-main () +-{ +- +-char c; +-c = *((unsigned char *) nl_langinfo(_NL_TIME_FIRST_WEEKDAY)); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $gtk_ok" >&5 +-$as_echo "$gtk_ok" >&6; } +-if test "$gtk_ok" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE__NL_TIME_FIRST_WEEKDAY 1 +-_ACEOF +- +-fi +- +-# _NL_MEASUREMENT_MEASUREMENT is an enum and not a define +-{ $as_echo "$as_me:$LINENO: checking for _NL_MEASUREMENT_MEASUREMENT" >&5 +-$as_echo_n "checking for _NL_MEASUREMENT_MEASUREMENT... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <langinfo.h> +-int +-main () +-{ +- +-char c; +-c = *((unsigned char *) nl_langinfo(_NL_MEASUREMENT_MEASUREMENT)); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $gtk_ok" >&5 +-$as_echo "$gtk_ok" >&6; } +-if test "$gtk_ok" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE__NL_MEASUREMENT_MEASUREMENT 1 +-_ACEOF +- +-fi +- +-# _NL_PAPER_HEIGHT is an enum and not a define +-{ $as_echo "$as_me:$LINENO: checking for _NL_PAPER_HEIGHT" >&5 +-$as_echo_n "checking for _NL_PAPER_HEIGHT... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <langinfo.h> +-int +-main () +-{ +- +-char c; +-c = *((unsigned char *) nl_langinfo(_NL_PAPER_HEIGHT)); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $gtk_ok" >&5 +-$as_echo "$gtk_ok" >&6; } +-if test "$gtk_ok" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE__NL_PAPER_HEIGHT 1 +-_ACEOF +- +-fi +- +-# _NL_PAPER_WIDTH is an enum and not a define +-{ $as_echo "$as_me:$LINENO: checking for _NL_PAPER_WIDTH" >&5 +-$as_echo_n "checking for _NL_PAPER_WIDTH... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <langinfo.h> +-int +-main () +-{ +- +-char c; +-c = *((unsigned char *) nl_langinfo(_NL_PAPER_WIDTH)); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $gtk_ok" >&5 +-$as_echo "$gtk_ok" >&6; } +-if test "$gtk_ok" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE__NL_PAPER_WIDTH 1 +-_ACEOF +- +-fi +- +-# sigsetjmp is a macro on some platforms, so AC_CHECK_FUNCS is not reliable +-{ $as_echo "$as_me:$LINENO: checking for sigsetjmp" >&5 +-$as_echo_n "checking for sigsetjmp... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <setjmp.h> +-int +-main () +-{ +- +-sigjmp_buf env; +-sigsetjmp(env, 0); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $gtk_ok" >&5 +-$as_echo "$gtk_ok" >&6; } +-if test "$gtk_ok" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SIGSETJMP 1 +-_ACEOF +- +-fi +- +-# i18n stuff +-ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" +- +- +-for ac_header in locale.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- if test $ac_cv_header_locale_h = yes; then +- { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 +-$as_echo_n "checking for LC_MESSAGES... " >&6; } +-if test "${am_cv_val_LC_MESSAGES+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <locale.h> +-int +-main () +-{ +-return LC_MESSAGES +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- am_cv_val_LC_MESSAGES=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- am_cv_val_LC_MESSAGES=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +-$as_echo "$am_cv_val_LC_MESSAGES" >&6; } +- if test $am_cv_val_LC_MESSAGES = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LC_MESSAGES 1 +-_ACEOF +- +- fi +- fi +- USE_NLS=yes +- +- +- gt_cv_have_gettext=no +- +- CATOBJEXT=NONE +- XGETTEXT=: +- INTLLIBS= +- +- if test "${ac_cv_header_libintl_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 +-$as_echo_n "checking for libintl.h... " >&6; } +-if test "${ac_cv_header_libintl_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-$as_echo "$ac_cv_header_libintl_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5 +-$as_echo_n "checking libintl.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <libintl.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5 +-$as_echo_n "checking libintl.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <libintl.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 +-$as_echo_n "checking for libintl.h... " >&6; } +-if test "${ac_cv_header_libintl_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_libintl_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-$as_echo "$ac_cv_header_libintl_h" >&6; } +- +-fi +-if test "x$ac_cv_header_libintl_h" = x""yes; then +- gt_cv_func_dgettext_libintl="no" +- libintl_extra_libs="" +- +- # +- # First check in libc +- # +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-#include <libintl.h> +- +-int +-main () +-{ +-return !ngettext ("","", 1) +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gt_cv_func_ngettext_libc=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_ngettext_libc=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- +-fi +-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 +-$as_echo "$gt_cv_func_ngettext_libc" >&6; } +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-#include <libintl.h> +- +-int +-main () +-{ +-return !dgettext ("","") +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gt_cv_func_dgettext_libc=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_dgettext_libc=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- +-fi +-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 +-$as_echo "$gt_cv_func_dgettext_libc" >&6; } +- fi +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- +-for ac_func in bind_textdomain_codeset +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- fi +- +- # +- # If we don't have everything we want, check in libintl +- # +- if test "$gt_cv_func_dgettext_libc" != "yes" \ +- || test "$gt_cv_func_ngettext_libc" != "yes" \ +- || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then +- +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char bindtextdomain (); +-int +-main () +-{ +-return bindtextdomain (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_bindtextdomain=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_bindtextdomain=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char ngettext (); +-int +-main () +-{ +-return ngettext (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_ngettext=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_ngettext=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dgettext (); +-int +-main () +-{ +-return dgettext (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_dgettext=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_dgettext=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- gt_cv_func_dgettext_libintl=yes +-fi +- +-fi +- +-fi +- +- +- if test "$gt_cv_func_dgettext_libintl" != "yes" ; then +- { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 +-$as_echo_n "checking if -liconv is needed to use gettext... " >&6; } +- { $as_echo "$as_me:$LINENO: result: " >&5 +-$as_echo "" >&6; } +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lintl -liconv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char ngettext (); +-int +-main () +-{ +-return ngettext (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_ngettext=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_ngettext=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- { $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lintl -liconv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dcgettext (); +-int +-main () +-{ +-return dcgettext (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_dcgettext=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_dcgettext=no +-fi +- +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$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 +- gt_cv_func_dgettext_libintl=yes +- libintl_extra_libs=-liconv +-else +- : +-fi +- +-else +- : +-fi +- +- fi +- +- # +- # If we found libintl, then check in it for bind_textdomain_codeset(); +- # we'll prefer libc if neither have bind_textdomain_codeset(), +- # and both have dgettext and ngettext +- # +- if test "$gt_cv_func_dgettext_libintl" = "yes" ; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS -lintl $libintl_extra_libs" +- unset ac_cv_func_bind_textdomain_codeset +- +-for ac_func in bind_textdomain_codeset +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- LIBS="$glib_save_LIBS" +- +- if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then +- gt_cv_func_dgettext_libc=no +- else +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- && test "$gt_cv_func_ngettext_libc" = "yes"; then +- gt_cv_func_dgettext_libintl=no +- fi +- fi +- fi +- fi +- +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- || test "$gt_cv_func_dgettext_libintl" = "yes"; then +- gt_cv_have_gettext=yes +- fi +- +- if test "$gt_cv_func_dgettext_libintl" = "yes"; then +- INTLLIBS="-lintl $libintl_extra_libs" +- fi +- +- if test "$gt_cv_have_gettext" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETTEXT 1 +-_ACEOF +- +- # Extract the first word of "msgfmt", so it can be a program name with args. +-set dummy msgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_MSGFMT+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- case "$MSGFMT" in +- /*) +- ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. +- ;; +- *) +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" +- for ac_dir in $PATH; do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/$ac_word; then +- if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then +- ac_cv_path_MSGFMT="$ac_dir/$ac_word" +- break +- fi +- fi +- done +- IFS="$ac_save_ifs" +- test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" +- ;; +-esac +-fi +-MSGFMT="$ac_cv_path_MSGFMT" +-if test "$MSGFMT" != "no"; then +- { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 +-$as_echo "$MSGFMT" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- if test "$MSGFMT" != "no"; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS $INTLLIBS" +- +-for ac_func in dcgettext +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- MSGFMT_OPTS= +- { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 +-$as_echo_n "checking if msgfmt accepts -c... " >&6; } +- cat >conftest.foo <<_ACEOF +- +-msgid "" +-msgstr "" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Project-Id-Version: test 1.0\n" +-"PO-Revision-Date: 2007-02-15 12:01+0100\n" +-"Last-Translator: test <foo@bar.xx>\n" +-"Language-Team: C <LL@li.org>\n" +-"MIME-Version: 1.0\n" +-"Content-Transfer-Encoding: 8bit\n" +- +-_ACEOF +-if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 +- ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +-else { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-echo "$as_me: failed input was:" >&5 +-sed 's/^/| /' conftest.foo >&5 +-fi +- +- # Extract the first word of "gmsgfmt", so it can be a program name with args. +-set dummy gmsgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_GMSGFMT+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- case $GMSGFMT in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" +- ;; +-esac +-fi +-GMSGFMT=$ac_cv_path_GMSGFMT +-if test -n "$GMSGFMT"; then +- { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +-$as_echo "$GMSGFMT" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +- # Extract the first word of "xgettext", so it can be a program name with args. +-set dummy xgettext; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_XGETTEXT+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- case "$XGETTEXT" in +- /*) +- ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. +- ;; +- *) +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" +- for ac_dir in $PATH; do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/$ac_word; then +- if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then +- ac_cv_path_XGETTEXT="$ac_dir/$ac_word" +- break +- fi +- fi +- done +- IFS="$ac_save_ifs" +- test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" +- ;; +-esac +-fi +-XGETTEXT="$ac_cv_path_XGETTEXT" +-if test "$XGETTEXT" != ":"; then +- { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +-$as_echo "$XGETTEXT" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-extern int _nl_msg_cat_cntr; +- return _nl_msg_cat_cntr +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- CATOBJEXT=.gmo +- DATADIRNAME=share +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- case $host in +- *-*-solaris*) +- { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +-$as_echo_n "checking for bind_textdomain_codeset... " >&6; } +-if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define bind_textdomain_codeset to an innocuous variant, in case <limits.h> declares bind_textdomain_codeset. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define bind_textdomain_codeset innocuous_bind_textdomain_codeset +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char bind_textdomain_codeset (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef bind_textdomain_codeset +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char bind_textdomain_codeset (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset +-choke me +-#endif +- +-int +-main () +-{ +-return bind_textdomain_codeset (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_bind_textdomain_codeset=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_bind_textdomain_codeset=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +-$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } +-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then +- CATOBJEXT=.gmo +- DATADIRNAME=share +-else +- CATOBJEXT=.mo +- DATADIRNAME=lib +-fi +- +- ;; +- *) +- CATOBJEXT=.mo +- DATADIRNAME=lib +- ;; +- esac +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- LIBS="$glib_save_LIBS" +- INSTOBJEXT=.mo +- else +- gt_cv_have_gettext=no +- fi +- fi +- +-fi +- +- +- +- if test "$gt_cv_have_gettext" = "yes" ; then +- +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_NLS 1 +-_ACEOF +- +- fi +- +- if test "$XGETTEXT" != ":"; then +- if $XGETTEXT --omit-header /dev/null 2> /dev/null; then +- : ; +- else +- { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 +-$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } +- XGETTEXT=":" +- fi +- fi +- +- # We need to process the po/ directory. +- POSUB=po +- +- ac_config_commands="$ac_config_commands default-1" +- +- +- for lang in $ALL_LINGUAS; do +- GMOFILES="$GMOFILES $lang.gmo" +- POFILES="$POFILES $lang.po" +- done +- +- +- +- +- +- +- +- +- +- +- +- +- +- if test "$gt_cv_have_gettext" = "yes"; then +- if test "x$ALL_LINGUAS" = "x"; then +- LINGUAS= +- else +- { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 +-$as_echo_n "checking for catalogs to be installed... " >&6; } +- NEW_LINGUAS= +- for presentlang in $ALL_LINGUAS; do +- useit=no +- if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then +- desiredlanguages="$LINGUAS" +- else +- desiredlanguages="$ALL_LINGUAS" +- fi +- for desiredlang in $desiredlanguages; do +- # Use the presentlang catalog if desiredlang is +- # a. equal to presentlang, or +- # b. a variant of presentlang (because in this case, +- # presentlang can be used as a fallback for messages +- # which are not translated in the desiredlang catalog). +- case "$desiredlang" in +- "$presentlang"*) useit=yes;; +- esac +- done +- if test $useit = yes; then +- NEW_LINGUAS="$NEW_LINGUAS $presentlang" +- fi +- done +- LINGUAS=$NEW_LINGUAS +- { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5 +-$as_echo "$LINGUAS" >&6; } +- fi +- +- if test -n "$LINGUAS"; then +- for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done +- fi +- fi +- +- MKINSTALLDIRS= +- if test -n "$ac_aux_dir"; then +- MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" +- fi +- if test -z "$MKINSTALLDIRS"; then +- MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" +- fi +- +- +- test -d po || mkdir po +- if test "x$srcdir" != "x."; then +- if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then +- posrcprefix="$srcdir/" +- else +- posrcprefix="../$srcdir/" +- fi +- else +- posrcprefix="../" +- fi +- rm -f po/POTFILES +- sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ +- < $srcdir/po/POTFILES.in > po/POTFILES +- +-LIBS="$LIBS $INTLLIBS" +-ac_config_commands="$ac_config_commands default-2" +- +- +-test -d po-properties || mkdir po-properties +-if test "x$srcdir" != "x."; then +- if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then +- popropsrcprefix="$srcdir/" +- else +- popropsrcprefix="../$srcdir/" +- fi +-else +- popropsrcprefix="../" +-fi +-rm -f po-properties/POTFILES +-sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $popropsrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ +-< $srcdir/po-properties/POTFILES.in > po-properties/POTFILES +- +-glib_save_prefix="$prefix" +-glib_save_exec_prefix="$exec_prefix" +-glib_save_datarootdir="$datarootdir" +-test "x$prefix" = xNONE && prefix=$ac_default_prefix +-test "x$exec_prefix" = xNONE && exec_prefix=$prefix +-datarootdir=`eval echo "${datarootdir}"` +-if test "x$CATOBJEXT" = "x.mo" ; then +- localedir=`eval echo "${libdir}/locale"` +-else +- localedir=`eval echo "${datadir}/locale"` +-fi +-prefix="$glib_save_prefix" +-exec_prefix="$glib_save_exec_prefix" +-datarootdir="$glib_save_datarootdir" +- +-cat >>confdefs.h <<_ACEOF +-#define GTK_LOCALEDIR "$localedir" +-_ACEOF +- +- +- +-{ $as_echo "$as_me:$LINENO: checking for extra flags to get ANSI library prototypes" >&5 +-$as_echo_n "checking for extra flags to get ANSI library prototypes... " >&6; } +- +-gtk_save_LIBS=$LIBS +-LIBS="$LIBS -lm" +-if test "$cross_compiling" = yes; then +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } +- +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <math.h> +- int main (void) { return (log(1) != log(1.)); } +-_ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-gtk_save_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -std1" +- if test "$cross_compiling" = yes; then +- true +- +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <math.h> +- int main (void) { return (log(1) != log(1.)); } +-_ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- { $as_echo "$as_me:$LINENO: result: -std1" >&5 +-$as_echo "-std1" >&6; } +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-{ $as_echo "$as_me:$LINENO: result: " >&5 +-$as_echo "" >&6; } +- CFLAGS="$gtk_save_CFLAGS" +- { $as_echo "$as_me:$LINENO: WARNING: No ANSI prototypes found in library. (-std1 didn't work.)" >&5 +-$as_echo "$as_me: WARNING: No ANSI prototypes found in library. (-std1 didn't work.)" >&2;} +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +- +- +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +- +- +-LIBS=$gtk_save_LIBS +- +-{ $as_echo "$as_me:$LINENO: checking for the BeOS" >&5 +-$as_echo_n "checking for the BeOS... " >&6; } +-case $host in +- *-*-beos*) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- MATH_LIB= +- ;; +- *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- ;; +-esac +- +-# +-# see bug 162979 +-# +-{ $as_echo "$as_me:$LINENO: checking for HP-UX" >&5 +-$as_echo_n "checking for HP-UX... " >&6; } +-case $host_os in +- hpux9* | hpux10* | hpux11*) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- CFLAGS="$CFLAGS -DHPPEX -DSHMLINK" +- ;; +- *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- ;; +-esac +- +-{ $as_echo "$as_me:$LINENO: checking for extra flags for POSIX compliance" >&5 +-$as_echo_n "checking for extra flags for POSIX compliance... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <dirent.h> +-int +-main () +-{ +-DIR *dir; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_save_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -posix" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <dirent.h> +-int +-main () +-{ +-DIR *dir; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- { $as_echo "$as_me:$LINENO: result: -posix" >&5 +-$as_echo "-posix" >&6; } +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { $as_echo "$as_me:$LINENO: result: " >&5 +-$as_echo "" >&6; } +- CFLAGS="$gtk_save_CFLAGS" +- { $as_echo "$as_me:$LINENO: WARNING: Could not determine POSIX flag. (-posix didn't work.)" >&5 +-$as_echo "$as_me: WARNING: Could not determine POSIX flag. (-posix didn't work.)" >&2;} +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-# +-# Run AM_PATH_GLIB_2_0 to make sure that GLib is installed and working +-# +- +-GLIB_PACKAGES="gobject-2.0 gmodule-no-export-2.0" +- +-# Check whether --enable-glibtest was given. +-if test "${enable_glibtest+set}" = set; then +- enableval=$enable_glibtest; +-else +- enable_glibtest=yes +-fi +- +- +- pkg_config_args=glib-2.0 +- for module in . gobject gmodule-no-export gthread +- do +- case "$module" in +- gmodule) +- pkg_config_args="$pkg_config_args gmodule-2.0" +- ;; +- gmodule-no-export) +- pkg_config_args="$pkg_config_args gmodule-no-export-2.0" +- ;; +- gobject) +- pkg_config_args="$pkg_config_args gobject-2.0" +- ;; +- gthread) +- pkg_config_args="$pkg_config_args gthread-2.0" +- ;; +- gio*) +- pkg_config_args="$pkg_config_args $module-2.0" +- ;; +- esac +- done +- +- +- +-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 +-{ $as_echo "$as_me:$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:$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 +- { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +-$as_echo "$PKG_CONFIG" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "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 +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_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 +- { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +-$as_echo "$ac_pt_PKG_CONFIG" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- if test "x$ac_pt_PKG_CONFIG" = x; then +- PKG_CONFIG="" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&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.16 +- { $as_echo "$as_me:$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 +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- PKG_CONFIG="" +- fi +- +-fi +- +- no_glib="" +- +- if test "x$PKG_CONFIG" = x ; then +- no_glib=yes +- PKG_CONFIG=no +- fi +- +- min_glib_version=2.21.3 +- { $as_echo "$as_me:$LINENO: checking for GLIB - version >= $min_glib_version" >&5 +-$as_echo_n "checking for GLIB - version >= $min_glib_version... " >&6; } +- +- if test x$PKG_CONFIG != xno ; then +- ## don't try to run the test against uninstalled libtool libs +- if $PKG_CONFIG --uninstalled $pkg_config_args; then +- echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" +- enable_glibtest=no +- fi +- +- if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then +- : +- else +- no_glib=yes +- fi +- fi +- +- if test x"$no_glib" = x ; then +- GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` +- GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` +- GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` +- +- GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` +- GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` +- glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` +- glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` +- glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` +- if test "x$enable_glibtest" = "xyes" ; then +- ac_save_CFLAGS="$CFLAGS" +- ac_save_LIBS="$LIBS" +- CFLAGS="$CFLAGS $GLIB_CFLAGS" +- LIBS="$GLIB_LIBS $LIBS" +- rm -f conf.glibtest +- if test "$cross_compiling" = yes; then +- echo $ac_n "cross compiling; assumed OK... $ac_c" +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-#include <glib.h> +-#include <stdio.h> +-#include <stdlib.h> +- +-int +-main () +-{ +- int major, minor, micro; +- char *tmp_version; +- int ignored; +- +- ignored = system ("touch conf.glibtest"); +- +- /* HP/UX 9 (%@#!) writes to sscanf strings */ +- tmp_version = g_strdup("$min_glib_version"); +- if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { +- printf("%s, bad version string\n", "$min_glib_version"); +- exit(1); +- } +- +- if ((glib_major_version != $glib_config_major_version) || +- (glib_minor_version != $glib_config_minor_version) || +- (glib_micro_version != $glib_config_micro_version)) +- { +- printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", +- $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, +- glib_major_version, glib_minor_version, glib_micro_version); +- printf ("*** was found! If pkg-config was correct, then it is best\n"); +- printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); +- printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); +- printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); +- printf("*** required on your system.\n"); +- printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); +- printf("*** to point to the correct configuration files\n"); +- } +- else if ((glib_major_version != GLIB_MAJOR_VERSION) || +- (glib_minor_version != GLIB_MINOR_VERSION) || +- (glib_micro_version != GLIB_MICRO_VERSION)) +- { +- printf("*** GLIB header files (version %d.%d.%d) do not match\n", +- GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); +- printf("*** library (version %d.%d.%d)\n", +- glib_major_version, glib_minor_version, glib_micro_version); +- } +- else +- { +- if ((glib_major_version > major) || +- ((glib_major_version == major) && (glib_minor_version > minor)) || +- ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) +- { +- return 0; +- } +- else +- { +- printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", +- glib_major_version, glib_minor_version, glib_micro_version); +- printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", +- major, minor, micro); +- printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); +- printf("***\n"); +- printf("*** If you have already installed a sufficiently new version, this error\n"); +- printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); +- printf("*** being found. The easiest way to fix this is to remove the old version\n"); +- printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); +- printf("*** correct copy of pkg-config. (In this case, you will have to\n"); +- printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); +- printf("*** so that the correct libraries are found at run-time))\n"); +- } +- } +- return 1; +-} +- +-_ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-no_glib=yes +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +- +- +- CFLAGS="$ac_save_CFLAGS" +- LIBS="$ac_save_LIBS" +- fi +- fi +- if test "x$no_glib" = x ; then +- { $as_echo "$as_me:$LINENO: result: yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&5 +-$as_echo "yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&6; } +- : +- else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- if test "$PKG_CONFIG" = "no" ; then +- echo "*** A new enough version of pkg-config was not found." +- echo "*** See http://www.freedesktop.org/software/pkgconfig/" +- else +- if test -f conf.glibtest ; then +- : +- else +- echo "*** Could not run GLIB test program, checking why..." +- ac_save_CFLAGS="$CFLAGS" +- ac_save_LIBS="$LIBS" +- CFLAGS="$CFLAGS $GLIB_CFLAGS" +- LIBS="$LIBS $GLIB_LIBS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-#include <glib.h> +-#include <stdio.h> +- +-int +-main () +-{ +- return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- echo "*** The test program compiled, but did not run. This usually means" +- echo "*** that the run-time linker is not finding GLIB or finding the wrong" +- echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" +- echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" +- echo "*** to the installed location Also, make sure you have run ldconfig if that" +- echo "*** is required on your system" +- echo "***" +- echo "*** If you have an old version installed, it is best to remove it, although" +- echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- echo "*** The test program failed to compile or link. See the file config.log for the" +- echo "*** exact error that occured. This usually means GLIB is incorrectly installed." +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- CFLAGS="$ac_save_CFLAGS" +- LIBS="$ac_save_LIBS" +- fi +- fi +- GLIB_CFLAGS="" +- GLIB_LIBS="" +- GLIB_GENMARSHAL="" +- GOBJECT_QUERY="" +- GLIB_MKENUMS="" +- { { $as_echo "$as_me:$LINENO: error: +-*** GLIB 2.21.3 or better is required. The latest version of +-*** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/." >&5 +-$as_echo "$as_me: error: +-*** GLIB 2.21.3 or better is required. The latest version of +-*** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/." >&2;} +- { (exit 1); exit 1; }; } +- fi +- +- +- +- +- +- rm -f conf.glibtest +- +- +-# See if it's safe to turn G_DISABLE_DEPRECATED on. +-GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.[^.]*\$//"` +-GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo 2.21.3 | sed "s/\.[^.]*\$//"` +-if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then +- CFLAGS="-DG_DISABLE_DEPRECATED $CFLAGS" +-fi +- +-CFLAGS="-DGDK_PIXBUF_DISABLE_DEPRECATED $CFLAGS" +- +- +-gtk_save_LIBS=$LIBS +-LIBS="$LIBS $GLIB_LIBS" +- +-for ac_func in bind_textdomain_codeset +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +-LIBS=$gtk_save_LIBS +- +- +-for ac_header in pwd.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_PWD_H 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_header in sys/time.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SYS_TIME_H 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_header in unistd.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_UNISTD_H 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_header in ftw.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_FTW_H 1 +-_ACEOF +- +-fi +- +-done +- +- +-{ $as_echo "$as_me:$LINENO: checking for GNU ftw extensions" >&5 +-$as_echo_n "checking for GNU ftw extensions... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#define _XOPEN_SOURCE 500 +-#define _GNU_SOURCE +-#include <ftw.h> +-int +-main () +-{ +-int flags = FTW_ACTIONRETVAL; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- gtk_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gtk_ok=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-if test $gtk_ok = yes; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GNU_FTW 1 +-_ACEOF +- +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +-saved_cflags="$CFLAGS" +-saved_ldflags="$LDFLAGS" +- +- +-# Checks for header files. +-{ $as_echo "$as_me:$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 +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> +-#include <stdarg.h> +-#include <string.h> +-#include <float.h> +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_stdc=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-if test $ac_cv_header_stdc = yes; then +- # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <string.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "memchr" >/dev/null 2>&1; then +- : +-else +- ac_cv_header_stdc=no +-fi +-rm -f conftest* +- +-fi +- +-if test $ac_cv_header_stdc = yes; then +- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "free" >/dev/null 2>&1; then +- : +-else +- ac_cv_header_stdc=no +-fi +-rm -f conftest* +- +-fi +- +-if test $ac_cv_header_stdc = yes; then +- # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. +- if test "$cross_compiling" = yes; then +- : +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <ctype.h> +-#include <stdlib.h> +-#if ((' ' & 0x0FF) == 0x020) +-# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +-# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +-#else +-# define ISLOWER(c) \ +- (('a' <= (c) && (c) <= 'i') \ +- || ('j' <= (c) && (c) <= 'r') \ +- || ('s' <= (c) && (c) <= 'z')) +-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +-#endif +- +-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +-int +-main () +-{ +- int i; +- for (i = 0; i < 256; i++) +- if (XOR (islower (i), ISLOWER (i)) +- || toupper (i) != TOUPPER (i)) +- return 2; +- return 0; +-} +-_ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-ac_cv_header_stdc=no +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +- +- +-fi +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +-$as_echo "$ac_cv_header_stdc" >&6; } +-if test $ac_cv_header_stdc = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define STDC_HEADERS 1 +-_ACEOF +- +-fi +- +- +-# Checks for typedefs, structures, and compiler characteristics. +-{ $as_echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 +-$as_echo_n "checking for an ANSI C-conforming const... " >&6; } +-if test "${ac_cv_c_const+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-/* FIXME: Include the comments suggested by Paul. */ +-#ifndef __cplusplus +- /* Ultrix mips cc rejects this. */ +- typedef int charset[2]; +- const charset cs; +- /* SunOS 4.1.1 cc rejects this. */ +- char const *const *pcpcc; +- char **ppc; +- /* NEC SVR4.0.2 mips cc rejects this. */ +- struct point {int x, y;}; +- static struct point const zero = {0,0}; +- /* AIX XL C 1.02.0.0 rejects this. +- It does not let you subtract one const X* pointer from another in +- an arm of an if-expression whose if-part is not a constant +- expression */ +- const char *g = "string"; +- pcpcc = &g + (g ? g-g : 0); +- /* HPUX 7.0 cc rejects these. */ +- ++pcpcc; +- ppc = (char**) pcpcc; +- pcpcc = (char const *const *) ppc; +- { /* SCO 3.2v4 cc rejects this. */ +- char *t; +- char const *s = 0 ? (char *) 0 : (char const *) 0; +- +- *t++ = 0; +- if (s) return 0; +- } +- { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ +- int x[] = {25, 17}; +- const int *foo = &x[0]; +- ++foo; +- } +- { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ +- typedef const int *iptr; +- iptr p = 0; +- ++p; +- } +- { /* AIX XL C 1.02.0.0 rejects this saying +- "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ +- struct s { int j; const int *ap[3]; }; +- struct s *b; b->j = 5; +- } +- { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ +- const int foo = 10; +- if (!foo) return 0; +- } +- return !cs[0] && !zero.x; +-#endif +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_c_const=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_const=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 +-$as_echo "$ac_cv_c_const" >&6; } +-if test $ac_cv_c_const = no; then +- +-cat >>confdefs.h <<\_ACEOF +-#define const /**/ +-_ACEOF +- +-fi +- +- +-# Checks for library functions. +-{ $as_echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-$as_echo_n "checking return type of signal handlers... " >&6; } +-if test "${ac_cv_type_signal+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> +-#include <signal.h> +- +-int +-main () +-{ +-return *(signal (0, 0)) (0) == 1; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_type_signal=int +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_signal=void +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-$as_echo "$ac_cv_type_signal" >&6; } +- +-cat >>confdefs.h <<_ACEOF +-#define RETSIGTYPE $ac_cv_type_signal +-_ACEOF +- +- +- +- +-for ac_header in stdlib.h unistd.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_func in getpagesize +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +-{ $as_echo "$as_me:$LINENO: checking for working mmap" >&5 +-$as_echo_n "checking for working mmap... " >&6; } +-if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- if test "$cross_compiling" = yes; then +- ac_cv_func_mmap_fixed_mapped=no +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-/* malloc might have been renamed as rpl_malloc. */ +-#undef malloc +- +-/* Thanks to Mike Haertel and Jim Avera for this test. +- Here is a matrix of mmap possibilities: +- mmap private not fixed +- mmap private fixed at somewhere currently unmapped +- mmap private fixed at somewhere already mapped +- mmap shared not fixed +- mmap shared fixed at somewhere currently unmapped +- mmap shared fixed at somewhere already mapped +- For private mappings, we should verify that changes cannot be read() +- back from the file, nor mmap's back from the file at a different +- address. (There have been systems where private was not correctly +- implemented like the infamous i386 svr4.0, and systems where the +- VM page cache was not coherent with the file system buffer cache +- like early versions of FreeBSD and possibly contemporary NetBSD.) +- For shared mappings, we should conversely verify that changes get +- propagated back to all the places they're supposed to be. +- +- Grep wants private fixed already mapped. +- The main things grep needs to know about mmap are: +- * does it exist and is it safe to write into the mmap'd area +- * how to use it (BSD variants) */ +- +-#include <fcntl.h> +-#include <sys/mman.h> +- +-#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H +-char *malloc (); +-#endif +- +-/* This mess was copied from the GNU getpagesize.h. */ +-#ifndef HAVE_GETPAGESIZE +-/* Assume that all systems that can run configure have sys/param.h. */ +-# ifndef HAVE_SYS_PARAM_H +-# define HAVE_SYS_PARAM_H 1 +-# endif +- +-# ifdef _SC_PAGESIZE +-# define getpagesize() sysconf(_SC_PAGESIZE) +-# else /* no _SC_PAGESIZE */ +-# ifdef HAVE_SYS_PARAM_H +-# include <sys/param.h> +-# ifdef EXEC_PAGESIZE +-# define getpagesize() EXEC_PAGESIZE +-# else /* no EXEC_PAGESIZE */ +-# ifdef NBPG +-# define getpagesize() NBPG * CLSIZE +-# ifndef CLSIZE +-# define CLSIZE 1 +-# endif /* no CLSIZE */ +-# else /* no NBPG */ +-# ifdef NBPC +-# define getpagesize() NBPC +-# else /* no NBPC */ +-# ifdef PAGESIZE +-# define getpagesize() PAGESIZE +-# endif /* PAGESIZE */ +-# endif /* no NBPC */ +-# endif /* no NBPG */ +-# endif /* no EXEC_PAGESIZE */ +-# else /* no HAVE_SYS_PARAM_H */ +-# define getpagesize() 8192 /* punt totally */ +-# endif /* no HAVE_SYS_PARAM_H */ +-# endif /* no _SC_PAGESIZE */ +- +-#endif /* no HAVE_GETPAGESIZE */ +- +-int +-main () +-{ +- char *data, *data2, *data3; +- int i, pagesize; +- int fd; +- +- pagesize = getpagesize (); +- +- /* First, make a file with some known garbage in it. */ +- data = (char *) malloc (pagesize); +- if (!data) +- return 1; +- for (i = 0; i < pagesize; ++i) +- *(data + i) = rand (); +- umask (0); +- fd = creat ("conftest.mmap", 0600); +- if (fd < 0) +- return 1; +- if (write (fd, data, pagesize) != pagesize) +- return 1; +- close (fd); +- +- /* Next, try to mmap the file at a fixed address which already has +- something else allocated at it. If we can, also make sure that +- we see the same garbage. */ +- fd = open ("conftest.mmap", O_RDWR); +- if (fd < 0) +- return 1; +- data2 = (char *) malloc (2 * pagesize); +- if (!data2) +- return 1; +- data2 += (pagesize - ((long int) data2 & (pagesize - 1))) & (pagesize - 1); +- if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, +- MAP_PRIVATE | MAP_FIXED, fd, 0L)) +- return 1; +- for (i = 0; i < pagesize; ++i) +- if (*(data + i) != *(data2 + i)) +- return 1; +- +- /* Finally, make sure that changes to the mapped area do not +- percolate back to the file as seen by read(). (This is a bug on +- some variants of i386 svr4.0.) */ +- for (i = 0; i < pagesize; ++i) +- *(data2 + i) = *(data2 + i) + 1; +- data3 = (char *) malloc (pagesize); +- if (!data3) +- return 1; +- if (read (fd, data3, pagesize) != pagesize) +- return 1; +- for (i = 0; i < pagesize; ++i) +- if (*(data + i) != *(data3 + i)) +- return 1; +- close (fd); +- return 0; +-} +-_ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_func_mmap_fixed_mapped=yes +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++fi + +-( exit $ac_status ) +-ac_cv_func_mmap_fixed_mapped=no ++# Check whether --enable-visibility was given. ++if test "${enable_visibility+set}" = set; then : ++ enableval=$enable_visibility; ++else ++ enable_visibility=yes + fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++ ++ ++ ++# Check whether --with-xinput was given. ++if test "${with_xinput+set}" = set; then : ++ withval=$with_xinput; + fi + + ++if test "$platform_win32" = yes; then ++ gdktarget=win32 ++else ++ gdktarget=x11 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5 +-$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } +-if test $ac_cv_func_mmap_fixed_mapped = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_MMAP 1 +-_ACEOF + ++# Check whether --with-gdktarget was given. ++if test "${with_gdktarget+set}" = set; then : ++ withval=$with_gdktarget; gdktarget=$with_gdktarget + fi +-rm -f conftest.mmap + + + +-for ac_func in mallinfo +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func ++case $gdktarget in ++ x11|win32|quartz|directfb) ;; ++ *) as_fn_error "Invalid target for GDK: use x11, quartz, directfb or win32." "$LINENO" 5;; ++esac + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ ++gdktargetlib=libgdk-$gdktarget-$GTK_API_VERSION.la ++gtktargetlib=libgtk-$gdktarget-$GTK_API_VERSION.la + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif + +-#undef $ac_func + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" ++if test "x$enable_debug" = "xyes"; then ++ test "$cflags_set" = set || CFLAGS="$CFLAGS -g" ++ GTK_DEBUG_FLAGS="-DG_ENABLE_DEBUG -DG_ERRORCHECK_MUTEXES" + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ if test "x$enable_debug" = "xno"; then ++ GTK_DEBUG_FLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS" ++ else ++ GTK_DEBUG_FLAGS="-DG_DISABLE_CAST_CHECKS" ++ fi + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF + ++if test "x$enable_visibility" = "xno"; then ++ GTK_DEBUG_FLAGS="$GTK_DEBUG_FLAGS -DDISABLE_VISIBILITY" + fi +-done + + +-for ac_func in getresuid +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ ++cat >>confdefs.h <<_ACEOF ++#define GTK_COMPILED_WITH_DEBUGGING "${enable_debug}" + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif + +-#undef $ac_func ++# Build time sanity check... ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 ++$as_echo_n "checking whether build environment is sane... " >&6; } ++# Just in case ++sleep 1 ++echo timestamp > conftest.file ++# Reject unsafe characters in $srcdir or the absolute working directory ++# name. Accept space and tab only in the latter. ++am_lf=' ++' ++case `pwd` in ++ *[\\\"\#\$\&\'\`$am_lf]*) ++ as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; ++esac ++case $srcdir in ++ *[\\\"\#\$\&\'\`$am_lf\ \ ]*) ++ as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; ++esac ++ ++# Do `set' in a subshell so we don't clobber the current shell's ++# arguments. Must try -L first in case configure is actually a ++# symlink; some systems play weird games with the mod time of symlinks ++# (eg FreeBSD returns the mod time of the symlink's containing ++# directory). ++if ( ++ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` ++ if test "$*" = "X"; then ++ # -L didn't work. ++ set X `ls -t "$srcdir/configure" conftest.file` ++ fi ++ rm -f conftest.file ++ if test "$*" != "X $srcdir/configure conftest.file" \ ++ && test "$*" != "X conftest.file $srcdir/configure"; then ++ ++ # If neither matched, then we have a broken ls. This can happen ++ # if, for instance, CONFIG_SHELL is bash and it inherits a ++ # broken ls alias from the environment. This has actually ++ # happened. Such a system could not be considered "sane". ++ as_fn_error "ls -t appears to fail. Make sure there is not a broken ++alias in your environment" "$LINENO" 5 ++ fi ++ ++ test "$2" = conftest.file ++ ) ++then ++ # Ok. ++ : ++else ++ as_fn_error "newly created file is older than distributed files! ++Check your system clock" "$LINENO" 5 ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++# Checks for programs. ++{ $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 : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_func_search_save_LIBS=$LIBS ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -23828,1603 +17683,1612 @@ + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char strerror (); + int + main () + { +-return $ac_func (); ++return strerror (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" ++for ac_lib in '' cposix; do ++ if test -z "$ac_lib"; then ++ ac_res="none required" ++ else ++ ac_res=-l$ac_lib ++ LIBS="-l$ac_lib $ac_func_search_save_LIBS" ++ fi ++ if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_search_strerror=$ac_res ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if test "${ac_cv_search_strerror+set}" = set; then : ++ break ++fi ++done ++if test "${ac_cv_search_strerror+set}" = set; then : ++ + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_search_strerror=no ++fi ++rm conftest.$ac_ext ++LIBS=$ac_func_search_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 ++$as_echo "$ac_cv_search_strerror" >&6; } ++ac_res=$ac_cv_search_strerror ++if test "$ac_res" != no; then : ++ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" ++ ++fi ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++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_prog_CC="${ac_tool_prefix}gcc" ++ $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 ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_CC"; then ++ ac_ct_CC=$CC ++ # Extract the first word of "gcc", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++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_prog_ac_ct_CC="gcc" ++ $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 + +- eval "$as_ac_var=no" + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi + ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi ++else ++ CC="$ac_cv_prog_CC" + fi +-done + +-{ $as_echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 +-$as_echo_n "checking for uid_t in sys/types.h... " >&6; } +-if test "${ac_cv_type_uid_t+set}" = set; then ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. ++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 : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "uid_t" >/dev/null 2>&1; then +- ac_cv_type_uid_t=yes ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. + else +- ac_cv_type_uid_t=no +-fi +-rm -f conftest* ++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_prog_CC="${ac_tool_prefix}cc" ++ $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 + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 +-$as_echo "$ac_cv_type_uid_t" >&6; } +-if test $ac_cv_type_uid_t = no; then +- +-cat >>confdefs.h <<\_ACEOF +-#define uid_t int +-_ACEOF ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi + + +-cat >>confdefs.h <<\_ACEOF +-#define gid_t int +-_ACEOF ++ fi ++fi ++if test -z "$CC"; then ++ # Extract the first word of "cc", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++ ac_prog_rejected=no ++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 ++ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ++ ac_prog_rejected=yes ++ continue ++ fi ++ ac_cv_prog_CC="cc" ++ $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 + ++if test $ac_prog_rejected = yes; then ++ # We found a bogon in the path, so make sure we never use it. ++ set dummy $ac_cv_prog_CC ++ shift ++ if test $# != 0; then ++ # We chose a different compiler from the bogus one. ++ # However, it has the same basename, so the bogon will be chosen ++ # first if we set CC to just the basename; use the full file name. ++ shift ++ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" ++ fi ++fi ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +-# Check if <sys/select.h> needs to be included for fd_set +-{ $as_echo "$as_me:$LINENO: checking for fd_set" >&5 +-$as_echo_n "checking for fd_set... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> +-int +-main () +-{ +-fd_set readMask, writeMask; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- gtk_ok=yes ++fi ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ for ac_prog in cl.exe ++ do ++ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. ++set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ++{ $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 : ++ $as_echo_n "(cached) " >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++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_prog_CC="$ac_tool_prefix$ac_prog" ++ $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 + +- gtk_ok=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-if test $gtk_ok = yes; then +- { $as_echo "$as_me:$LINENO: result: yes, found in sys/types.h" >&5 +-$as_echo "yes, found in sys/types.h" >&6; } ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/select.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "fd_mask" >/dev/null 2>&1; then +- gtk_ok=yes ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-rm -f conftest* +- +- if test $gtk_ok = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SYS_SELECT_H 1 +-_ACEOF +- +- { $as_echo "$as_me:$LINENO: result: yes, found in sys/select.h" >&5 +-$as_echo "yes, found in sys/select.h" >&6; } +- else + +-cat >>confdefs.h <<\_ACEOF +-#define NO_FD_SET 1 +-_ACEOF ++ test -n "$CC" && break ++ done ++fi ++if test -z "$CC"; then ++ ac_ct_CC=$CC ++ for ac_prog in cl.exe ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++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_prog_ac_ct_CC="$ac_prog" ++ $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 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++fi ++fi ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +- fi + fi + +-# `widechar' tests for gdki18n.h +-{ $as_echo "$as_me:$LINENO: checking for wchar.h" >&5 +-$as_echo_n "checking for wchar.h... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <wchar.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- gdk_wchar_h=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- gdk_wchar_h=no ++ test -n "$ac_ct_CC" && break ++done ++ ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi + fi + +-rm -f conftest.err conftest.$ac_ext +-if test $gdk_wchar_h = yes; then ++fi + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_WCHAR_H 1 +-_ACEOF + +-fi +-{ $as_echo "$as_me:$LINENO: result: $gdk_wchar_h" >&5 +-$as_echo "$gdk_wchar_h" >&6; } ++test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error "no acceptable C compiler found in \$PATH ++See \`config.log' for more details." "$LINENO" 5; } + +-# Check for wctype.h (for iswalnum) +-{ $as_echo "$as_me:$LINENO: checking for wctype.h" >&5 +-$as_echo_n "checking for wctype.h... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <wctype.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" ++# Provide some information about the compiler. ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- gdk_wctype_h=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gdk_wctype_h=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-if test $gdk_wctype_h = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_WCTYPE_H 1 +-_ACEOF +- +-fi +-{ $as_echo "$as_me:$LINENO: result: $gdk_wctype_h" >&5 +-$as_echo "$gdk_wctype_h" >&6; } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ rm -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-# in Solaris 2.5, `iswalnum' is in -lw +-GDK_WLIBS= +-{ $as_echo "$as_me:$LINENO: checking for iswalnum" >&5 +-$as_echo_n "checking for iswalnum... " >&6; } +-if test "${ac_cv_func_iswalnum+set}" = set; then ++{ $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 : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define iswalnum to an innocuous variant, in case <limits.h> declares iswalnum. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define iswalnum innocuous_iswalnum +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char iswalnum (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef iswalnum +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char iswalnum (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_iswalnum || defined __stub___iswalnum +-choke me +-#endif + + int + main () + { +-return iswalnum (); ++#ifndef __GNUC__ ++ choke me ++#endif ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_iswalnum=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_iswalnum=no ++ ac_compiler_gnu=no + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ac_cv_c_compiler_gnu=$ac_compiler_gnu + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_iswalnum" >&5 +-$as_echo "$ac_cv_func_iswalnum" >&6; } +-if test "x$ac_cv_func_iswalnum" = x""yes; then +- : ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 ++$as_echo "$ac_cv_c_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GCC=yes + else +- { $as_echo "$as_me:$LINENO: checking for iswalnum in -lw" >&5 +-$as_echo_n "checking for iswalnum in -lw... " >&6; } +-if test "${ac_cv_lib_w_iswalnum+set}" = set; then ++ GCC= ++fi ++ac_test_CFLAGS=${CFLAGS+set} ++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 : + $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lw $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ ac_save_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ ac_cv_prog_cc_g=no ++ CFLAGS="-g" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_prog_cc_g=yes ++else ++ CFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char iswalnum (); + int + main () + { +-return iswalnum (); ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_w_iswalnum=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_c_werror_flag=$ac_save_c_werror_flag ++ CFLAGS="-g" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- ac_cv_lib_w_iswalnum=no +-fi ++int ++main () ++{ + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_prog_cc_g=yes + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_w_iswalnum" >&5 +-$as_echo "$ac_cv_lib_w_iswalnum" >&6; } +-if test "x$ac_cv_lib_w_iswalnum" = x""yes; then +- GDK_WLIBS=-lw ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_c_werror_flag=$ac_save_c_werror_flag ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 ++$as_echo "$ac_cv_prog_cc_g" >&6; } ++if test "$ac_test_CFLAGS" = set; then ++ CFLAGS=$ac_save_CFLAGS ++elif test $ac_cv_prog_cc_g = yes; then ++ if test "$GCC" = yes; then ++ CFLAGS="-g -O2" ++ else ++ CFLAGS="-g" ++ fi ++else ++ if test "$GCC" = yes; then ++ CFLAGS="-O2" ++ else ++ CFLAGS= ++ fi + 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 : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_cv_prog_cc_c89=no ++ac_save_CC=$CC ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <stdarg.h> ++#include <stdio.h> ++#include <sys/types.h> ++#include <sys/stat.h> ++/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ ++struct buf { int x; }; ++FILE * (*rcsopen) (struct buf *, struct stat *, int); ++static char *e (p, i) ++ char **p; ++ int i; ++{ ++ return p[i]; ++} ++static char *f (char * (*g) (char **, int), char **p, ...) ++{ ++ char *s; ++ va_list v; ++ va_start (v,p); ++ s = g (p, va_arg (v,int)); ++ va_end (v); ++ return s; ++} ++ ++/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has ++ function prototypes and stuff, but not '\xHH' hex character constants. ++ These don't provoke an error unfortunately, instead are silently treated ++ as 'x'. The following induces an error, until -std is added to get ++ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an ++ array size at least. It's necessary to write '\x00'==0 to get something ++ that's true only with -std. */ ++int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + ++/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters ++ inside strings and character constants. */ ++#define FOO(x) 'x' ++int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +-oLIBS="$LIBS" +-LIBS="$LIBS $GDK_WLIBS" +-# The following is necessary for Linux libc-5.4.38 +-{ $as_echo "$as_me:$LINENO: checking if iswalnum() and friends are properly defined" >&5 +-$as_echo_n "checking if iswalnum() and friends are properly defined... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> ++int test (int i, double x); ++struct s1 {int (*f) (int a);}; ++struct s2 {int (*f) (double a);}; ++int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); ++int argc; ++char **argv; + int + main () + { ++return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ++ ; ++ return 0; ++} ++_ACEOF ++for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ ++ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" ++do ++ CC="$ac_save_CC $ac_arg" ++ if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_prog_cc_c89=$ac_arg ++fi ++rm -f core conftest.err conftest.$ac_objext ++ test "x$ac_cv_prog_cc_c89" != "xno" && break ++done ++rm -f conftest.$ac_ext ++CC=$ac_save_CC + +-#if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H)) +-# ifdef HAVE_WCTYPE_H +-# include <wctype.h> +-# else +-# ifdef HAVE_WCHAR_H +-# include <wchar.h> +-# endif +-# endif +-#else +-# define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c)) +-#endif +-iswalnum((wchar_t) 0); +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++fi ++# AC_CACHE_VAL ++case "x$ac_cv_prog_cc_c89" in ++ x) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 ++$as_echo "none needed" >&6; } ;; ++ xno) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 ++$as_echo "unsupported" >&6; } ;; ++ *) ++ CC="$CC $ac_cv_prog_cc_c89" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 ++$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- gdk_working_wctype=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if test "x$ac_cv_prog_cc_c89" != xno; then : + +- gdk_working_wctype=no + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS="$oLIBS" ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu + +-if test $gdk_working_wctype = no; then ++depcc="$CC" am_compiler_list= + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_BROKEN_WCTYPE 1 +-_ACEOF ++{ $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 : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then ++ # We make a subdir and do the tests there. Otherwise we can end up ++ # making bogus files that we don't know about and never remove. For ++ # instance it was reported that on HP-UX the gcc test will end up ++ # making a dummy file named `D' -- because `-MD' means `put the output ++ # in D'. ++ mkdir conftest.dir ++ # Copy depcomp to subdir because otherwise we won't find it if we're ++ # using a relative directory. ++ cp "$am_depcomp" conftest.dir ++ cd conftest.dir ++ # We will build objects and dependencies in a subdirectory because ++ # it helps to detect inapplicable dependency modes. For instance ++ # both Tru64's cc and ICC support -MD to output dependencies as a ++ # side effect of compilation, but ICC will put the dependencies in ++ # the current directory while Tru64 will put them in the object ++ # directory. ++ mkdir sub + +- GDK_WLIBS= +-fi +-{ $as_echo "$as_me:$LINENO: result: $gdk_working_wctype" >&5 +-$as_echo "$gdk_working_wctype" >&6; } ++ am_cv_CC_dependencies_compiler_type=none ++ if test "$am_compiler_list" = ""; then ++ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` ++ fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac + ++ for depmode in $am_compiler_list; do ++ # Setup a source with many dependencies, because some compilers ++ # like to wrap large dependency lists on column 80 (with \), and ++ # we should not choose a depcomp mode which is confused by this. ++ # ++ # We need to recreate these files for each test, as the compiler may ++ # overwrite some of them when testing with obscure command lines. ++ # This happens at least with the AIX C compiler. ++ : > sub/conftest.c ++ for i in 1 2 3 4 5 6; do ++ echo '#include "conftst'$i'.h"' >> sub/conftest.c ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h ++ done ++ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + +-# Check for uxtheme.h (for MS-Windows Engine) +-{ $as_echo "$as_me:$LINENO: checking for uxtheme.h" >&5 +-$as_echo_n "checking for uxtheme.h... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <uxtheme.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- gtk_uxtheme_h=yes ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" ++ case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; ++ nosideeffect) ++ # after this tag, mechanisms are not by side-effect, so they'll ++ # only be used when explicitly requested ++ if test "x$enable_dependency_tracking" = xyes; then ++ continue ++ else ++ break ++ fi ++ ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; ++ none) break ;; ++ esac ++ if depmode=$depmode \ ++ source=sub/conftest.c object=$am__obj \ ++ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ++ # icc doesn't choke on unknown options, it will just issue warnings ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else ++ am_cv_CC_dependencies_compiler_type=$depmode ++ break ++ fi ++ fi ++ done ++ ++ cd .. ++ rm -rf conftest.dir + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ am_cv_CC_dependencies_compiler_type=none ++fi + +- gtk_uxtheme_h=no + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } ++CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + +-rm -f conftest.err conftest.$ac_ext +-if test $gtk_uxtheme_h = yes; then ++ if ++ test "x$enable_dependency_tracking" != xno \ ++ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then ++ am__fastdepCC_TRUE= ++ am__fastdepCC_FALSE='#' ++else ++ am__fastdepCC_TRUE='#' ++ am__fastdepCC_FALSE= ++fi + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_UXTHEME_H 1 +-_ACEOF + +-fi +-{ $as_echo "$as_me:$LINENO: result: $gtk_uxtheme_h" >&5 +-$as_echo "$gtk_uxtheme_h" >&6; } + +-# Checks for gdkspawn ++am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc + +-for ac_header in crt_externs.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$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 { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ cat >conftest.make <<\_ACEOF ++SHELL = /bin/sh ++all: ++ @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++# GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++case `${MAKE-make} -f conftest.make 2>/dev/null` in ++ *@@@%%%=?*=@@@%%%*) ++ eval ac_cv_prog_make_${ac_make}_set=yes;; ++ *) ++ eval ac_cv_prog_make_${ac_make}_set=no;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++rm -f conftest.make ++fi ++if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ SET_MAKE= + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ SET_MAKE="MAKE=${MAKE-make}" + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if test "x$GCC" = "xyes"; then ++ case " $CFLAGS " in ++ *[\ \ ]-Wall[\ \ ]*) ;; ++ *) CFLAGS="$CFLAGS -Wall" ;; ++ esac + +- ac_header_preproc=no ++ if test "x$enable_ansi" = "xyes"; then ++ case " $CFLAGS " in ++ *[\ \ ]-ansi[\ \ ]*) ;; ++ *) CFLAGS="$CFLAGS -ansi" ;; ++ esac ++ ++ case " $CFLAGS " in ++ *[\ \ ]-pedantic[\ \ ]*) ;; ++ *) CFLAGS="$CFLAGS -pedantic" ;; ++ esac ++ fi ++fi ++ ++CPPFLAGS="$CPPFLAGS -DG_DISABLE_SINGLE_INCLUDES -DATK_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES" ++ ++# Ensure MSVC-compatible struct packing convention is used when ++# compiling for Win32 with gcc. ++# What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while ++# gcc2 uses "-fnative-struct". ++if test x"$os_win32" = xyes; then ++ if test x"$GCC" = xyes; then ++ msnative_struct='' ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get MSVC-compatible struct packing" >&5 ++$as_echo_n "checking how to get MSVC-compatible struct packing... " >&6; } ++ if test -z "$ac_cv_prog_CC"; then ++ our_gcc="$CC" ++ else ++ our_gcc="$ac_cv_prog_CC" ++ fi ++ case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in ++ 2.) ++ if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then ++ msnative_struct='-fnative-struct' ++ fi ++ ;; ++ *) ++ if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then ++ msnative_struct='-mms-bitfields' ++ fi ++ ;; ++ esac ++ if test x"$msnative_struct" = x ; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no way" >&5 ++$as_echo "no way" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: produced libraries might be incompatible with MSVC-compiled code" >&5 ++$as_echo "$as_me: WARNING: produced libraries might be incompatible with MSVC-compiled code" >&2;} ++ else ++ CFLAGS="$CFLAGS $msnative_struct" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${msnative_struct}" >&5 ++$as_echo "${msnative_struct}" >&6; } ++ fi ++ fi + fi + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++# Honor aclocal flags ++ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ++## Initial sanity check, done here so that users get told they ++## have the wrong dependencies as early in the process as possible. ++## Later on we actually use the cflags/libs from separate pkg-config ++## calls. Oh, also the later pkg-config calls don't include ++## the version requirements since those make the module lists ++## annoying to construct ++ ++ ++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 ++{ $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 +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ 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 + ++ ;; ++esac + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- ++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 + +-done +- + +-for ac_func in _NSGetEnviron +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then ++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 ++{ $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 : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif ++ 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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_ac_pt_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 + +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++ ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" ++fi ++ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG ++if test -n "$ac_pt_PKG_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 ++$as_echo "$ac_pt_PKG_CONFIG" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ if test "x$ac_pt_PKG_CONFIG" = x; then ++ PKG_CONFIG="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ PKG_CONFIG=$ac_pt_PKG_CONFIG ++ fi ++else ++ PKG_CONFIG="$ac_cv_path_PKG_CONFIG" + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF + + fi +-done +- ++if test -n "$PKG_CONFIG"; then ++ _pkg_min_version=0.9.0 ++ { $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 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ PKG_CONFIG="" ++ fi + ++fi + +-################################################## +-# Checks for gdk-pixbuf +-################################################## ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BASE_DEPENDENCIES" >&5 ++$as_echo_n "checking for BASE_DEPENDENCIES... " >&6; } + ++if test -n "$PKG_CONFIG"; then ++ if test -n "$BASE_DEPENDENCIES_CFLAGS"; then ++ pkg_cv_BASE_DEPENDENCIES_CFLAGS="$BASE_DEPENDENCIES_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_BASE_DEPENDENCIES_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$BASE_DEPENDENCIES_LIBS"; then ++ pkg_cv_BASE_DEPENDENCIES_LIBS="$BASE_DEPENDENCIES_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_BASE_DEPENDENCIES_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi + +-use_la_modules=false +-case $host in +- *-aix*) use_la_modules=true +-esac + +-if $use_la_modules ; then + +-cat >>confdefs.h <<\_ACEOF +-#define USE_LA_MODULES 1 +-_ACEOF ++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 ++ BASE_DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6"` ++ else ++ BASE_DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$BASE_DEPENDENCIES_PKG_ERRORS" >&5 + ++ as_fn_error "Package requirements (glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6) were not met: + +-{ $as_echo "$as_me:$LINENO: checking whether to build gmodulized gdk-pixbuf" >&5 +-$as_echo_n "checking whether to build gmodulized gdk-pixbuf... " >&6; } ++$BASE_DEPENDENCIES_PKG_ERRORS + +-# Check whether --enable-modules was given. +-if test "${enable_modules+set}" = set; then +- enableval=$enable_modules; +-fi ++Consider adjusting the PKG_CONFIG_PATH environment variable if you ++installed software in a non-standard prefix. ++ ++Alternatively, you may set the environment variables BASE_DEPENDENCIES_CFLAGS ++and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page for more details. ++" "$LINENO" 5 ++elif test $pkg_failed = untried; 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 "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 BASE_DEPENDENCIES_CFLAGS ++and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page for more details. + +-dynworks=false +-deps= +-if test x$enable_modules = xno; then +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++To get pkg-config, see <http://pkg-config.freedesktop.org/>. ++See \`config.log' for more details." "$LINENO" 5; } + else +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- { $as_echo "$as_me:$LINENO: checking whether dynamic modules work" >&5 +-$as_echo_n "checking whether dynamic modules work... " >&6; } +- ## for loop is to strip newline +- tmp=`$PKG_CONFIG --variable=gmodule_supported gmodule-no-export-2.0` +- for I in $tmp; do +- dynworks=$I +- done +- +- if $dynworks; then +- pixbuf_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config" +- pixbuf_deplibs_check=`$pixbuf_libtool_config | \ +- grep '^[a-z_]*check[a-z_]*_method=['\''"]' | \ +- sed 's/.*['\''"]\(.*\)['\''"]$/\1/'` +- if test "x$pixbuf_deplibs_check" = "xnone" || \ +- test "x$pixbuf_deplibs_check" = "xunknown" || \ +- test "x$pixbuf_deplibs_check" = "x"; then +- dynworks=false +- fi +- fi ++ BASE_DEPENDENCIES_CFLAGS=$pkg_cv_BASE_DEPENDENCIES_CFLAGS ++ BASE_DEPENDENCIES_LIBS=$pkg_cv_BASE_DEPENDENCIES_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ : ++fi + +- if $dynworks; then ++## In addition to checking that cairo is present, we also need to ++## check that the correct cairo backend is there. E.g. if the GDK ++## target is win32 we need the cairo-win32 backend and so on. ++cairo_backend=$gdktarget + +-cat >>confdefs.h <<\_ACEOF +-#define USE_GMODULE 1 +-_ACEOF ++# GDK calls the xlib backend "x11," cairo calls it "xlib." Other ++# backend names are identical. ++if test "x$cairo_backend" = "xx11"; then ++ cairo_backend=xlib ++fi + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CAIRO_BACKEND" >&5 ++$as_echo_n "checking for CAIRO_BACKEND... " >&6; } ++ ++if test -n "$PKG_CONFIG"; then ++ if test -n "$CAIRO_BACKEND_CFLAGS"; then ++ pkg_cv_CAIRO_BACKEND_CFLAGS="$CAIRO_BACKEND_CFLAGS" + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-\$cairo_backend >= 1.6\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "cairo-$cairo_backend >= 1.6") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_CAIRO_BACKEND_CFLAGS=`$PKG_CONFIG --cflags "cairo-$cairo_backend >= 1.6" 2>/dev/null` ++else ++ pkg_failed=yes ++fi + fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$CAIRO_BACKEND_LIBS"; then ++ pkg_cv_CAIRO_BACKEND_LIBS="$CAIRO_BACKEND_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-\$cairo_backend >= 1.6\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "cairo-$cairo_backend >= 1.6") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_CAIRO_BACKEND_LIBS=`$PKG_CONFIG --libs "cairo-$cairo_backend >= 1.6" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried + fi + + + +-# Check whether --with-libpng was given. +-if test "${with_libpng+set}" = set; then +- withval=$with_libpng; +-fi +- ++if test $pkg_failed = yes; then + +-# Check whether --with-libjpeg was given. +-if test "${with_libjpeg+set}" = set; then +- withval=$with_libjpeg; ++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 ++ CAIRO_BACKEND_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "cairo-$cairo_backend >= 1.6"` ++ else ++ CAIRO_BACKEND_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "cairo-$cairo_backend >= 1.6"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$CAIRO_BACKEND_PKG_ERRORS" >&5 + ++ as_fn_error "Package requirements (cairo-$cairo_backend >= 1.6) were not met: + +-# Check whether --with-libtiff was given. +-if test "${with_libtiff+set}" = set; then +- withval=$with_libtiff; +-fi ++$CAIRO_BACKEND_PKG_ERRORS + ++Consider adjusting the PKG_CONFIG_PATH environment variable if you ++installed software in a non-standard prefix. + +-# Check whether --with-libjasper was given. +-if test "${with_libjasper+set}" = set; then +- withval=$with_libjasper; +-fi ++Alternatively, you may set the environment variables CAIRO_BACKEND_CFLAGS ++and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page for more details. ++" "$LINENO" 5 ++elif test $pkg_failed = untried; 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 "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 CAIRO_BACKEND_CFLAGS ++and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page for more details. + +-# Check whether --enable-gdiplus was given. +-if test "${enable_gdiplus+set}" = set; then +- enableval=$enable_gdiplus; ++To get pkg-config, see <http://pkg-config.freedesktop.org/>. ++See \`config.log' for more details." "$LINENO" 5; } + else +- enable_gdiplus=no ++ CAIRO_BACKEND_CFLAGS=$pkg_cv_CAIRO_BACKEND_CFLAGS ++ CAIRO_BACKEND_LIBS=$pkg_cv_CAIRO_BACKEND_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ : + fi + ++if test "$os_win32" != yes; then ++ # libtool option to control which symbols are exported ++ # right now, symbols starting with _ are not exported ++ LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[^_].*"' ++else ++ # We currently use .def files on Windows (for gdk-pixbuf, gdk and gtk) ++ LIBTOOL_EXPORT_OPTIONS= ++fi + + + +-if test x$os_win32 = xyes && test x$enable_gdiplus != xno ; then +- BUILD_GDIPLUS_LOADERS_TRUE= +- BUILD_GDIPLUS_LOADERS_FALSE='#' ++# Check whether --enable-explicit-deps was given. ++if test "${enable_explicit_deps+set}" = set; then : ++ enableval=$enable_explicit_deps; + else +- BUILD_GDIPLUS_LOADERS_TRUE='#' +- BUILD_GDIPLUS_LOADERS_FALSE= ++ enable_explicit_deps=auto + fi + + +-if test x$os_win32 = xno || test x$enable_gdiplus = xno; then +- if test x$with_libtiff != xno && test -z "$LIBTIFF"; then +- { $as_echo "$as_me:$LINENO: checking for TIFFReadRGBAImageOriented in -ltiff" >&5 +-$as_echo_n "checking for TIFFReadRGBAImageOriented in -ltiff... " >&6; } +-if test "${ac_cv_lib_tiff_TIFFReadRGBAImageOriented+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ltiff -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char TIFFReadRGBAImageOriented (); +-int +-main () +-{ +-return TIFFReadRGBAImageOriented (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Whether to write dependencies into .pc files" >&5 ++$as_echo_n "checking Whether to write dependencies into .pc files... " >&6; } ++case $enable_explicit_deps in ++ auto) ++ export SED ++ deplibs_check_method=`(./libtool --config; echo 'eval echo \"$deplibs_check_method\"') | sh` ++ if test "x$deplibs_check_method" '!=' xpass_all || test "x$enable_static" = xyes ; then ++ enable_explicit_deps=yes ++ else ++ enable_explicit_deps=no ++ fi ++ ;; ++ yes|no) ++ ;; ++ *) as_fn_error "Value given to --enable-explicit-deps must be one of yes, no or auto" "$LINENO" 5 ++ ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_tiff_TIFFReadRGBAImageOriented=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_explicit_deps" >&5 ++$as_echo "$enable_explicit_deps" >&6; } + +- ac_cv_lib_tiff_TIFFReadRGBAImageOriented=no ++ if test $enable_explicit_deps = no; then ++ DISABLE_EXPLICIT_DEPS_TRUE= ++ DISABLE_EXPLICIT_DEPS_FALSE='#' ++else ++ DISABLE_EXPLICIT_DEPS_TRUE='#' ++ DISABLE_EXPLICIT_DEPS_FALSE= + fi + +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFReadRGBAImageOriented" >&5 +-$as_echo "$ac_cv_lib_tiff_TIFFReadRGBAImageOriented" >&6; } +-if test "x$ac_cv_lib_tiff_TIFFReadRGBAImageOriented" = x""yes; then +- if test "${ac_cv_header_tiffio_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then ++ ++# define a MAINT-like variable REBUILD which is set if Perl ++# and awk are found, so autogenerated sources can be rebuilt ++ ++for ac_prog in perl5 perl ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++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_PERL+set}" = set; then : + $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h usability" >&5 +-$as_echo_n "checking tiffio.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <tiffio.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++ case $PERL in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_PERL="$PERL" # 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_PERL="$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 ++ ++ ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++fi ++PERL=$ac_cv_path_PERL ++if test -n "$PERL"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 ++$as_echo "$PERL" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h presence" >&5 +-$as_echo_n "checking tiffio.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <tiffio.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++ test -n "$PERL" && break ++done ++ ++ ++# We would like indent, but don't require it. ++# Extract the first word of "indent", so it can be a program name with args. ++set dummy indent; 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_INDENT+set}" = set; then : ++ $as_echo_n "(cached) " >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ if test -n "$INDENT"; then ++ ac_cv_prog_INDENT="$INDENT" # Let the user override the test. ++else ++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_prog_INDENT="indent" ++ $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 + +- ac_header_preproc=no ++fi ++fi ++INDENT=$ac_cv_prog_INDENT ++if test -n "$INDENT"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INDENT" >&5 ++$as_echo "$INDENT" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_tiffio_h=$ac_header_preproc ++ ++REBUILD=\# ++if test "x$enable_rebuilds" = "xyes" && \ ++ test -n "$PERL" && \ ++ $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 ; then ++ REBUILD= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } ++ ++ ++for ac_func in lstat mkstemp flockfile getc_unlocked ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++eval as_val=\$$as_ac_var ++ if test "x$as_val" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++_ACEOF + + fi +-if test "x$ac_cv_header_tiffio_h" = x""yes; then +- TIFF='tiff'; LIBTIFF='-ltiff' +-else +- { $as_echo "$as_me:$LINENO: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} ++done ++ ++for ac_func in localtime_r ++do : ++ ac_fn_c_check_func "$LINENO" "localtime_r" "ac_cv_func_localtime_r" ++if test "x$ac_cv_func_localtime_r" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LOCALTIME_R 1 ++_ACEOF ++ + fi ++done + + +-else +- { $as_echo "$as_me:$LINENO: checking for TIFFWriteScanline in -ltiff" >&5 +-$as_echo_n "checking for TIFFWriteScanline in -ltiff... " >&6; } +-if test "${ac_cv_lib_tiff_TIFFWriteScanline+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ltiff -ljpeg -lz -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++# _NL_TIME_FIRST_WEEKDAY is an enum and not a define ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _NL_TIME_FIRST_WEEKDAY" >&5 ++$as_echo_n "checking for _NL_TIME_FIRST_WEEKDAY... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char TIFFWriteScanline (); ++#include <langinfo.h> + int + main () + { +-return TIFFWriteScanline (); ++ ++char c; ++c = *((unsigned char *) nl_langinfo(_NL_TIME_FIRST_WEEKDAY)); ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_tiff_TIFFWriteScanline=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ gtk_ok=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_tiff_TIFFWriteScanline=no ++ gtk_ok=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_ok" >&5 ++$as_echo "$gtk_ok" >&6; } ++if test "$gtk_ok" = "yes"; then + +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFWriteScanline" >&5 +-$as_echo "$ac_cv_lib_tiff_TIFFWriteScanline" >&6; } +-if test "x$ac_cv_lib_tiff_TIFFWriteScanline" = x""yes; then +- if test "${ac_cv_header_tiffio_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h usability" >&5 +-$as_echo_n "checking tiffio.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <tiffio.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++$as_echo "#define HAVE__NL_TIME_FIRST_WEEKDAY 1" >>confdefs.h + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h presence" >&5 +-$as_echo_n "checking tiffio.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++# _NL_MEASUREMENT_MEASUREMENT is an enum and not a define ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _NL_MEASUREMENT_MEASUREMENT" >&5 ++$as_echo_n "checking for _NL_MEASUREMENT_MEASUREMENT... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <tiffio.h> ++#include <langinfo.h> ++int ++main () ++{ ++ ++char c; ++c = *((unsigned char *) nl_langinfo(_NL_MEASUREMENT_MEASUREMENT)); ++ ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_link "$LINENO"; then : ++ gtk_ok=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ gtk_ok=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_ok" >&5 ++$as_echo "$gtk_ok" >&6; } ++if test "$gtk_ok" = "yes"; then + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++$as_echo "#define HAVE__NL_MEASUREMENT_MEASUREMENT 1" >>confdefs.h + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_tiffio_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } + +-fi +-if test "x$ac_cv_header_tiffio_h" = x""yes; then +- TIFF='tiff'; LIBTIFF='-ltiff -ljpeg -lz' ++# _NL_PAPER_HEIGHT is an enum and not a define ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _NL_PAPER_HEIGHT" >&5 ++$as_echo_n "checking for _NL_PAPER_HEIGHT... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <langinfo.h> ++int ++main () ++{ ++ ++char c; ++c = *((unsigned char *) nl_langinfo(_NL_PAPER_HEIGHT)); ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ gtk_ok=yes + else +- { $as_echo "$as_me:$LINENO: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} ++ gtk_ok=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_ok" >&5 ++$as_echo "$gtk_ok" >&6; } ++if test "$gtk_ok" = "yes"; then + ++$as_echo "#define HAVE__NL_PAPER_HEIGHT 1" >>confdefs.h + +-else +- { $as_echo "$as_me:$LINENO: checking for TIFFFlushData in -ltiff34" >&5 +-$as_echo_n "checking for TIFFFlushData in -ltiff34... " >&6; } +-if test "${ac_cv_lib_tiff34_TIFFFlushData+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ltiff34 -ljpeg -lz -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char TIFFFlushData (); ++# _NL_PAPER_WIDTH is an enum and not a define ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _NL_PAPER_WIDTH" >&5 ++$as_echo_n "checking for _NL_PAPER_WIDTH... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <langinfo.h> + int + main () + { +-return TIFFFlushData (); ++ ++char c; ++c = *((unsigned char *) nl_langinfo(_NL_PAPER_WIDTH)); ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_tiff34_TIFFFlushData=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ gtk_ok=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_tiff34_TIFFFlushData=no ++ gtk_ok=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_ok" >&5 ++$as_echo "$gtk_ok" >&6; } ++if test "$gtk_ok" = "yes"; then ++ ++$as_echo "#define HAVE__NL_PAPER_WIDTH 1" >>confdefs.h + +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_tiff34_TIFFFlushData" >&5 +-$as_echo "$ac_cv_lib_tiff34_TIFFFlushData" >&6; } +-if test "x$ac_cv_lib_tiff34_TIFFFlushData" = x""yes; then +- if test "${ac_cv_header_tiffio_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then +- $as_echo_n "(cached) " >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h usability" >&5 +-$as_echo_n "checking tiffio.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++# sigsetjmp is a macro on some platforms, so AC_CHECK_FUNCS is not reliable ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigsetjmp" >&5 ++$as_echo_n "checking for sigsetjmp... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <tiffio.h> ++#include <setjmp.h> ++int ++main () ++{ ++ ++sigjmp_buf env; ++sigsetjmp(env, 0); ++ ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_link "$LINENO"; then : ++ gtk_ok=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ gtk_ok=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_ok" >&5 ++$as_echo "$gtk_ok" >&6; } ++if test "$gtk_ok" = "yes"; then ++ ++$as_echo "#define HAVE_SIGSETJMP 1" >>confdefs.h + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++# i18n stuff ++ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking tiffio.h presence" >&5 +-$as_echo_n "checking tiffio.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ 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 : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LOCALE_H 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++fi ++ ++done ++ ++ 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 : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <tiffio.h> ++#include <locale.h> ++int ++main () ++{ ++return LC_MESSAGES ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_link "$LINENO"; then : ++ am_cv_val_LC_MESSAGES=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ am_cv_val_LC_MESSAGES=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 ++$as_echo "$am_cv_val_LC_MESSAGES" >&6; } ++ if test $am_cv_val_LC_MESSAGES = yes; then + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: tiffio.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: tiffio.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for tiffio.h" >&5 +-$as_echo_n "checking for tiffio.h... " >&6; } +-if test "${ac_cv_header_tiffio_h+set}" = set; then ++ fi ++ fi ++ USE_NLS=yes ++ ++ ++ gt_cv_have_gettext=no ++ ++ CATOBJEXT=NONE ++ XGETTEXT=: ++ 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 : ++ gt_cv_func_dgettext_libintl="no" ++ libintl_extra_libs="" ++ ++ # ++ # First check in libc ++ # ++ { $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 : + $as_echo_n "(cached) " >&6 + else +- ac_cv_header_tiffio_h=$ac_header_preproc ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++#include <libintl.h> ++ ++int ++main () ++{ ++return !ngettext ("","", 1) ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ gt_cv_func_ngettext_libc=yes ++else ++ gt_cv_func_ngettext_libc=no + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 +-$as_echo "$ac_cv_header_tiffio_h" >&6; } ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + + fi +-if test "x$ac_cv_header_tiffio_h" = x""yes; then +- TIFF='tiff'; LIBTIFF='-ltiff34 -ljpeg -lz' ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 ++$as_echo "$gt_cv_func_ngettext_libc" >&6; } ++ ++ 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 : ++ $as_echo_n "(cached) " >&6 + else +- { $as_echo "$as_me:$LINENO: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} +-fi ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + ++#include <libintl.h> + ++int ++main () ++{ ++return !dgettext ("","") ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ gt_cv_func_dgettext_libc=yes + else +- { $as_echo "$as_me:$LINENO: WARNING: *** TIFF loader will not be built (TIFF library not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF library not found) ***" >&2;} ++ gt_cv_func_dgettext_libc=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 ++$as_echo "$gt_cv_func_dgettext_libc" >&6; } ++ fi ++ ++ if test "$gt_cv_func_ngettext_libc" = "yes" ; then ++ 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 : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_BIND_TEXTDOMAIN_CODESET 1 ++_ACEOF + + fi ++done + +- fi ++ fi + +- if test x$with_libtiff != xno && test -z "$LIBTIFF"; then +- { { $as_echo "$as_me:$LINENO: error: +-*** Checks for TIFF loader failed. You can build without it by passing +-*** --without-libtiff to configure but some programs using GTK+ may +-*** not work properly" >&5 +-$as_echo "$as_me: error: +-*** Checks for TIFF loader failed. You can build without it by passing +-*** --without-libtiff to configure but some programs using GTK+ may +-*** not work properly" >&2;} +- { (exit 1); exit 1; }; } +- fi +-fi ++ # ++ # If we don't have everything we want, check in libintl ++ # ++ if test "$gt_cv_func_dgettext_libc" != "yes" \ ++ || test "$gt_cv_func_ngettext_libc" != "yes" \ ++ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + +-if test x$os_win32 = xno || test x$enable_gdiplus = xno; then +- if test x$with_libjpeg != xno && test -z "$LIBJPEG"; then +- { $as_echo "$as_me:$LINENO: checking for jpeg_destroy_decompress in -ljpeg" >&5 +-$as_echo_n "checking for jpeg_destroy_decompress in -ljpeg... " >&6; } +-if test "${ac_cv_lib_jpeg_jpeg_destroy_decompress+set}" = set; then ++ { $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 : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-ljpeg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lintl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -25433,116 +19297,35 @@ + #ifdef __cplusplus + extern "C" + #endif +-char jpeg_destroy_decompress (); ++char bindtextdomain (); + int + main () + { +-return jpeg_destroy_decompress (); ++return bindtextdomain (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_jpeg_jpeg_destroy_decompress=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_intl_bindtextdomain=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_jpeg_jpeg_destroy_decompress=no ++ ac_cv_lib_intl_bindtextdomain=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jpeg_jpeg_destroy_decompress" >&5 +-$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_decompress" >&6; } +-if test "x$ac_cv_lib_jpeg_jpeg_destroy_decompress" = x""yes; then +- jpeg_ok=yes +-else +- jpeg_ok=no +- { $as_echo "$as_me:$LINENO: WARNING: *** JPEG loader will not be built (JPEG library not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** JPEG loader will not be built (JPEG library not found) ***" >&2;} +-fi +- +- if test "$jpeg_ok" = yes; then +- { $as_echo "$as_me:$LINENO: checking for jpeglib.h" >&5 +-$as_echo_n "checking for jpeglib.h... " >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdio.h> +-#undef PACKAGE +-#undef VERSION +-#undef HAVE_STDLIB_H +-#include <jpeglib.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- jpeg_ok=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- jpeg_ok=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +- { $as_echo "$as_me:$LINENO: result: $jpeg_ok" >&5 +-$as_echo "$jpeg_ok" >&6; } +- if test "$jpeg_ok" = yes; then +- LIBJPEG='-ljpeg' +- { $as_echo "$as_me:$LINENO: checking for jpeg_simple_progression in -ljpeg" >&5 +-$as_echo_n "checking for jpeg_simple_progression in -ljpeg... " >&6; } +-if test "${ac_cv_lib_jpeg_jpeg_simple_progression+set}" = set; then ++{ $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 : ++ { $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 : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-ljpeg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lintl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -25551,106 +19334,35 @@ + #ifdef __cplusplus + extern "C" + #endif +-char jpeg_simple_progression (); ++char ngettext (); + int + main () + { +-return jpeg_simple_progression (); ++return ngettext (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_jpeg_jpeg_simple_progression=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_intl_ngettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_jpeg_jpeg_simple_progression=no ++ ac_cv_lib_intl_ngettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jpeg_jpeg_simple_progression" >&5 +-$as_echo "$ac_cv_lib_jpeg_jpeg_simple_progression" >&6; } +-if test "x$ac_cv_lib_jpeg_jpeg_simple_progression" = x""yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_PROGRESSIVE_JPEG 1 +-_ACEOF +- +-else +- { $as_echo "$as_me:$LINENO: WARNING: JPEG library does not support progressive saving." >&5 +-$as_echo "$as_me: WARNING: JPEG library does not support progressive saving." >&2;} +-fi +- +- else +- { $as_echo "$as_me:$LINENO: WARNING: *** JPEG loader will not be built (JPEG header file not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** JPEG loader will not be built (JPEG header file not found) ***" >&2;} +- fi +- fi +- fi +- +- if test x$with_libjpeg != xno && test -z "$LIBJPEG"; then +- { { $as_echo "$as_me:$LINENO: error: +-*** Checks for JPEG loader failed. You can build without it by passing +-*** --without-libjpeg to configure but some programs using GTK+ may +-*** not work properly" >&5 +-$as_echo "$as_me: error: +-*** Checks for JPEG loader failed. You can build without it by passing +-*** --without-libjpeg to configure but some programs using GTK+ may +-*** not work properly" >&2;} +- { (exit 1); exit 1; }; } +- fi +-fi +- +- if test x$with_libpng != xno && test -z "$LIBPNG"; then +- { $as_echo "$as_me:$LINENO: checking for libpng12" >&5 +-$as_echo_n "checking for libpng12... " >&6; } +- if $PKG_CONFIG --exists libpng12 ; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- PNG='png' +- PNG_DEP_CFLAGS_PACKAGES=libpng12 +- LIBPNG=`$PKG_CONFIG --libs libpng12` +- else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- { $as_echo "$as_me:$LINENO: checking for png_read_info in -lpng" >&5 +-$as_echo_n "checking for png_read_info in -lpng... " >&6; } +-if test "${ac_cv_lib_png_png_read_info+set}" = set; then ++{ $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 : ++ { $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 : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpng -lz -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lintl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -25659,283 +19371,85 @@ + #ifdef __cplusplus + extern "C" + #endif +-char png_read_info (); ++char dgettext (); + int + main () + { +-return png_read_info (); ++return dgettext (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_png_png_read_info=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_intl_dgettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_png_png_read_info=no ++ ac_cv_lib_intl_dgettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_png_png_read_info" >&5 +-$as_echo "$ac_cv_lib_png_png_read_info" >&6; } +-if test "x$ac_cv_lib_png_png_read_info" = x""yes; then +- if test "${ac_cv_header_png_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for png.h" >&5 +-$as_echo_n "checking for png.h... " >&6; } +-if test "${ac_cv_header_png_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ $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 : ++ gt_cv_func_dgettext_libintl=yes + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_png_h" >&5 +-$as_echo "$ac_cv_header_png_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking png.h usability" >&5 +-$as_echo_n "checking png.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <png.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking png.h presence" >&5 +-$as_echo_n "checking png.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <png.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: png.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: png.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: png.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: png.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: png.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: png.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: png.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: png.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: png.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: png.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: png.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for png.h" >&5 +-$as_echo_n "checking for png.h... " >&6; } +-if test "${ac_cv_header_png_h+set}" = set; then ++ if test "$gt_cv_func_dgettext_libintl" != "yes" ; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 ++$as_echo_n "checking if -liconv is needed to use gettext... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 ++$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 : + $as_echo_n "(cached) " >&6 + else +- ac_cv_header_png_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_png_h" >&5 +-$as_echo "$ac_cv_header_png_h" >&6; } +- +-fi +-if test "x$ac_cv_header_png_h" = x""yes; then +- png_ok=yes +-else +- png_ok=no +-fi +- +- +-else +- { $as_echo "$as_me:$LINENO: WARNING: *** PNG loader will not be built (PNG library not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG library not found) ***" >&2;} +-fi +- +- if test "$png_ok" = yes; then +- { $as_echo "$as_me:$LINENO: checking for png_structp in png.h" >&5 +-$as_echo_n "checking for png_structp in png.h... " >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lintl -liconv $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <png.h> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char ngettext (); + int + main () + { +-png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct; ++return ngettext (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- png_ok=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_intl_ngettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- png_ok=no ++ ac_cv_lib_intl_ngettext=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- { $as_echo "$as_me:$LINENO: result: $png_ok" >&5 +-$as_echo "$png_ok" >&6; } +- if test "$png_ok" = yes; then +- PNG='png'; LIBPNG='-lpng -lz' +- else +- { $as_echo "$as_me:$LINENO: WARNING: *** PNG loader will not be built (PNG library is too old) ***" >&5 +-$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG library is too old) ***" >&2;} +- fi +- else +- { $as_echo "$as_me:$LINENO: WARNING: *** PNG loader will not be built (PNG header file not found) ***" >&5 +-$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG header file not found) ***" >&2;} +- fi +- fi +- fi +- +- if test x$with_libpng != xno && test -z "$LIBPNG"; then +- { { $as_echo "$as_me:$LINENO: error: +-*** Checks for PNG loader failed. You can build without it by passing +-*** --without-libpng to configure but many programs using GTK+ will +-*** not work properly. The PNG loader is also needed if you are compiling +-*** from CVS." >&5 +-$as_echo "$as_me: error: +-*** Checks for PNG loader failed. You can build without it by passing +-*** --without-libpng to configure but many programs using GTK+ will +-*** not work properly. The PNG loader is also needed if you are compiling +-*** from CVS." >&2;} +- { (exit 1); exit 1; }; } +- fi +- +- if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then +- { $as_echo "$as_me:$LINENO: checking for jas_init in -ljasper" >&5 +-$as_echo_n "checking for jas_init in -ljasper... " >&6; } +-if test "${ac_cv_lib_jasper_jas_init+set}" = set; then ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++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 : ++ { $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 : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-ljasper -ljpeg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lintl -liconv $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -25944,1922 +19458,2147 @@ + #ifdef __cplusplus + extern "C" + #endif +-char jas_init (); ++char dcgettext (); + int + main () + { +-return jas_init (); ++return dcgettext (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_jasper_jas_init=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_intl_dcgettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_jasper_jas_init=no ++ ac_cv_lib_intl_dcgettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jasper_jas_init" >&5 +-$as_echo "$ac_cv_lib_jasper_jas_init" >&6; } +-if test "x$ac_cv_lib_jasper_jas_init" = x""yes; then +- LIBJASPER=-ljasper +-fi +- +- fi +- +- if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then +- { { $as_echo "$as_me:$LINENO: error: +-*** Checks for JPEG2000 loader failed. You can build without it by passing +-*** --without-libjasper to configure" >&5 +-$as_echo "$as_me: error: +-*** Checks for JPEG2000 loader failed. You can build without it by passing +-*** --without-libjasper to configure" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +- +- +- +- +- +- +- +-if $dynworks; then +- BUILD_DYNAMIC_MODULES_TRUE= +- BUILD_DYNAMIC_MODULES_FALSE='#' ++{ $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 : ++ gt_cv_func_dgettext_libintl=yes ++ libintl_extra_libs=-liconv + else +- BUILD_DYNAMIC_MODULES_TRUE='#' +- BUILD_DYNAMIC_MODULES_FALSE= +-fi +- +- +-# +-# Allow building some or all gdk-pixbuf loaders included +-# +-{ $as_echo "$as_me:$LINENO: checking pixbuf loaders to build" >&5 +-$as_echo_n "checking pixbuf loaders to build... " >&6; } +- +- +-# Check whether --with-included_loaders was given. +-if test "${with_included_loaders+set}" = set; then +- withval=$with_included_loaders; ++ : + fi + +- +-if $dynworks; then +- : + else +- ## if the option was specified, leave it; otherwise disable included loaders +- if test x$with_included_loaders = xno; then +- with_included_loaders=yes +- fi ++ : + fi + +-# Use the traditional png loader instead of the GDI+ one on Windows, +-# because some important apps like GIMP need to read and write +-# arbitrary tEXt chunks which doesn't seem to be possible through GDI+ ++ fi ++ ++ # ++ # If we found libintl, then check in it for bind_textdomain_codeset(); ++ # we'll prefer libc if neither have bind_textdomain_codeset(), ++ # and both have dgettext and ngettext ++ # ++ if test "$gt_cv_func_dgettext_libintl" = "yes" ; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS -lintl $libintl_extra_libs" ++ unset ac_cv_func_bind_textdomain_codeset ++ 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 : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_BIND_TEXTDOMAIN_CODESET 1 ++_ACEOF + +-all_loaders="ani,icns,pcx,ras,tga,png,pnm,wbmp,xbm,xpm" +-if test x$with_libjasper != xno; then +- all_loaders="$all_loaders,jasper" +-fi +-if test x$os_win32 = xyes && test x$enable_gdiplus != xno; then +- # Skip PNG, see comment above +- gdip_formats="bmp emf gif ico jpeg tiff wmf" +- for f in $gdip_formats; do +- all_loaders="$all_loaders,gdip-$f" +- done +-else +- all_loaders="$all_loaders,bmp,gif,ico,jpeg,tiff" +-fi +-included_loaders="" +-# If no loaders specified, include all +-if test "x$with_included_loaders" = xyes ; then +- included_loaders="$all_loaders" +-else +- included_loaders="$with_included_loaders" + fi ++done + +-{ $as_echo "$as_me:$LINENO: result: $included_loaders" >&5 +-$as_echo "$included_loaders" >&6; } ++ LIBS="$glib_save_LIBS" + +-INCLUDED_LOADER_OBJ= +-INCLUDED_LOADER_DEFINE= ++ if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then ++ gt_cv_func_dgettext_libc=no ++ else ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ && test "$gt_cv_func_ngettext_libc" = "yes"; then ++ gt_cv_func_dgettext_libintl=no ++ fi ++ fi ++ fi ++ fi + +-IFS="${IFS= }"; gtk_save_ifs="$IFS"; IFS="," +-for loader in $included_loaders; do +- if echo "$all_loaders" | egrep "(^|,)$loader(\$|,)" > /dev/null; then +- : +- else +- { { $as_echo "$as_me:$LINENO: error: the specified loader $loader does not exist" >&5 +-$as_echo "$as_me: error: the specified loader $loader does not exist" >&2;} +- { (exit 1); exit 1; }; } +- fi ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ || test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ gt_cv_have_gettext=yes ++ fi + +- loader_underscores=`echo $loader | sed -e 's/-/_/g'` +- INCLUDED_LOADER_OBJ="$INCLUDED_LOADER_OBJ libstatic-pixbufloader-$loader.la" ++ if test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ INTLLIBS="-lintl $libintl_extra_libs" ++ fi + +- # Don't bother defining separate -DINCLUDE_gdip_foo for each gdip-foo loader +- case $loader in +- gdip-*) ;; +- *) INCLUDED_LOADER_DEFINE="$INCLUDED_LOADER_DEFINE -DINCLUDE_$loader_underscores";; +- esac +- eval INCLUDE_$loader_underscores=yes +-done ++ if test "$gt_cv_have_gettext" = "yes"; then + +-# Just define one -DINCLUDE_gdiplus for all the gdip-foo loaders +-# (except gdip-png, which isn't built at all) +-if test x"$INCLUDE_gdip_ico" = xyes; then +- INCLUDED_LOADER_DEFINE="$INCLUDED_LOADER_DEFINE -DINCLUDE_gdiplus" ++$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h ++ ++ # Extract the first word of "msgfmt", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ case "$MSGFMT" in ++ /*) ++ ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ++ ;; ++ *) ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" ++ for ac_dir in $PATH; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then ++ ac_cv_path_MSGFMT="$ac_dir/$ac_word" ++ break ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ++ ;; ++esac ++fi ++MSGFMT="$ac_cv_path_MSGFMT" ++if test "$MSGFMT" != "no"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 ++$as_echo "$MSGFMT" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi ++ if test "$MSGFMT" != "no"; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS $INTLLIBS" ++ 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 : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DCGETTEXT 1 ++_ACEOF + +-IFS="$gtk_save_ifs" ++fi ++done + ++ MSGFMT_OPTS= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 ++$as_echo_n "checking if msgfmt accepts -c... " >&6; } ++ cat >conftest.foo <<_ACEOF + ++msgid "" ++msgstr "" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Project-Id-Version: test 1.0\n" ++"PO-Revision-Date: 2007-02-15 12:01+0100\n" ++"Last-Translator: test <foo@bar.xx>\n" ++"Language-Team: C <LL@li.org>\n" ++"MIME-Version: 1.0\n" ++"Content-Transfer-Encoding: 8bit\n" + ++_ACEOF ++if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 ++ ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++echo "$as_me: failed input was:" >&5 ++sed 's/^/| /' conftest.foo >&5 ++fi + ++ # Extract the first word of "gmsgfmt", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 ++else ++ case $GMSGFMT in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$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 + +-if test x"$INCLUDE_png" = xyes; then +- INCLUDE_PNG_TRUE= +- INCLUDE_PNG_FALSE='#' ++ test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ++ ;; ++esac ++fi ++GMSGFMT=$ac_cv_path_GMSGFMT ++if test -n "$GMSGFMT"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 ++$as_echo "$GMSGFMT" >&6; } + else +- INCLUDE_PNG_TRUE='#' +- INCLUDE_PNG_FALSE= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +- +-if test x"$INCLUDE_bmp" = xyes; then +- INCLUDE_BMP_TRUE= +- INCLUDE_BMP_FALSE='#' ++ # Extract the first word of "xgettext", so it can be a program name with args. ++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 : ++ $as_echo_n "(cached) " >&6 + else +- INCLUDE_BMP_TRUE='#' +- INCLUDE_BMP_FALSE= ++ case "$XGETTEXT" in ++ /*) ++ ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ++ ;; ++ *) ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" ++ for ac_dir in $PATH; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then ++ ac_cv_path_XGETTEXT="$ac_dir/$ac_word" ++ break ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ++ ;; ++esac + fi +- +- +- +-if test x"$INCLUDE_wbmp" = xyes; then +- INCLUDE_WBMP_TRUE= +- INCLUDE_WBMP_FALSE='#' ++XGETTEXT="$ac_cv_path_XGETTEXT" ++if test "$XGETTEXT" != ":"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 ++$as_echo "$XGETTEXT" >&6; } + else +- INCLUDE_WBMP_TRUE='#' +- INCLUDE_WBMP_FALSE= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- +-if test x"$INCLUDE_gif" = xyes; then +- INCLUDE_GIF_TRUE= +- INCLUDE_GIF_FALSE='#' ++int ++main () ++{ ++extern int _nl_msg_cat_cntr; ++ return _nl_msg_cat_cntr ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ CATOBJEXT=.gmo ++ DATADIRNAME=share + else +- INCLUDE_GIF_TRUE='#' +- INCLUDE_GIF_FALSE= ++ 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 : ++ CATOBJEXT=.gmo ++ DATADIRNAME=share ++else ++ CATOBJEXT=.mo ++ DATADIRNAME=lib + fi + ++ ;; ++ *) ++ CATOBJEXT=.mo ++ DATADIRNAME=lib ++ ;; ++ esac ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ LIBS="$glib_save_LIBS" ++ INSTOBJEXT=.mo ++ else ++ gt_cv_have_gettext=no ++ fi ++ fi + +- +-if test x"$INCLUDE_ico" = xyes; then +- INCLUDE_ICO_TRUE= +- INCLUDE_ICO_FALSE='#' +-else +- INCLUDE_ICO_TRUE='#' +- INCLUDE_ICO_FALSE= + fi + + + +-if test x"$INCLUDE_ani" = xyes; then +- INCLUDE_ANI_TRUE= +- INCLUDE_ANI_FALSE='#' +-else +- INCLUDE_ANI_TRUE='#' +- INCLUDE_ANI_FALSE= +-fi ++ if test "$gt_cv_have_gettext" = "yes" ; then + ++$as_echo "#define ENABLE_NLS 1" >>confdefs.h + ++ fi + +-if test x"$INCLUDE_jpeg" = xyes; then +- INCLUDE_JPEG_TRUE= +- INCLUDE_JPEG_FALSE='#' +-else +- INCLUDE_JPEG_TRUE='#' +- INCLUDE_JPEG_FALSE= +-fi ++ if test "$XGETTEXT" != ":"; then ++ if $XGETTEXT --omit-header /dev/null 2> /dev/null; then ++ : ; ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 ++$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } ++ XGETTEXT=":" ++ fi ++ fi + ++ # We need to process the po/ directory. ++ POSUB=po + ++ ac_config_commands="$ac_config_commands default-1" + +-if test x"$INCLUDE_pnm" = xyes; then +- INCLUDE_PNM_TRUE= +- INCLUDE_PNM_FALSE='#' +-else +- INCLUDE_PNM_TRUE='#' +- INCLUDE_PNM_FALSE= +-fi + ++ for lang in $ALL_LINGUAS; do ++ GMOFILES="$GMOFILES $lang.gmo" ++ POFILES="$POFILES $lang.po" ++ done + + +-if test x"$INCLUDE_ras" = xyes; then +- INCLUDE_RAS_TRUE= +- INCLUDE_RAS_FALSE='#' +-else +- INCLUDE_RAS_TRUE='#' +- INCLUDE_RAS_FALSE= +-fi + + + +-if test x"$INCLUDE_tiff" = xyes; then +- INCLUDE_TIFF_TRUE= +- INCLUDE_TIFF_FALSE='#' +-else +- INCLUDE_TIFF_TRUE='#' +- INCLUDE_TIFF_FALSE= +-fi + + + +-if test x"$INCLUDE_xpm" = xyes; then +- INCLUDE_XPM_TRUE= +- INCLUDE_XPM_FALSE='#' +-else +- INCLUDE_XPM_TRUE='#' +- INCLUDE_XPM_FALSE= +-fi + + + +-if test x"$INCLUDE_xbm" = xyes; then +- INCLUDE_XBM_TRUE= +- INCLUDE_XBM_FALSE='#' +-else +- INCLUDE_XBM_TRUE='#' +- INCLUDE_XBM_FALSE= +-fi + + ++ if test "$gt_cv_have_gettext" = "yes"; then ++ if test "x$ALL_LINGUAS" = "x"; then ++ LINGUAS= ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 ++$as_echo_n "checking for catalogs to be installed... " >&6; } ++ NEW_LINGUAS= ++ for presentlang in $ALL_LINGUAS; do ++ useit=no ++ if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then ++ desiredlanguages="$LINGUAS" ++ else ++ desiredlanguages="$ALL_LINGUAS" ++ fi ++ for desiredlang in $desiredlanguages; do ++ # Use the presentlang catalog if desiredlang is ++ # a. equal to presentlang, or ++ # b. a variant of presentlang (because in this case, ++ # presentlang can be used as a fallback for messages ++ # which are not translated in the desiredlang catalog). ++ case "$desiredlang" in ++ "$presentlang"*) useit=yes;; ++ esac ++ done ++ if test $useit = yes; then ++ NEW_LINGUAS="$NEW_LINGUAS $presentlang" ++ fi ++ done ++ LINGUAS=$NEW_LINGUAS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 ++$as_echo "$LINGUAS" >&6; } ++ fi + +-if test x"$INCLUDE_tga" = xyes; then +- INCLUDE_TGA_TRUE= +- INCLUDE_TGA_FALSE='#' +-else +- INCLUDE_TGA_TRUE='#' +- INCLUDE_TGA_FALSE= +-fi ++ if test -n "$LINGUAS"; then ++ for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done ++ fi ++ fi + ++ MKINSTALLDIRS= ++ if test -n "$ac_aux_dir"; then ++ MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ++ fi ++ if test -z "$MKINSTALLDIRS"; then ++ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" ++ fi + + +-if test x"$INCLUDE_pcx" = xyes; then +- INCLUDE_PCX_TRUE= +- INCLUDE_PCX_FALSE='#' +-else +- INCLUDE_PCX_TRUE='#' +- INCLUDE_PCX_FALSE= +-fi ++ test -d po || mkdir po ++ if test "x$srcdir" != "x."; then ++ if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then ++ posrcprefix="$srcdir/" ++ else ++ posrcprefix="../$srcdir/" ++ fi ++ else ++ posrcprefix="../" ++ fi ++ rm -f po/POTFILES ++ sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ ++ < $srcdir/po/POTFILES.in > po/POTFILES + ++LIBS="$LIBS $INTLLIBS" ++ac_config_commands="$ac_config_commands default-2" + + +-if test x"$INCLUDE_icns" = xyes; then +- INCLUDE_ICNS_TRUE= +- INCLUDE_ICNS_FALSE='#' ++test -d po-properties || mkdir po-properties ++if test "x$srcdir" != "x."; then ++ if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then ++ popropsrcprefix="$srcdir/" ++ else ++ popropsrcprefix="../$srcdir/" ++ fi + else +- INCLUDE_ICNS_TRUE='#' +- INCLUDE_ICNS_FALSE= ++ popropsrcprefix="../" + fi ++rm -f po-properties/POTFILES ++sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $popropsrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ ++< $srcdir/po-properties/POTFILES.in > po-properties/POTFILES + +- +- +-if test x"$INCLUDE_jasper" = xyes; then +- INCLUDE_JASPER_TRUE= +- INCLUDE_JASPER_FALSE='#' ++glib_save_prefix="$prefix" ++glib_save_exec_prefix="$exec_prefix" ++glib_save_datarootdir="$datarootdir" ++test "x$prefix" = xNONE && prefix=$ac_default_prefix ++test "x$exec_prefix" = xNONE && exec_prefix=$prefix ++datarootdir=`eval echo "${datarootdir}"` ++if test "x$CATOBJEXT" = "x.mo" ; then ++ localedir=`eval echo "${libdir}/locale"` + else +- INCLUDE_JASPER_TRUE='#' +- INCLUDE_JASPER_FALSE= ++ localedir=`eval echo "${datadir}/locale"` + fi ++prefix="$glib_save_prefix" ++exec_prefix="$glib_save_exec_prefix" ++datarootdir="$glib_save_datarootdir" + +-# As all GDI+ loaders are either built-in or not, arbitrarily just +-# check one of the variables here ++cat >>confdefs.h <<_ACEOF ++#define GTK_LOCALEDIR "$localedir" ++_ACEOF + + +-if test x"$INCLUDE_gdip_ico" = xyes; then +- INCLUDE_GDIPLUS_TRUE= +- INCLUDE_GDIPLUS_FALSE='#' +-else +- INCLUDE_GDIPLUS_TRUE='#' +- INCLUDE_GDIPLUS_FALSE= +-fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for extra flags to get ANSI library prototypes" >&5 ++$as_echo_n "checking for extra flags to get ANSI library prototypes... " >&6; } ++ ++gtk_save_LIBS=$LIBS ++LIBS="$LIBS -lm" ++if test "$cross_compiling" = yes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 ++$as_echo "none needed" >&6; } + +-if test x$gio_can_sniff = x; then +- { $as_echo "$as_me:$LINENO: checking if gio can sniff png" >&5 +-$as_echo_n "checking if gio can sniff png... " >&6; } +- gtk_save_LIBS="$LIBS" +- gtk_save_CFLAGS="$CFLAGS" +- LIBS="`$PKG_CONFIG --libs gio-2.0`" +- CFLAGS="`$PKG_CONFIG --cflags gio-2.0`" +- if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++#include <math.h> ++ int main (void) { return (log(1) != log(1.)); } ++_ACEOF ++if ac_fn_c_try_run "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 ++$as_echo "none needed" >&6; } ++else ++ gtk_save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -std1" ++ if test "$cross_compiling" = yes; then : ++ true + +- #include <gio/gio.h> +- static const gsize data_size = 159; +- static const guint8 data[] = +- { +- 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, +- 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +- 0x08, 0x02, 0x00, 0x00, 0x00, 0x90, 0x77, 0x53, 0xde, 0x00, 0x00, 0x00, +- 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, +- 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, +- 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, +- 0x49, 0x4d, 0x45, 0x07, 0xd8, 0x07, 0x0f, 0x10, 0x08, 0x15, 0x61, 0xd8, +- 0x35, 0x37, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x43, 0x6f, +- 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, +- 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x47, 0x49, 0x4d, 0x50, 0x57, +- 0x81, 0x0e, 0x17, 0x00, 0x00, 0x00, 0x0c, 0x49, 0x44, 0x41, 0x54, 0x08, +- 0xd7, 0x63, 0xf8, 0xff, 0xff, 0x3f, 0x00, 0x05, 0xfe, 0x02, 0xfe, 0xdc, +- 0xcc, 0x59, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, +- 0x42, 0x60, 0x82 +- }; +- int +- main (int argc, char **argv) +- { +- char *content_type; +- char *image_png; +- content_type = g_content_type_guess (NULL, data, data_size, NULL); +- image_png = g_content_type_from_mime_type ("image/png"); +- return !!strcmp (content_type, image_png); +- } ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <math.h> ++ int main (void) { return (log(1) != log(1.)); } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++if ac_fn_c_try_run "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: -std1" >&5 ++$as_echo "-std1" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 ++$as_echo "" >&6; } ++ CFLAGS="$gtk_save_CFLAGS" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No ANSI prototypes found in library. (-std1 didn't work.)" >&5 ++$as_echo "$as_me: WARNING: No ANSI prototypes found in library. (-std1 didn't work.)" >&2;} ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext ++fi ++ ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext ++fi ++ ++LIBS=$gtk_save_LIBS ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the BeOS" >&5 ++$as_echo_n "checking for the BeOS... " >&6; } ++case $host in ++ *-*-beos*) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ MATH_LIB= ++ ;; ++ *) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++ ++# ++# see bug 162979 ++# ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HP-UX" >&5 ++$as_echo_n "checking for HP-UX... " >&6; } ++case $host_os in ++ hpux9* | hpux10* | hpux11*) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ CFLAGS="$CFLAGS -DHPPEX -DSHMLINK" ++ ;; ++ *) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ ;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- gio_can_sniff=yes + +-cat >>confdefs.h <<\_ACEOF +-#define GDK_PIXBUF_USE_GIO_MIME 1 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for extra flags for POSIX compliance" >&5 ++$as_echo_n "checking for extra flags for POSIX compliance... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <dirent.h> ++int ++main () ++{ ++DIR *dir; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 ++$as_echo "none needed" >&6; } ++else ++ gtk_save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS -posix" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <dirent.h> ++int ++main () ++{ ++DIR *dir; ++ ; ++ return 0; ++} + _ACEOF +- ++if ac_fn_c_try_compile "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: -posix" >&5 ++$as_echo "-posix" >&6; } + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-gio_can_sniff=no +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 ++$as_echo "" >&6; } ++ CFLAGS="$gtk_save_CFLAGS" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not determine POSIX flag. (-posix didn't work.)" >&5 ++$as_echo "$as_me: WARNING: Could not determine POSIX flag. (-posix didn't work.)" >&2;} + fi +- +- +- { $as_echo "$as_me:$LINENO: result: $gio_can_sniff" >&5 +-$as_echo "$gio_can_sniff" >&6; } +- LIBS="$gtk_save_LIBS" +- CFLAGS="$gtk_save_CFLAGS" ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + # +-# Allow building some or all immodules included ++# Run AM_PATH_GLIB_2_0 to make sure that GLib is installed and working + # +-{ $as_echo "$as_me:$LINENO: checking immodules to build" >&5 +-$as_echo_n "checking immodules to build... " >&6; } +- +- +-# Check whether --with-included_immodules was given. +-if test "${with_included_immodules+set}" = set; then +- withval=$with_included_immodules; +-fi + ++GLIB_PACKAGES="gobject-2.0 gmodule-no-export-2.0" + +-if $dynworks; then +- : ++# Check whether --enable-glibtest was given. ++if test "${enable_glibtest+set}" = set; then : ++ enableval=$enable_glibtest; + else +- ## if the option was specified, leave it; otherwise disable included immodules +- if test x$with_included_immodules = xno; then +- with_included_immodules=yes +- fi ++ enable_glibtest=yes + fi + +-all_immodules="am-et,cedilla,cyrillic-translit" +-if test "$gdktarget" = "win32"; then +- all_immodules="${all_immodules},ime" +-fi +-all_immodules="${all_immodules},inuktitut,ipa,multipress,thai,ti-er,ti-et,viqr" +-if test "$gdktarget" = "x11"; then +- all_immodules="${all_immodules},xim" +-fi + +-included_immodules="" +-# If the switch specified without listing any specific ones, include all +-if test "x$with_included_immodules" = xyes ; then +- included_immodules="$all_immodules" +-else +- included_immodules="$with_included_immodules" +-fi ++ pkg_config_args=glib-2.0 ++ for module in . gobject gmodule-no-export gthread ++ do ++ case "$module" in ++ gmodule) ++ pkg_config_args="$pkg_config_args gmodule-2.0" ++ ;; ++ gmodule-no-export) ++ pkg_config_args="$pkg_config_args gmodule-no-export-2.0" ++ ;; ++ gobject) ++ pkg_config_args="$pkg_config_args gobject-2.0" ++ ;; ++ gthread) ++ pkg_config_args="$pkg_config_args gthread-2.0" ++ ;; ++ gio*) ++ pkg_config_args="$pkg_config_args $module-2.0" ++ ;; ++ esac ++ done + +-{ $as_echo "$as_me:$LINENO: result: $included_immodules" >&5 +-$as_echo "$included_immodules" >&6; } + + +-if test "x$included_immodules" != x; then +- HAVE_INCLUDED_IMMMODULES_TRUE= +- HAVE_INCLUDED_IMMMODULES_FALSE='#' ++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 ++{ $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 +- HAVE_INCLUDED_IMMMODULES_TRUE='#' +- HAVE_INCLUDED_IMMMODULES_FALSE= +-fi +- +- +-INCLUDED_IMMODULE_OBJ= +-INCLUDED_IMMODULE_DEFINE= +- +-IFS="${IFS= }"; gtk_save_ifs="$IFS"; IFS="," +-for immodule in $included_immodules; do +- immodule_underscores=`echo $immodule | sed -e 's/-/_/g'` +- if echo "$all_immodules" | egrep "(^|,)$immodule(\$|,)" > /dev/null; then +- : +- else +- { { $as_echo "$as_me:$LINENO: error: the specified input method $immodule does not exist" >&5 +-$as_echo "$as_me: error: the specified input method $immodule does not exist" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +- INCLUDED_IMMODULE_OBJ="$INCLUDED_IMMODULE_OBJ ../modules/input/libstatic-im-$immodule.la" +- INCLUDED_IMMODULE_DEFINE="$INCLUDED_IMMODULE_DEFINE -DINCLUDE_IM_$immodule_underscores" +- eval INCLUDE_$immodule_underscores=yes ++ 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 +-IFS="$gtk_save_ifs" +- +- +- +- ++ done ++IFS=$as_save_IFS + +-if test x"$INCLUDE_am_et" = xyes; then +- INCLUDE_IM_AM_ET_TRUE= +- INCLUDE_IM_AM_ET_FALSE='#' +-else +- INCLUDE_IM_AM_ET_TRUE='#' +- INCLUDE_IM_AM_ET_FALSE= ++ ;; ++esac + fi +- +- +- +-if test x"$INCLUDE_cedilla" = xyes; then +- INCLUDE_IM_CEDILLA_TRUE= +- INCLUDE_IM_CEDILLA_FALSE='#' ++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 +- INCLUDE_IM_CEDILLA_TRUE='#' +- INCLUDE_IM_CEDILLA_FALSE= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +- +-if test x"$INCLUDE_cyrillic_translit" = xyes; then +- INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE= +- INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE='#' +-else +- INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE='#' +- INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE= + fi +- +- +- +-if test x"$INCLUDE_ime" = xyes; then +- INCLUDE_IM_IME_TRUE= +- INCLUDE_IM_IME_FALSE='#' ++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 ++{ $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 : ++ $as_echo_n "(cached) " >&6 + else +- INCLUDE_IM_IME_TRUE='#' +- INCLUDE_IM_IME_FALSE= +-fi +- +- ++ 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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_ac_pt_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 + +-if test x"$INCLUDE_inuktitut" = xyes; then +- INCLUDE_IM_INUKTITUT_TRUE= +- INCLUDE_IM_INUKTITUT_FALSE='#' +-else +- INCLUDE_IM_INUKTITUT_TRUE='#' +- INCLUDE_IM_INUKTITUT_FALSE= ++ ;; ++esac + fi +- +- +- +-if test x"$INCLUDE_ipa" = xyes; then +- INCLUDE_IM_IPA_TRUE= +- INCLUDE_IM_IPA_FALSE='#' ++ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG ++if test -n "$ac_pt_PKG_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 ++$as_echo "$ac_pt_PKG_CONFIG" >&6; } + else +- INCLUDE_IM_IPA_TRUE='#' +- INCLUDE_IM_IPA_FALSE= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +- +- +-if test x"$INCLUDE_multipress" = xyes; then +- INCLUDE_IM_MULTIPRESS_TRUE= +- INCLUDE_IM_MULTIPRESS_FALSE='#' ++ if test "x$ac_pt_PKG_CONFIG" = x; then ++ PKG_CONFIG="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ PKG_CONFIG=$ac_pt_PKG_CONFIG ++ fi + else +- INCLUDE_IM_MULTIPRESS_TRUE='#' +- INCLUDE_IM_MULTIPRESS_FALSE= ++ PKG_CONFIG="$ac_cv_path_PKG_CONFIG" + fi + ++fi ++if test -n "$PKG_CONFIG"; then ++ _pkg_min_version=0.16 ++ { $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 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ PKG_CONFIG="" ++ fi + +- +-if test x"$INCLUDE_thai" = xyes; then +- INCLUDE_IM_THAI_TRUE= +- INCLUDE_IM_THAI_FALSE='#' +-else +- INCLUDE_IM_THAI_TRUE='#' +- INCLUDE_IM_THAI_FALSE= + fi + ++ no_glib="" + ++ if test "x$PKG_CONFIG" = x ; then ++ no_glib=yes ++ PKG_CONFIG=no ++ fi + +-if test x"$INCLUDE_ti_er" = xyes; then +- INCLUDE_IM_TI_ER_TRUE= +- INCLUDE_IM_TI_ER_FALSE='#' +-else +- INCLUDE_IM_TI_ER_TRUE='#' +- INCLUDE_IM_TI_ER_FALSE= +-fi ++ min_glib_version=2.21.3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB - version >= $min_glib_version" >&5 ++$as_echo_n "checking for GLIB - version >= $min_glib_version... " >&6; } ++ ++ if test x$PKG_CONFIG != xno ; then ++ ## don't try to run the test against uninstalled libtool libs ++ if $PKG_CONFIG --uninstalled $pkg_config_args; then ++ echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" ++ enable_glibtest=no ++ fi + ++ if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then ++ : ++ else ++ no_glib=yes ++ fi ++ fi + ++ if test x"$no_glib" = x ; then ++ GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` ++ GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` ++ GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` + +-if test x"$INCLUDE_ti_et" = xyes; then +- INCLUDE_IM_TI_ET_TRUE= +- INCLUDE_IM_TI_ET_FALSE='#' ++ GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` ++ GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` ++ glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ++ glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ++ glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ ++ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` ++ if test "x$enable_glibtest" = "xyes" ; then ++ ac_save_CFLAGS="$CFLAGS" ++ ac_save_LIBS="$LIBS" ++ CFLAGS="$CFLAGS $GLIB_CFLAGS" ++ LIBS="$GLIB_LIBS $LIBS" ++ rm -f conf.glibtest ++ if test "$cross_compiling" = yes; then : ++ echo $ac_n "cross compiling; assumed OK... $ac_c" + else +- INCLUDE_IM_TI_ET_TRUE='#' +- INCLUDE_IM_TI_ET_FALSE= +-fi ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++#include <glib.h> ++#include <stdio.h> ++#include <stdlib.h> + ++int ++main () ++{ ++ int major, minor, micro; ++ char *tmp_version; ++ int ignored; + ++ ignored = system ("touch conf.glibtest"); + +-if test x"$INCLUDE_viqr" = xyes; then +- INCLUDE_IM_VIQR_TRUE= +- INCLUDE_IM_VIQR_FALSE='#' +-else +- INCLUDE_IM_VIQR_TRUE='#' +- INCLUDE_IM_VIQR_FALSE= +-fi ++ /* HP/UX 9 (%@#!) writes to sscanf strings */ ++ tmp_version = g_strdup("$min_glib_version"); ++ if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { ++ printf("%s, bad version string\n", "$min_glib_version"); ++ exit(1); ++ } + ++ if ((glib_major_version != $glib_config_major_version) || ++ (glib_minor_version != $glib_config_minor_version) || ++ (glib_micro_version != $glib_config_micro_version)) ++ { ++ printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", ++ $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, ++ glib_major_version, glib_minor_version, glib_micro_version); ++ printf ("*** was found! If pkg-config was correct, then it is best\n"); ++ printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); ++ printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); ++ printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); ++ printf("*** required on your system.\n"); ++ printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); ++ printf("*** to point to the correct configuration files\n"); ++ } ++ else if ((glib_major_version != GLIB_MAJOR_VERSION) || ++ (glib_minor_version != GLIB_MINOR_VERSION) || ++ (glib_micro_version != GLIB_MICRO_VERSION)) ++ { ++ printf("*** GLIB header files (version %d.%d.%d) do not match\n", ++ GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); ++ printf("*** library (version %d.%d.%d)\n", ++ glib_major_version, glib_minor_version, glib_micro_version); ++ } ++ else ++ { ++ if ((glib_major_version > major) || ++ ((glib_major_version == major) && (glib_minor_version > minor)) || ++ ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) ++ { ++ return 0; ++ } ++ else ++ { ++ printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", ++ glib_major_version, glib_minor_version, glib_micro_version); ++ printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", ++ major, minor, micro); ++ printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); ++ printf("***\n"); ++ printf("*** If you have already installed a sufficiently new version, this error\n"); ++ printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); ++ printf("*** being found. The easiest way to fix this is to remove the old version\n"); ++ printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); ++ printf("*** correct copy of pkg-config. (In this case, you will have to\n"); ++ printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); ++ printf("*** so that the correct libraries are found at run-time))\n"); ++ } ++ } ++ return 1; ++} + ++_ACEOF ++if ac_fn_c_try_run "$LINENO"; then : + +-if test x"$INCLUDE_xim" = xyes; then +- INCLUDE_IM_XIM_TRUE= +- INCLUDE_IM_XIM_FALSE='#' + else +- INCLUDE_IM_XIM_TRUE='#' +- INCLUDE_IM_XIM_FALSE= ++ no_glib=yes ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- +-{ $as_echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 +-$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } +-if test "${ac_cv_header_sys_wait_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CFLAGS="$ac_save_CFLAGS" ++ LIBS="$ac_save_LIBS" ++ fi ++ fi ++ if test "x$no_glib" = x ; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&5 ++$as_echo "yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&6; } ++ : ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ if test "$PKG_CONFIG" = "no" ; then ++ echo "*** A new enough version of pkg-config was not found." ++ echo "*** See http://www.freedesktop.org/software/pkgconfig/" ++ else ++ if test -f conf.glibtest ; then ++ : ++ else ++ echo "*** Could not run GLIB test program, checking why..." ++ ac_save_CFLAGS="$CFLAGS" ++ ac_save_LIBS="$LIBS" ++ CFLAGS="$CFLAGS $GLIB_CFLAGS" ++ LIBS="$LIBS $GLIB_LIBS" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <sys/types.h> +-#include <sys/wait.h> +-#ifndef WEXITSTATUS +-# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) +-#endif +-#ifndef WIFEXITED +-# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) +-#endif ++ ++#include <glib.h> ++#include <stdio.h> + + int + main () + { +- int s; +- wait (&s); +- s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ++ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_sys_wait_h=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ echo "*** The test program compiled, but did not run. This usually means" ++ echo "*** that the run-time linker is not finding GLIB or finding the wrong" ++ echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" ++ echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" ++ echo "*** to the installed location Also, make sure you have run ldconfig if that" ++ echo "*** is required on your system" ++ echo "***" ++ echo "*** If you have an old version installed, it is best to remove it, although" ++ echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_sys_wait_h=no ++ echo "*** The test program failed to compile or link. See the file config.log for the" ++ echo "*** exact error that occured. This usually means GLIB is incorrectly installed." + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ CFLAGS="$ac_save_CFLAGS" ++ LIBS="$ac_save_LIBS" ++ fi ++ fi ++ GLIB_CFLAGS="" ++ GLIB_LIBS="" ++ GLIB_GENMARSHAL="" ++ GOBJECT_QUERY="" ++ GLIB_MKENUMS="" ++ as_fn_error " ++*** GLIB 2.21.3 or better is required. The latest version of ++*** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/." "$LINENO" 5 ++ fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ++ ++ ++ ++ rm -f conf.glibtest ++ ++ ++# See if it's safe to turn G_DISABLE_DEPRECATED on. ++GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.[^.]*\$//"` ++GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo 2.21.3 | sed "s/\.[^.]*\$//"` ++if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then ++ CFLAGS="-DG_DISABLE_DEPRECATED $CFLAGS" + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 +-$as_echo "$ac_cv_header_sys_wait_h" >&6; } +-if test $ac_cv_header_sys_wait_h = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SYS_WAIT_H 1 ++CFLAGS="-DGDK_PIXBUF_DISABLE_DEPRECATED $CFLAGS" ++ ++ ++gtk_save_LIBS=$LIBS ++LIBS="$LIBS $GLIB_LIBS" ++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 : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + _ACEOF + + fi ++done + ++LIBS=$gtk_save_LIBS + +-{ $as_echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-$as_echo_n "checking return type of signal handlers... " >&6; } +-if test "${ac_cv_type_signal+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++for ac_header in pwd.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "pwd.h" "ac_cv_header_pwd_h" "$ac_includes_default" ++if test "x$ac_cv_header_pwd_h" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_PWD_H 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> +-#include <signal.h> + +-int +-main () +-{ +-return *(signal (0, 0)) (0) == 1; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_type_signal=int +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++$as_echo "#define HAVE_PWD_H 1" >>confdefs.h + +- ac_cv_type_signal=void + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-$as_echo "$ac_cv_type_signal" >&6; } ++done + +-cat >>confdefs.h <<_ACEOF +-#define RETSIGTYPE $ac_cv_type_signal ++for ac_header in sys/time.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default" ++if test "x$ac_cv_header_sys_time_h" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SYS_TIME_H 1 + _ACEOF + ++$as_echo "#define HAVE_SYS_TIME_H 1" >>confdefs.h ++ ++fi + ++done + ++for ac_header in unistd.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" ++if test "x$ac_cv_header_unistd_h" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_UNISTD_H 1 ++_ACEOF + ++$as_echo "#define HAVE_UNISTD_H 1" >>confdefs.h + +-if test "x$LIBTIFF" != x; then +- HAVE_TIFF_TRUE= +- HAVE_TIFF_FALSE='#' +-else +- HAVE_TIFF_TRUE='#' +- HAVE_TIFF_FALSE= + fi + ++done ++ ++for ac_header in ftw.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "ftw.h" "ac_cv_header_ftw_h" "$ac_includes_default" ++if test "x$ac_cv_header_ftw_h" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_FTW_H 1 ++_ACEOF + ++$as_echo "#define HAVE_FTW_H 1" >>confdefs.h + +-if test "x$LIBPNG" != x; then +- HAVE_PNG_TRUE= +- HAVE_PNG_FALSE='#' +-else +- HAVE_PNG_TRUE='#' +- HAVE_PNG_FALSE= + fi + ++done + + +-if test "x$LIBJPEG" != x; then +- HAVE_JPEG_TRUE= +- HAVE_JPEG_FALSE='#' ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ftw extensions" >&5 ++$as_echo_n "checking for GNU ftw extensions... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#define _XOPEN_SOURCE 500 ++#define _GNU_SOURCE ++#include <ftw.h> ++int ++main () ++{ ++int flags = FTW_ACTIONRETVAL; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ gtk_ok=yes + else +- HAVE_JPEG_TRUE='#' +- HAVE_JPEG_FALSE= ++ gtk_ok=no + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++if test $gtk_ok = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + ++$as_echo "#define HAVE_GNU_FTW 1" >>confdefs.h + +- +-if test "x$LIBJASPER" != x; then +- HAVE_JASPER_TRUE= +- HAVE_JASPER_FALSE='#' + else +- HAVE_JASPER_TRUE='#' +- HAVE_JASPER_FALSE= ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + ++saved_cflags="$CFLAGS" ++saved_ldflags="$LDFLAGS" + +-if $dynworks ; then +- STATIC_LIB_DEPS= +- if echo "$included_loaders" | egrep '(^|,)tiff($|,)' > /dev/null; then +- STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBTIFF" +- fi +- if echo "$included_loaders" | egrep '(^|,)jpeg($|,)' > /dev/null; then +- STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBJPEG" +- fi +- if echo "$included_loaders" | egrep '(^|,)png($|,)' > /dev/null; then +- STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBPNG" +- fi +- if echo "$included_loaders" | egrep '(^|,)jasper($|,)' > /dev/null; then +- STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBJASPER" +- fi +-else +- STATIC_LIB_DEPS="$LIBTIFF $LIBJPEG $LIBPNG $LIBJASPER" +-fi + +-# Checks to see whether we should include mediaLib +-# support. +-# +-if test "${ac_cv_header_sys_systeminfo_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for sys/systeminfo.h" >&5 +-$as_echo_n "checking for sys/systeminfo.h... " >&6; } +-if test "${ac_cv_header_sys_systeminfo_h+set}" = set; then ++# Checks for header files. ++{ $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 : + $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_systeminfo_h" >&5 +-$as_echo "$ac_cv_header_sys_systeminfo_h" >&6; } + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking sys/systeminfo.h usability" >&5 +-$as_echo_n "checking sys/systeminfo.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <sys/systeminfo.h> ++#include <stdlib.h> ++#include <stdarg.h> ++#include <string.h> ++#include <float.h> ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_header_stdc=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ ac_cv_header_stdc=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking sys/systeminfo.h presence" >&5 +-$as_echo_n "checking sys/systeminfo.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test $ac_cv_header_stdc = yes; then ++ # SunOS 4.x string.h does not declare mem*, contrary to ANSI. ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <sys/systeminfo.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi ++#include <string.h> + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "memchr" >/dev/null 2>&1; then : + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/systeminfo.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: sys/systeminfo.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for sys/systeminfo.h" >&5 +-$as_echo_n "checking for sys/systeminfo.h... " >&6; } +-if test "${ac_cv_header_sys_systeminfo_h+set}" = set; then +- $as_echo_n "(cached) " >&6 + else +- ac_cv_header_sys_systeminfo_h=$ac_header_preproc ++ ac_cv_header_stdc=no + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_systeminfo_h" >&5 +-$as_echo "$ac_cv_header_sys_systeminfo_h" >&6; } ++rm -f conftest* + + fi +-if test "x$ac_cv_header_sys_systeminfo_h" = x""yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SYS_SYSTEMINFO_H 1 ++if test $ac_cv_header_stdc = yes; then ++ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <stdlib.h> ++ + _ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "free" >/dev/null 2>&1; then : + ++else ++ ac_cv_header_stdc=no + fi ++rm -f conftest* + +- +-if test "${ac_cv_header_sys_sysinfo_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for sys/sysinfo.h" >&5 +-$as_echo_n "checking for sys/sysinfo.h... " >&6; } +-if test "${ac_cv_header_sys_sysinfo_h+set}" = set; then +- $as_echo_n "(cached) " >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_sysinfo_h" >&5 +-$as_echo "$ac_cv_header_sys_sysinfo_h" >&6; } ++ ++if test $ac_cv_header_stdc = yes; then ++ # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. ++ if test "$cross_compiling" = yes; then : ++ : + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking sys/sysinfo.h usability" >&5 +-$as_echo_n "checking sys/sysinfo.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <sys/sysinfo.h> ++#include <ctype.h> ++#include <stdlib.h> ++#if ((' ' & 0x0FF) == 0x020) ++# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') ++# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) ++#else ++# define ISLOWER(c) \ ++ (('a' <= (c) && (c) <= 'i') \ ++ || ('j' <= (c) && (c) <= 'r') \ ++ || ('s' <= (c) && (c) <= 'z')) ++# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) ++#endif ++ ++#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) ++int ++main () ++{ ++ int i; ++ for (i = 0; i < 256; i++) ++ if (XOR (islower (i), ISLOWER (i)) ++ || toupper (i) != TOUPPER (i)) ++ return 2; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_run "$LINENO"; then : ++ + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_header_stdc=no ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext ++fi ++ ++fi ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 ++$as_echo "$ac_cv_header_stdc" >&6; } ++if test $ac_cv_header_stdc = yes; then ++ ++$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking sys/sysinfo.h presence" >&5 +-$as_echo_n "checking sys/sysinfo.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/sysinfo.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++# Checks for typedefs, structures, and compiler characteristics. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 ++$as_echo_n "checking for an ANSI C-conforming const... " >&6; } ++if test "${ac_cv_c_const+set}" = set; then : ++ $as_echo_n "(cached) " >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- ac_header_preproc=no +-fi ++int ++main () ++{ ++/* FIXME: Include the comments suggested by Paul. */ ++#ifndef __cplusplus ++ /* Ultrix mips cc rejects this. */ ++ typedef int charset[2]; ++ const charset cs; ++ /* SunOS 4.1.1 cc rejects this. */ ++ char const *const *pcpcc; ++ char **ppc; ++ /* NEC SVR4.0.2 mips cc rejects this. */ ++ struct point {int x, y;}; ++ static struct point const zero = {0,0}; ++ /* AIX XL C 1.02.0.0 rejects this. ++ It does not let you subtract one const X* pointer from another in ++ an arm of an if-expression whose if-part is not a constant ++ expression */ ++ const char *g = "string"; ++ pcpcc = &g + (g ? g-g : 0); ++ /* HPUX 7.0 cc rejects these. */ ++ ++pcpcc; ++ ppc = (char**) pcpcc; ++ pcpcc = (char const *const *) ppc; ++ { /* SCO 3.2v4 cc rejects this. */ ++ char *t; ++ char const *s = 0 ? (char *) 0 : (char const *) 0; + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++ *t++ = 0; ++ if (s) return 0; ++ } ++ { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ ++ int x[] = {25, 17}; ++ const int *foo = &x[0]; ++ ++foo; ++ } ++ { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ ++ typedef const int *iptr; ++ iptr p = 0; ++ ++p; ++ } ++ { /* AIX XL C 1.02.0.0 rejects this saying ++ "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ ++ struct s { int j; const int *ap[3]; }; ++ struct s *b; b->j = 5; ++ } ++ { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ ++ const int foo = 10; ++ if (!foo) return 0; ++ } ++ return !cs[0] && !zero.x; ++#endif + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/sysinfo.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: sys/sysinfo.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for sys/sysinfo.h" >&5 +-$as_echo_n "checking for sys/sysinfo.h... " >&6; } +-if test "${ac_cv_header_sys_sysinfo_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_const=yes + else +- ac_cv_header_sys_sysinfo_h=$ac_header_preproc ++ ac_cv_c_const=no + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_sysinfo_h" >&5 +-$as_echo "$ac_cv_header_sys_sysinfo_h" >&6; } +- ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-if test "x$ac_cv_header_sys_sysinfo_h" = x""yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 ++$as_echo "$ac_cv_c_const" >&6; } ++if test $ac_cv_c_const = no; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SYS_SYSINFO_H 1 +-_ACEOF ++$as_echo "#define const /**/" >>confdefs.h + + fi + + +- +-{ $as_echo "$as_me:$LINENO: checking for mediaLib 2.3" >&5 +-$as_echo_n "checking for mediaLib 2.3... " >&6; } +-use_mlib25=no +-# Check for a mediaLib 2.3 function since that is what the GTK+ mediaLib +-# patch requires. +-{ $as_echo "$as_me:$LINENO: checking for mlib_ImageSetStruct in -lmlib" >&5 +-$as_echo_n "checking for mlib_ImageSetStruct in -lmlib... " >&6; } +-if test "${ac_cv_lib_mlib_mlib_ImageSetStruct+set}" = set; then ++# Checks for library functions. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 ++$as_echo_n "checking return type of signal handlers... " >&6; } ++if test "${ac_cv_type_signal+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmlib $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++#include <sys/types.h> ++#include <signal.h> + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char mlib_ImageSetStruct (); + int + main () + { +-return mlib_ImageSetStruct (); ++return *(signal (0, 0)) (0) == 1; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_mlib_mlib_ImageSetStruct=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_type_signal=int + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mlib_mlib_ImageSetStruct=no ++ ac_cv_type_signal=void + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_mlib_mlib_ImageSetStruct" >&5 +-$as_echo "$ac_cv_lib_mlib_mlib_ImageSetStruct" >&6; } +-if test "x$ac_cv_lib_mlib_mlib_ImageSetStruct" = x""yes; then +- use_mlib=yes +-else +- use_mlib=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 ++$as_echo "$ac_cv_type_signal" >&6; } ++ ++cat >>confdefs.h <<_ACEOF ++#define RETSIGTYPE $ac_cv_type_signal ++_ACEOF ++ ++ ++for ac_header in stdlib.h unistd.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++eval as_val=\$$as_ac_Header ++ if test "x$as_val" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF ++ + fi + +-if test $use_mlib = yes; then ++done + +-cat >>confdefs.h <<\_ACEOF +-#define USE_MEDIALIB 1 ++for ac_func in getpagesize ++do : ++ ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" ++if test "x$ac_cv_func_getpagesize" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GETPAGESIZE 1 + _ACEOF + +- MEDIA_LIB=-lmlib ++fi ++done + +- { $as_echo "$as_me:$LINENO: checking for mediaLib 2.5" >&5 +-$as_echo_n "checking for mediaLib 2.5... " >&6; } +- # Check for a mediaLib 2.5 function since that is what is needed for +- # gdk_rgb_convert integration. +- { $as_echo "$as_me:$LINENO: checking for mlib_VideoColorRGBint_to_BGRAint in -lmlib" >&5 +-$as_echo_n "checking for mlib_VideoColorRGBint_to_BGRAint in -lmlib... " >&6; } +-if test "${ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint+set}" = set; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 ++$as_echo_n "checking for working mmap... " >&6; } ++if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmlib $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ if test "$cross_compiling" = yes; then : ++ ac_cv_func_mmap_fixed_mapped=no ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++$ac_includes_default ++/* malloc might have been renamed as rpl_malloc. */ ++#undef malloc + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" ++/* Thanks to Mike Haertel and Jim Avera for this test. ++ Here is a matrix of mmap possibilities: ++ mmap private not fixed ++ mmap private fixed at somewhere currently unmapped ++ mmap private fixed at somewhere already mapped ++ mmap shared not fixed ++ mmap shared fixed at somewhere currently unmapped ++ mmap shared fixed at somewhere already mapped ++ For private mappings, we should verify that changes cannot be read() ++ back from the file, nor mmap's back from the file at a different ++ address. (There have been systems where private was not correctly ++ implemented like the infamous i386 svr4.0, and systems where the ++ VM page cache was not coherent with the file system buffer cache ++ like early versions of FreeBSD and possibly contemporary NetBSD.) ++ For shared mappings, we should conversely verify that changes get ++ propagated back to all the places they're supposed to be. ++ ++ Grep wants private fixed already mapped. ++ The main things grep needs to know about mmap are: ++ * does it exist and is it safe to write into the mmap'd area ++ * how to use it (BSD variants) */ ++ ++#include <fcntl.h> ++#include <sys/mman.h> ++ ++#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H ++char *malloc (); + #endif +-char mlib_VideoColorRGBint_to_BGRAint (); ++ ++/* This mess was copied from the GNU getpagesize.h. */ ++#ifndef HAVE_GETPAGESIZE ++/* Assume that all systems that can run configure have sys/param.h. */ ++# ifndef HAVE_SYS_PARAM_H ++# define HAVE_SYS_PARAM_H 1 ++# endif ++ ++# ifdef _SC_PAGESIZE ++# define getpagesize() sysconf(_SC_PAGESIZE) ++# else /* no _SC_PAGESIZE */ ++# ifdef HAVE_SYS_PARAM_H ++# include <sys/param.h> ++# ifdef EXEC_PAGESIZE ++# define getpagesize() EXEC_PAGESIZE ++# else /* no EXEC_PAGESIZE */ ++# ifdef NBPG ++# define getpagesize() NBPG * CLSIZE ++# ifndef CLSIZE ++# define CLSIZE 1 ++# endif /* no CLSIZE */ ++# else /* no NBPG */ ++# ifdef NBPC ++# define getpagesize() NBPC ++# else /* no NBPC */ ++# ifdef PAGESIZE ++# define getpagesize() PAGESIZE ++# endif /* PAGESIZE */ ++# endif /* no NBPC */ ++# endif /* no NBPG */ ++# endif /* no EXEC_PAGESIZE */ ++# else /* no HAVE_SYS_PARAM_H */ ++# define getpagesize() 8192 /* punt totally */ ++# endif /* no HAVE_SYS_PARAM_H */ ++# endif /* no _SC_PAGESIZE */ ++ ++#endif /* no HAVE_GETPAGESIZE */ ++ + int + main () + { +-return mlib_VideoColorRGBint_to_BGRAint (); +- ; ++ char *data, *data2, *data3; ++ int i, pagesize; ++ int fd; ++ ++ pagesize = getpagesize (); ++ ++ /* First, make a file with some known garbage in it. */ ++ data = (char *) malloc (pagesize); ++ if (!data) ++ return 1; ++ for (i = 0; i < pagesize; ++i) ++ *(data + i) = rand (); ++ umask (0); ++ fd = creat ("conftest.mmap", 0600); ++ if (fd < 0) ++ return 1; ++ if (write (fd, data, pagesize) != pagesize) ++ return 1; ++ close (fd); ++ ++ /* Next, try to mmap the file at a fixed address which already has ++ something else allocated at it. If we can, also make sure that ++ we see the same garbage. */ ++ fd = open ("conftest.mmap", O_RDWR); ++ if (fd < 0) ++ return 1; ++ data2 = (char *) malloc (2 * pagesize); ++ if (!data2) ++ return 1; ++ data2 += (pagesize - ((long int) data2 & (pagesize - 1))) & (pagesize - 1); ++ if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, ++ MAP_PRIVATE | MAP_FIXED, fd, 0L)) ++ return 1; ++ for (i = 0; i < pagesize; ++i) ++ if (*(data + i) != *(data2 + i)) ++ return 1; ++ ++ /* Finally, make sure that changes to the mapped area do not ++ percolate back to the file as seen by read(). (This is a bug on ++ some variants of i386 svr4.0.) */ ++ for (i = 0; i < pagesize; ++i) ++ *(data2 + i) = *(data2 + i) + 1; ++ data3 = (char *) malloc (pagesize); ++ if (!data3) ++ return 1; ++ if (read (fd, data3, pagesize) != pagesize) ++ return 1; ++ for (i = 0; i < pagesize; ++i) ++ if (*(data + i) != *(data3 + i)) ++ return 1; ++ close (fd); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint=no ++if ac_fn_c_try_run "$LINENO"; then : ++ ac_cv_func_mmap_fixed_mapped=yes ++else ++ ac_cv_func_mmap_fixed_mapped=no ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +-rm -rf conftest.dSYM +-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 +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" >&5 +-$as_echo "$ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" >&6; } +-if test "x$ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" = x""yes; then +- use_mlib25=yes +-else +- use_mlib25=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 ++$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } ++if test $ac_cv_func_mmap_fixed_mapped = yes; then ++ ++$as_echo "#define HAVE_MMAP 1" >>confdefs.h ++ + fi ++rm -f conftest.mmap + +- if test $use_mlib25 = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define USE_MEDIALIB25 1 ++for ac_func in mallinfo ++do : ++ ac_fn_c_check_func "$LINENO" "mallinfo" "ac_cv_func_mallinfo" ++if test "x$ac_cv_func_mallinfo" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_MALLINFO 1 + _ACEOF + +- fi + fi ++done + ++for ac_func in getresuid ++do : ++ ac_fn_c_check_func "$LINENO" "getresuid" "ac_cv_func_getresuid" ++if test "x$ac_cv_func_getresuid" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GETRESUID 1 ++_ACEOF + +-if test $use_mlib = yes; then +- USE_MEDIALIB_TRUE= +- USE_MEDIALIB_FALSE='#' +-else +- USE_MEDIALIB_TRUE='#' +- USE_MEDIALIB_FALSE= + fi ++done + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 ++$as_echo_n "checking for uid_t in sys/types.h... " >&6; } ++if test "${ac_cv_type_uid_t+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <sys/types.h> + +- +-if test $use_mlib25 = yes; then +- USE_MEDIALIB25_TRUE= +- USE_MEDIALIB25_FALSE='#' ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "uid_t" >/dev/null 2>&1; then : ++ ac_cv_type_uid_t=yes + else +- USE_MEDIALIB25_TRUE='#' +- USE_MEDIALIB25_FALSE= ++ ac_cv_type_uid_t=no + fi ++rm -f conftest* + ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_uid_t" >&5 ++$as_echo "$ac_cv_type_uid_t" >&6; } ++if test $ac_cv_type_uid_t = no; then + +-# Checks to see if we should compile in MMX support (there will be +-# a runtime test when the code is actually run to see if it should +-# be used - this just checks if we can compile it.) +-# +-# This code is partially taken from Mesa +-# +-{ $as_echo "$as_me:$LINENO: checking for x86 platform" >&5 +-$as_echo_n "checking for x86 platform... " >&6; } +-case $host_cpu in +- i386|i486|i586|i686|i786|k6|k7) +- use_x86_asm=yes +- ;; +- *) +- use_x86_asm=no +-esac +-{ $as_echo "$as_me:$LINENO: result: $use_x86_asm" >&5 +-$as_echo "$use_x86_asm" >&6; } ++$as_echo "#define uid_t int" >>confdefs.h + +-use_mmx_asm=no +-if test $use_x86_asm = yes; then +- save_ac_ext=$ac_ext +- ac_ext=S + +- { $as_echo "$as_me:$LINENO: checking compiler support for MMX" >&5 +-$as_echo_n "checking compiler support for MMX... " >&6; } +- cp $srcdir/gdk-pixbuf/pixops/scale_line_22_33_mmx.S conftest.S +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- use_mmx_asm=yes +- fi ++$as_echo "#define gid_t int" >>confdefs.h + +- rm -rf conftest* ++fi + +- ac_ext=$save_ac_ext +- if test $use_mmx_asm = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define USE_MMX 1 ++# Check if <sys/select.h> needs to be included for fd_set ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fd_set" >&5 ++$as_echo_n "checking for fd_set... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <sys/types.h> ++int ++main () ++{ ++fd_set readMask, writeMask; ++ ; ++ return 0; ++} + _ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ gtk_ok=yes ++else ++ gtk_ok=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++if test $gtk_ok = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, found in sys/types.h" >&5 ++$as_echo "yes, found in sys/types.h" >&6; } ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <sys/select.h> + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "fd_mask" >/dev/null 2>&1; then : ++ gtk_ok=yes ++fi ++rm -f conftest* ++ ++ if test $gtk_ok = yes; then ++ ++$as_echo "#define HAVE_SYS_SELECT_H 1" >>confdefs.h ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, found in sys/select.h" >&5 ++$as_echo "yes, found in sys/select.h" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ ++$as_echo "#define NO_FD_SET 1" >>confdefs.h ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + fi + +- +- +-if test x$use_mmx_asm = xyes; then +- USE_MMX_TRUE= +- USE_MMX_FALSE='#' ++# `widechar' tests for gdki18n.h ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar.h" >&5 ++$as_echo_n "checking for wchar.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <wchar.h> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ gdk_wchar_h=yes + else +- USE_MMX_TRUE='#' +- USE_MMX_FALSE= ++ gdk_wchar_h=no + fi ++rm -f conftest.err conftest.$ac_ext ++if test $gdk_wchar_h = yes; then + ++$as_echo "#define HAVE_WCHAR_H 1" >>confdefs.h + +-REBUILD_PNGS= +-if test -z "$LIBPNG" && test x"$os_win32" = xno -o x$enable_gdiplus = xno; then +- REBUILD_PNGS=# + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gdk_wchar_h" >&5 ++$as_echo "$gdk_wchar_h" >&6; } + ++# Check for wctype.h (for iswalnum) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for wctype.h" >&5 ++$as_echo_n "checking for wctype.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <wctype.h> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ gdk_wctype_h=yes ++else ++ gdk_wctype_h=no ++fi ++rm -f conftest.err conftest.$ac_ext ++if test $gdk_wctype_h = yes; then + ++$as_echo "#define HAVE_WCTYPE_H 1" >>confdefs.h + +- +-if test $cross_compiling = yes; then +- CROSS_COMPILING_TRUE= +- CROSS_COMPILING_FALSE='#' +-else +- CROSS_COMPILING_TRUE='#' +- CROSS_COMPILING_FALSE= + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gdk_wctype_h" >&5 ++$as_echo "$gdk_wctype_h" >&6; } + ++# in Solaris 2.5, `iswalnum' is in -lw ++GDK_WLIBS= ++ac_fn_c_check_func "$LINENO" "iswalnum" "ac_cv_func_iswalnum" ++if test "x$ac_cv_func_iswalnum" = x""yes; then : + +-if test $cross_compiling = yes; then +- # Extract the first word of "gdk-pixbuf-csource", so it can be a program name with args. +-set dummy gdk-pixbuf-csource; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_GDK_PIXBUF_CSOURCE+set}" = set; then ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iswalnum in -lw" >&5 ++$as_echo_n "checking for iswalnum in -lw... " >&6; } ++if test "${ac_cv_lib_w_iswalnum+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- case $GDK_PIXBUF_CSOURCE in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_GDK_PIXBUF_CSOURCE="$GDK_PIXBUF_CSOURCE" # 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_GDK_PIXBUF_CSOURCE="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lw $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- test -z "$ac_cv_path_GDK_PIXBUF_CSOURCE" && ac_cv_path_GDK_PIXBUF_CSOURCE="no" +- ;; +-esac +-fi +-GDK_PIXBUF_CSOURCE=$ac_cv_path_GDK_PIXBUF_CSOURCE +-if test -n "$GDK_PIXBUF_CSOURCE"; then +- { $as_echo "$as_me:$LINENO: result: $GDK_PIXBUF_CSOURCE" >&5 +-$as_echo "$GDK_PIXBUF_CSOURCE" >&6; } ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char iswalnum (); ++int ++main () ++{ ++return iswalnum (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_w_iswalnum=yes + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ ac_cv_lib_w_iswalnum=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_w_iswalnum" >&5 ++$as_echo "$ac_cv_lib_w_iswalnum" >&6; } ++if test "x$ac_cv_lib_w_iswalnum" = x""yes; then : ++ GDK_WLIBS=-lw + fi + ++fi + +- # Extract the first word of "gtk-update-icon-cache", so it can be a program name with args. +-set dummy gtk-update-icon-cache; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_GTK_UPDATE_ICON_CACHE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ++oLIBS="$LIBS" ++LIBS="$LIBS $GDK_WLIBS" ++# The following is necessary for Linux libc-5.4.38 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if iswalnum() and friends are properly defined" >&5 ++$as_echo_n "checking if iswalnum() and friends are properly defined... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <stdlib.h> ++int ++main () ++{ ++ ++#if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H)) ++# ifdef HAVE_WCTYPE_H ++# include <wctype.h> ++# else ++# ifdef HAVE_WCHAR_H ++# include <wchar.h> ++# endif ++# endif ++#else ++# define iswalnum(c) ((wchar_t)(c) <= 0xFF && isalnum(c)) ++#endif ++iswalnum((wchar_t) 0); ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ gdk_working_wctype=yes + else +- case $GTK_UPDATE_ICON_CACHE in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_GTK_UPDATE_ICON_CACHE="$GTK_UPDATE_ICON_CACHE" # 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_GTK_UPDATE_ICON_CACHE="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS ++ gdk_working_wctype=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS="$oLIBS" + +- test -z "$ac_cv_path_GTK_UPDATE_ICON_CACHE" && ac_cv_path_GTK_UPDATE_ICON_CACHE="no" +- ;; +-esac ++if test $gdk_working_wctype = no; then ++ ++$as_echo "#define HAVE_BROKEN_WCTYPE 1" >>confdefs.h ++ ++ GDK_WLIBS= + fi +-GTK_UPDATE_ICON_CACHE=$ac_cv_path_GTK_UPDATE_ICON_CACHE +-if test -n "$GTK_UPDATE_ICON_CACHE"; then +- { $as_echo "$as_me:$LINENO: result: $GTK_UPDATE_ICON_CACHE" >&5 +-$as_echo "$GTK_UPDATE_ICON_CACHE" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gdk_working_wctype" >&5 ++$as_echo "$gdk_working_wctype" >&6; } ++ ++ ++# Check for uxtheme.h (for MS-Windows Engine) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uxtheme.h" >&5 ++$as_echo_n "checking for uxtheme.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <uxtheme.h> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ gtk_uxtheme_h=yes + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ gtk_uxtheme_h=no + fi ++rm -f conftest.err conftest.$ac_ext ++if test $gtk_uxtheme_h = yes; then + ++$as_echo "#define HAVE_UXTHEME_H 1" >>confdefs.h + +- if test x$GTK_UPDATE_ICON_CACHE = xno; then +- REBUILD_PNGS=# +- fi + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gtk_uxtheme_h" >&5 ++$as_echo "$gtk_uxtheme_h" >&6; } ++ ++# Checks for gdkspawn ++for ac_header in crt_externs.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "crt_externs.h" "ac_cv_header_crt_externs_h" "$ac_includes_default" ++if test "x$ac_cv_header_crt_externs_h" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_CRT_EXTERNS_H 1 ++_ACEOF + +-if test ! -f $srcdir/gtk/gtkbuiltincache.h && +- test "x$REBUILD_PNGS" = "x#" ; then +- { { $as_echo "$as_me:$LINENO: error: +-*** gtkbuiltincache.h is not in the tree, and cannot be built +-*** because you don't have libpng, or (when cross-compiling) you +-*** don't have a prebuilt gtk-update-icon-cache on the build system." >&5 +-$as_echo "$as_me: error: +-*** gtkbuiltincache.h is not in the tree, and cannot be built +-*** because you don't have libpng, or (when cross-compiling) you +-*** don't have a prebuilt gtk-update-icon-cache on the build system." >&2;} +- { (exit 1); exit 1; }; } + fi + ++done + ++for ac_func in _NSGetEnviron ++do : ++ ac_fn_c_check_func "$LINENO" "_NSGetEnviron" "ac_cv_func__NSGetEnviron" ++if test "x$ac_cv_func__NSGetEnviron" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE__NSGETENVIRON 1 ++_ACEOF + +-GDK_PIXBUF_PACKAGES="gmodule-no-export-2.0 gobject-2.0 gio-2.0" +-GDK_PIXBUF_EXTRA_LIBS="$STATIC_LIB_DEPS $MATH_LIB $MEDIA_LIB" +-GDK_PIXBUF_EXTRA_CFLAGS= +-GDK_PIXBUF_DEP_LIBS="`$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" +-GDK_PIXBUF_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $PNG_DEP_CFLAGS_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS" ++fi ++done + +-######################################## +-# Windowing system checks +-######################################## + +-GDK_PIXBUF_XLIB_PACKAGES= +-GDK_PIXBUF_XLIB_EXTRA_CFLAGS= +-GDK_PIXBUF_XLIB_EXTRA_LIBS= + +-GDK_EXTRA_LIBS="$GDK_WLIBS" +-GDK_EXTRA_CFLAGS= ++################################################## ++# Checks for gdk-pixbuf ++################################################## + +-# GTK+ uses some X calls, so needs to link against X directly +-GTK_DEP_PACKAGES_FOR_X= +-GTK_DEP_LIBS_FOR_X= + +-if test "x$gdktarget" = "xx11"; then +- X_PACKAGES=fontconfig ++use_la_modules=false ++case $host in ++ *-aix*) use_la_modules=true ++esac + +- # +- # We use fontconfig very peripherally when decoding the default +- # settings. +- # +- if $PKG_CONFIG --exists fontconfig; then : ; else +- { { $as_echo "$as_me:$LINENO: error: +-*** fontconfig (http://www.fontconfig.org) is required by the X11 backend." >&5 +-$as_echo "$as_me: error: +-*** fontconfig (http://www.fontconfig.org) is required by the X11 backend." >&2;} +- { (exit 1); exit 1; }; } +- fi ++if $use_la_modules ; then + +- # +- # Check for basic X packages; we use pkg-config if available +- # +- if $PKG_CONFIG --exists x11 xext xrender; then +- have_base_x_pc=true +- X_PACKAGES="$X_PACKAGES x11 xext xrender" +- x_libs="`$PKG_CONFIG --libs x11 xext xrender`" +- X_CFLAGS="`$PKG_CONFIG --cflags x11 xext xrender`" ++$as_echo "#define USE_LA_MODULES 1" >>confdefs.h + +- # Strip out any .la files that pkg-config might give us (this happens +- # with -uninstalled.pc files) +- x_libs_for_checks= +- for I in $x_libs ; do +- case $I in +- *.la) ;; +- *) x_libs_for_checks="$x_libs_for_checks $I" ;; +- esac +- done ++fi + +- GDK_PIXBUF_XLIB_PACKAGES="x11" +- GTK_PACKAGES_FOR_X="x11" +- else +- have_base_x_pc=false +- { $as_echo "$as_me:$LINENO: checking for X" >&5 +-$as_echo_n "checking for X... " >&6; } + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gmodulized gdk-pixbuf" >&5 ++$as_echo_n "checking whether to build gmodulized gdk-pixbuf... " >&6; } + +-# Check whether --with-x was given. +-if test "${with_x+set}" = set; then +- withval=$with_x; ++# Check whether --enable-modules was given. ++if test "${enable_modules+set}" = set; then : ++ enableval=$enable_modules; + fi + +-# $have_x is `yes', `no', `disabled', or empty when we do not yet know. +-if test "x$with_x" = xno; then +- # The user explicitly disabled X. +- have_x=disabled +-else +- case $x_includes,$x_libraries in #( +- *\'*) { { $as_echo "$as_me:$LINENO: error: cannot use X directory names containing '" >&5 +-$as_echo "$as_me: error: cannot use X directory names containing '" >&2;} +- { (exit 1); exit 1; }; };; #( +- *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ++dynworks=false ++deps= ++if test x$enable_modules = xno; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + else +- # One or both of the vars are not set, and there is no cached value. +-ac_x_includes=no ac_x_libraries=no +-rm -f -r conftest.dir +-if mkdir conftest.dir; then +- cd conftest.dir +- cat >Imakefile <<'_ACEOF' +-incroot: +- @echo incroot='${INCROOT}' +-usrlibdir: +- @echo usrlibdir='${USRLIBDIR}' +-libdir: +- @echo libdir='${LIBDIR}' +-_ACEOF +- if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then +- # GNU make sometimes prints "make[1]: Entering...", which would confuse us. +- for ac_var in incroot usrlibdir libdir; do +- eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" +- done +- # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. +- for ac_extension in a so sl dylib la dll; do +- if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && +- test -f "$ac_im_libdir/libX11.$ac_extension"; then +- ac_im_usrlibdir=$ac_im_libdir; break +- fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether dynamic modules work" >&5 ++$as_echo_n "checking whether dynamic modules work... " >&6; } ++ ## for loop is to strip newline ++ tmp=`$PKG_CONFIG --variable=gmodule_supported gmodule-no-export-2.0` ++ for I in $tmp; do ++ dynworks=$I + done +- # Screen out bogus values from the imake configuration. They are +- # bogus both because they are the default anyway, and because +- # using them would break gcc on systems where it needs fixed includes. +- case $ac_im_incroot in +- /usr/include) ac_x_includes= ;; +- *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; +- esac +- case $ac_im_usrlibdir in +- /usr/lib | /usr/lib64 | /lib | /lib64) ;; +- *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; +- esac +- fi +- cd .. +- rm -f -r conftest.dir ++ ++ if $dynworks; then ++ pixbuf_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config" ++ pixbuf_deplibs_check=`$pixbuf_libtool_config | \ ++ grep '^[a-z_]*check[a-z_]*_method=['\''"]' | \ ++ sed 's/.*['\''"]\(.*\)['\''"]$/\1/'` ++ if test "x$pixbuf_deplibs_check" = "xnone" || \ ++ test "x$pixbuf_deplibs_check" = "xunknown" || \ ++ test "x$pixbuf_deplibs_check" = "x"; then ++ dynworks=false ++ fi ++ fi ++ ++ if $dynworks; then ++ ++$as_echo "#define USE_GMODULE 1" >>confdefs.h ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ fi + fi + +-# Standard set of common directories for X headers. +-# Check X11 before X11Rn because it is often a symlink to the current release. +-ac_x_header_dirs=' +-/usr/X11/include +-/usr/X11R6/include +-/usr/X11R5/include +-/usr/X11R4/include + +-/usr/include/X11 +-/usr/include/X11R6 +-/usr/include/X11R5 +-/usr/include/X11R4 + +-/usr/local/X11/include +-/usr/local/X11R6/include +-/usr/local/X11R5/include +-/usr/local/X11R4/include ++# Check whether --with-libpng was given. ++if test "${with_libpng+set}" = set; then : ++ withval=$with_libpng; ++fi + +-/usr/local/include/X11 +-/usr/local/include/X11R6 +-/usr/local/include/X11R5 +-/usr/local/include/X11R4 + +-/usr/X386/include +-/usr/x386/include +-/usr/XFree86/include/X11 ++# Check whether --with-libjpeg was given. ++if test "${with_libjpeg+set}" = set; then : ++ withval=$with_libjpeg; ++fi + +-/usr/include +-/usr/local/include +-/usr/unsupported/include +-/usr/athena/include +-/usr/local/x11r5/include +-/usr/lpp/Xamples/include + +-/usr/openwin/include +-/usr/openwin/share/include' ++# Check whether --with-libtiff was given. ++if test "${with_libtiff+set}" = set; then : ++ withval=$with_libtiff; ++fi ++ ++ ++# Check whether --with-libjasper was given. ++if test "${with_libjasper+set}" = set; then : ++ withval=$with_libjasper; ++fi ++ ++ ++# Check whether --enable-gdiplus was given. ++if test "${enable_gdiplus+set}" = set; then : ++ enableval=$enable_gdiplus; ++else ++ enable_gdiplus=no ++fi ++ ++ ++ if test x$os_win32 = xyes && test x$enable_gdiplus != xno ; then ++ BUILD_GDIPLUS_LOADERS_TRUE= ++ BUILD_GDIPLUS_LOADERS_FALSE='#' ++else ++ BUILD_GDIPLUS_LOADERS_TRUE='#' ++ BUILD_GDIPLUS_LOADERS_FALSE= ++fi ++ ++ ++if test x$os_win32 = xno || test x$enable_gdiplus = xno; then ++ if test x$with_libtiff != xno && test -z "$LIBTIFF"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFReadRGBAImageOriented in -ltiff" >&5 ++$as_echo_n "checking for TIFFReadRGBAImageOriented in -ltiff... " >&6; } ++if test "${ac_cv_lib_tiff_TIFFReadRGBAImageOriented+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ltiff -lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char TIFFReadRGBAImageOriented (); ++int ++main () ++{ ++return TIFFReadRGBAImageOriented (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_tiff_TIFFReadRGBAImageOriented=yes ++else ++ ac_cv_lib_tiff_TIFFReadRGBAImageOriented=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFReadRGBAImageOriented" >&5 ++$as_echo "$ac_cv_lib_tiff_TIFFReadRGBAImageOriented" >&6; } ++if test "x$ac_cv_lib_tiff_TIFFReadRGBAImageOriented" = x""yes; then : ++ ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" ++if test "x$ac_cv_header_tiffio_h" = x""yes; then : ++ TIFF='tiff'; LIBTIFF='-ltiff' ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} ++fi ++ + +-if test "$ac_x_includes" = no; then +- # Guess where to find include files, by looking for Xlib.h. +- # First, try using that file with no special directory specified. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFWriteScanline in -ltiff" >&5 ++$as_echo_n "checking for TIFFWriteScanline in -ltiff... " >&6; } ++if test "${ac_cv_lib_tiff_TIFFWriteScanline+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ltiff -ljpeg -lz -lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <X11/Xlib.h> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char TIFFWriteScanline (); ++int ++main () ++{ ++return TIFFWriteScanline (); ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- # We can compile using X headers with no special include directory. +-ac_x_includes= ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_tiff_TIFFWriteScanline=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- for ac_dir in $ac_x_header_dirs; do +- if test -r "$ac_dir/X11/Xlib.h"; then +- ac_x_includes=$ac_dir +- break +- fi +-done ++ ac_cv_lib_tiff_TIFFWriteScanline=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFWriteScanline" >&5 ++$as_echo "$ac_cv_lib_tiff_TIFFWriteScanline" >&6; } ++if test "x$ac_cv_lib_tiff_TIFFWriteScanline" = x""yes; then : ++ ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" ++if test "x$ac_cv_header_tiffio_h" = x""yes; then : ++ TIFF='tiff'; LIBTIFF='-ltiff -ljpeg -lz' ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} + fi + +-rm -f conftest.err conftest.$ac_ext +-fi # $ac_x_includes = no + +-if test "$ac_x_libraries" = no; then +- # Check for the libraries. +- # See if we find them without any special options. +- # Don't add to $LIBS permanently. +- ac_save_LIBS=$LIBS +- LIBS="-lX11 $LIBS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFFlushData in -ltiff34" >&5 ++$as_echo_n "checking for TIFFFlushData in -ltiff34... " >&6; } ++if test "${ac_cv_lib_tiff34_TIFFFlushData+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ltiff34 -ljpeg -lz -lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <X11/Xlib.h> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char TIFFFlushData (); + int + main () + { +-XrmInitialize () ++return TIFFFlushData (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- LIBS=$ac_save_LIBS +-# We can link X programs with no special library path. +-ac_x_libraries= ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_tiff34_TIFFFlushData=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- LIBS=$ac_save_LIBS +-for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` +-do +- # Don't even attempt the hair of trying to link an X program! +- for ac_extension in a so sl dylib la dll; do +- if test -r "$ac_dir/libX11.$ac_extension"; then +- ac_x_libraries=$ac_dir +- break 2 +- fi +- done +-done ++ ac_cv_lib_tiff34_TIFFFlushData=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff34_TIFFFlushData" >&5 ++$as_echo "$ac_cv_lib_tiff34_TIFFFlushData" >&6; } ++if test "x$ac_cv_lib_tiff34_TIFFFlushData" = x""yes; then : ++ ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" ++if test "x$ac_cv_header_tiffio_h" = x""yes; then : ++ TIFF='tiff'; LIBTIFF='-ltiff34 -ljpeg -lz' ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF header files not found) ***" >&2;} + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi # $ac_x_libraries = no + +-case $ac_x_includes,$ac_x_libraries in #( +- no,* | *,no | *\'*) +- # Didn't find X, or a directory has "'" in its name. +- ac_cv_have_x="have_x=no";; #( +- *) +- # Record where we found X for the cache. +- ac_cv_have_x="have_x=yes\ +- ac_x_includes='$ac_x_includes'\ +- ac_x_libraries='$ac_x_libraries'" +-esac ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** TIFF loader will not be built (TIFF library not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** TIFF loader will not be built (TIFF library not found) ***" >&2;} + fi +-;; #( +- *) have_x=yes;; +- esac +- eval "$ac_cv_have_x" +-fi # $with_x != no + +-if test "$have_x" != yes; then +- { $as_echo "$as_me:$LINENO: result: $have_x" >&5 +-$as_echo "$have_x" >&6; } +- no_x=yes +-else +- # If each of the values was on the command line, it overrides each guess. +- test "x$x_includes" = xNONE && x_includes=$ac_x_includes +- test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries +- # Update the cache value to reflect the command line values. +- ac_cv_have_x="have_x=yes\ +- ac_x_includes='$x_includes'\ +- ac_x_libraries='$x_libraries'" +- { $as_echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 +-$as_echo "libraries $x_libraries, headers $x_includes" >&6; } + fi + +-if test "$no_x" = yes; then +- # Not all programs may use this symbol, but it does not hurt to define it. ++fi + +-cat >>confdefs.h <<\_ACEOF +-#define X_DISPLAY_MISSING 1 +-_ACEOF ++ fi + +- X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= +-else +- if test -n "$x_includes"; then +- X_CFLAGS="$X_CFLAGS -I$x_includes" ++ if test x$with_libtiff != xno && test -z "$LIBTIFF"; then ++ as_fn_error " ++*** Checks for TIFF loader failed. You can build without it by passing ++*** --without-libtiff to configure but some programs using GTK+ may ++*** not work properly" "$LINENO" 5 + fi ++fi + +- # It would also be nice to do this for all -L options, not just this one. +- if test -n "$x_libraries"; then +- X_LIBS="$X_LIBS -L$x_libraries" +- # For Solaris; some versions of Sun CC require a space after -R and +- # others require no space. Words are not sufficient . . . . +- { $as_echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 +-$as_echo_n "checking whether -R must be followed by a space... " >&6; } +- ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" +- ac_xsave_c_werror_flag=$ac_c_werror_flag +- ac_c_werror_flag=yes +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test x$os_win32 = xno || test x$enable_gdiplus = xno; then ++ if test x$with_libjpeg != xno && test -z "$LIBJPEG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_destroy_decompress in -ljpeg" >&5 ++$as_echo_n "checking for jpeg_destroy_decompress in -ljpeg... " >&6; } ++if test "${ac_cv_lib_jpeg_jpeg_destroy_decompress+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ljpeg $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char jpeg_destroy_decompress (); + int + main () + { +- ++return jpeg_destroy_decompress (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- X_LIBS="$X_LIBS -R$x_libraries" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_jpeg_jpeg_destroy_decompress=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_jpeg_jpeg_destroy_decompress=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_destroy_decompress" >&5 ++$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_decompress" >&6; } ++if test "x$ac_cv_lib_jpeg_jpeg_destroy_decompress" = x""yes; then : ++ jpeg_ok=yes ++else ++ jpeg_ok=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** JPEG loader will not be built (JPEG library not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** JPEG loader will not be built (JPEG library not found) ***" >&2;} ++fi + +- LIBS="$ac_xsave_LIBS -R $x_libraries" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ if test "$jpeg_ok" = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeglib.h" >&5 ++$as_echo_n "checking for jpeglib.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <stdio.h> ++#undef PACKAGE ++#undef VERSION ++#undef HAVE_STDLIB_H ++#include <jpeglib.h> + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ jpeg_ok=yes ++else ++ jpeg_ok=no ++fi ++rm -f conftest.err conftest.$ac_ext ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $jpeg_ok" >&5 ++$as_echo "$jpeg_ok" >&6; } ++ if test "$jpeg_ok" = yes; then ++ LIBJPEG='-ljpeg' ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_simple_progression in -ljpeg" >&5 ++$as_echo_n "checking for jpeg_simple_progression in -ljpeg... " >&6; } ++if test "${ac_cv_lib_jpeg_jpeg_simple_progression+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ljpeg $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char jpeg_simple_progression (); + int + main () + { +- ++return jpeg_simple_progression (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- X_LIBS="$X_LIBS -R $x_libraries" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_jpeg_jpeg_simple_progression=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { $as_echo "$as_me:$LINENO: result: neither works" >&5 +-$as_echo "neither works" >&6; } ++ ac_cv_lib_jpeg_jpeg_simple_progression=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_simple_progression" >&5 ++$as_echo "$ac_cv_lib_jpeg_jpeg_simple_progression" >&6; } ++if test "x$ac_cv_lib_jpeg_jpeg_simple_progression" = x""yes; then : ++ ++$as_echo "#define HAVE_PROGRESSIVE_JPEG 1" >>confdefs.h + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: JPEG library does not support progressive saving." >&5 ++$as_echo "$as_me: WARNING: JPEG library does not support progressive saving." >&2;} + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- ac_c_werror_flag=$ac_xsave_c_werror_flag +- LIBS=$ac_xsave_LIBS ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** JPEG loader will not be built (JPEG header file not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** JPEG loader will not be built (JPEG header file not found) ***" >&2;} ++ fi ++ fi + fi + +- # Check for system-dependent libraries X programs must link with. +- # Do this before checking for the system-independent R6 libraries +- # (-lICE), since we may need -lsocket or whatever for X linking. ++ if test x$with_libjpeg != xno && test -z "$LIBJPEG"; then ++ as_fn_error " ++*** Checks for JPEG loader failed. You can build without it by passing ++*** --without-libjpeg to configure but some programs using GTK+ may ++*** not work properly" "$LINENO" 5 ++ fi ++fi + +- if test "$ISC" = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" +- else +- # Martyn Johnson says this is needed for Ultrix, if the X +- # libraries were built with DECnet support. And Karl Berry says +- # the Alpha needs dnet_stub (dnet does not exist). +- ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ if test x$with_libpng != xno && test -z "$LIBPNG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libpng12" >&5 ++$as_echo_n "checking for libpng12... " >&6; } ++ if $PKG_CONFIG --exists libpng12 ; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ PNG='png' ++ PNG_DEP_CFLAGS_PACKAGES=libpng12 ++ LIBPNG=`$PKG_CONFIG --libs libpng12` ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_read_info in -lpng" >&5 ++$as_echo_n "checking for png_read_info in -lpng... " >&6; } ++if test "${ac_cv_lib_png_png_read_info+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lpng -lz -lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -27868,53 +21607,92 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XOpenDisplay (); ++char png_read_info (); + int + main () + { +-return XOpenDisplay (); ++return png_read_info (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- : ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_png_png_read_info=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_png_png_read_info=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_read_info" >&5 ++$as_echo "$ac_cv_lib_png_png_read_info" >&6; } ++if test "x$ac_cv_lib_png_png_read_info" = x""yes; then : ++ ac_fn_c_check_header_mongrel "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default" ++if test "x$ac_cv_header_png_h" = x""yes; then : ++ png_ok=yes ++else ++ png_ok=no ++fi + +- { $as_echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 +-$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } +-if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then ++ ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** PNG loader will not be built (PNG library not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG library not found) ***" >&2;} ++fi ++ ++ if test "$png_ok" = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_structp in png.h" >&5 ++$as_echo_n "checking for png_structp in png.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <png.h> ++int ++main () ++{ ++png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ png_ok=yes ++else ++ png_ok=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $png_ok" >&5 ++$as_echo "$png_ok" >&6; } ++ if test "$png_ok" = yes; then ++ PNG='png'; LIBPNG='-lpng -lz' ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** PNG loader will not be built (PNG library is too old) ***" >&5 ++$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG library is too old) ***" >&2;} ++ fi ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** PNG loader will not be built (PNG header file not found) ***" >&5 ++$as_echo "$as_me: WARNING: *** PNG loader will not be built (PNG header file not found) ***" >&2;} ++ fi ++ fi ++ fi ++ ++ if test x$with_libpng != xno && test -z "$LIBPNG"; then ++ as_fn_error " ++*** Checks for PNG loader failed. You can build without it by passing ++*** --without-libpng to configure but many programs using GTK+ will ++*** not work properly. The PNG loader is also needed if you are compiling ++*** from CVS." "$LINENO" 5 ++ fi ++ ++ if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jas_init in -ljasper" >&5 ++$as_echo_n "checking for jas_init in -ljasper... " >&6; } ++if test "${ac_cv_lib_jasper_jas_init+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldnet $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-ljasper -ljpeg $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -27923,794 +21701,663 @@ + #ifdef __cplusplus + extern "C" + #endif +-char dnet_ntoa (); ++char jas_init (); + int + main () + { +-return dnet_ntoa (); ++return jas_init (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_dnet_dnet_ntoa=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_jasper_jas_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_jasper_jas_init=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jasper_jas_init" >&5 ++$as_echo "$ac_cv_lib_jasper_jas_init" >&6; } ++if test "x$ac_cv_lib_jasper_jas_init" = x""yes; then : ++ LIBJASPER=-ljasper ++fi ++ ++ fi ++ ++ if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then ++ as_fn_error " ++*** Checks for JPEG2000 loader failed. You can build without it by passing ++*** --without-libjasper to configure" "$LINENO" 5 ++ fi ++ ++ ++ ++ ++ ++ ++ if $dynworks; then ++ BUILD_DYNAMIC_MODULES_TRUE= ++ BUILD_DYNAMIC_MODULES_FALSE='#' ++else ++ BUILD_DYNAMIC_MODULES_TRUE='#' ++ BUILD_DYNAMIC_MODULES_FALSE= ++fi ++ ++ ++# ++# Allow building some or all gdk-pixbuf loaders included ++# ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pixbuf loaders to build" >&5 ++$as_echo_n "checking pixbuf loaders to build... " >&6; } ++ ++ ++# Check whether --with-included_loaders was given. ++if test "${with_included_loaders+set}" = set; then : ++ withval=$with_included_loaders; ++fi ++ ++ ++if $dynworks; then ++ : ++else ++ ## if the option was specified, leave it; otherwise disable included loaders ++ if test x$with_included_loaders = xno; then ++ with_included_loaders=yes ++ fi ++fi ++ ++# Use the traditional png loader instead of the GDI+ one on Windows, ++# because some important apps like GIMP need to read and write ++# arbitrary tEXt chunks which doesn't seem to be possible through GDI+ ++ ++all_loaders="ani,icns,pcx,ras,tga,png,pnm,wbmp,xbm,xpm" ++if test x$with_libjasper != xno; then ++ all_loaders="$all_loaders,jasper" ++fi ++if test x$os_win32 = xyes && test x$enable_gdiplus != xno; then ++ # Skip PNG, see comment above ++ gdip_formats="bmp emf gif ico jpeg tiff wmf" ++ for f in $gdip_formats; do ++ all_loaders="$all_loaders,gdip-$f" ++ done ++else ++ all_loaders="$all_loaders,bmp,gif,ico,jpeg,tiff" ++fi ++included_loaders="" ++# If no loaders specified, include all ++if test "x$with_included_loaders" = xyes ; then ++ included_loaders="$all_loaders" ++else ++ included_loaders="$with_included_loaders" ++fi ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $included_loaders" >&5 ++$as_echo "$included_loaders" >&6; } ++ ++INCLUDED_LOADER_OBJ= ++INCLUDED_LOADER_DEFINE= ++ ++IFS="${IFS= }"; gtk_save_ifs="$IFS"; IFS="," ++for loader in $included_loaders; do ++ if echo "$all_loaders" | egrep "(^|,)$loader(\$|,)" > /dev/null; then ++ : ++ else ++ as_fn_error "the specified loader $loader does not exist" "$LINENO" 5 ++ fi ++ ++ loader_underscores=`echo $loader | sed -e 's/-/_/g'` ++ INCLUDED_LOADER_OBJ="$INCLUDED_LOADER_OBJ libstatic-pixbufloader-$loader.la" ++ ++ # Don't bother defining separate -DINCLUDE_gdip_foo for each gdip-foo loader ++ case $loader in ++ gdip-*) ;; ++ *) INCLUDED_LOADER_DEFINE="$INCLUDED_LOADER_DEFINE -DINCLUDE_$loader_underscores";; ++ esac ++ eval INCLUDE_$loader_underscores=yes ++done ++ ++# Just define one -DINCLUDE_gdiplus for all the gdip-foo loaders ++# (except gdip-png, which isn't built at all) ++if test x"$INCLUDE_gdip_ico" = xyes; then ++ INCLUDED_LOADER_DEFINE="$INCLUDED_LOADER_DEFINE -DINCLUDE_gdiplus" ++fi ++ ++IFS="$gtk_save_ifs" ++ + +- ac_cv_lib_dnet_dnet_ntoa=no +-fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ if test x"$INCLUDE_png" = xyes; then ++ INCLUDE_PNG_TRUE= ++ INCLUDE_PNG_FALSE='#' ++else ++ INCLUDE_PNG_TRUE='#' ++ INCLUDE_PNG_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +-$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } +-if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" ++ ++ if test x"$INCLUDE_bmp" = xyes; then ++ INCLUDE_BMP_TRUE= ++ INCLUDE_BMP_FALSE='#' ++else ++ INCLUDE_BMP_TRUE='#' ++ INCLUDE_BMP_FALSE= + fi + +- if test $ac_cv_lib_dnet_dnet_ntoa = no; then +- { $as_echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 +-$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } +-if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ if test x"$INCLUDE_wbmp" = xyes; then ++ INCLUDE_WBMP_TRUE= ++ INCLUDE_WBMP_FALSE='#' + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldnet_stub $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ INCLUDE_WBMP_TRUE='#' ++ INCLUDE_WBMP_FALSE= ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dnet_ntoa (); +-int +-main () +-{ +-return dnet_ntoa (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_dnet_stub_dnet_ntoa=yes ++ if test x"$INCLUDE_gif" = xyes; then ++ INCLUDE_GIF_TRUE= ++ INCLUDE_GIF_FALSE='#' + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ INCLUDE_GIF_TRUE='#' ++ INCLUDE_GIF_FALSE= ++fi + +- ac_cv_lib_dnet_stub_dnet_ntoa=no ++ if test x"$INCLUDE_ico" = xyes; then ++ INCLUDE_ICO_TRUE= ++ INCLUDE_ICO_FALSE='#' ++else ++ INCLUDE_ICO_TRUE='#' ++ INCLUDE_ICO_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ if test x"$INCLUDE_ani" = xyes; then ++ INCLUDE_ANI_TRUE= ++ INCLUDE_ANI_FALSE='#' ++else ++ INCLUDE_ANI_TRUE='#' ++ INCLUDE_ANI_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +-$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } +-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" ++ ++ if test x"$INCLUDE_jpeg" = xyes; then ++ INCLUDE_JPEG_TRUE= ++ INCLUDE_JPEG_FALSE='#' ++else ++ INCLUDE_JPEG_TRUE='#' ++ INCLUDE_JPEG_FALSE= + fi + +- fi ++ if test x"$INCLUDE_pnm" = xyes; then ++ INCLUDE_PNM_TRUE= ++ INCLUDE_PNM_FALSE='#' ++else ++ INCLUDE_PNM_TRUE='#' ++ INCLUDE_PNM_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- LIBS="$ac_xsave_LIBS" ++ if test x"$INCLUDE_ras" = xyes; then ++ INCLUDE_RAS_TRUE= ++ INCLUDE_RAS_FALSE='#' ++else ++ INCLUDE_RAS_TRUE='#' ++ INCLUDE_RAS_FALSE= ++fi + +- # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, +- # to get the SysV transport functions. +- # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) +- # needs -lnsl. +- # The nsl library prevents programs from opening the X display +- # on Irix 5.2, according to T.E. Dickey. +- # The functions gethostbyname, getservbyname, and inet_addr are +- # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. +- { $as_echo "$as_me:$LINENO: checking for gethostbyname" >&5 +-$as_echo_n "checking for gethostbyname... " >&6; } +-if test "${ac_cv_func_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ if test x"$INCLUDE_tiff" = xyes; then ++ INCLUDE_TIFF_TRUE= ++ INCLUDE_TIFF_FALSE='#' + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define gethostbyname to an innocuous variant, in case <limits.h> declares gethostbyname. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define gethostbyname innocuous_gethostbyname ++ INCLUDE_TIFF_TRUE='#' ++ INCLUDE_TIFF_FALSE= ++fi + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char gethostbyname (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ ++ if test x"$INCLUDE_xpm" = xyes; then ++ INCLUDE_XPM_TRUE= ++ INCLUDE_XPM_FALSE='#' ++else ++ INCLUDE_XPM_TRUE='#' ++ INCLUDE_XPM_FALSE= ++fi + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif ++ if test x"$INCLUDE_xbm" = xyes; then ++ INCLUDE_XBM_TRUE= ++ INCLUDE_XBM_FALSE='#' ++else ++ INCLUDE_XBM_TRUE='#' ++ INCLUDE_XBM_FALSE= ++fi + +-#undef gethostbyname ++ if test x"$INCLUDE_tga" = xyes; then ++ INCLUDE_TGA_TRUE= ++ INCLUDE_TGA_FALSE='#' ++else ++ INCLUDE_TGA_TRUE='#' ++ INCLUDE_TGA_FALSE= ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_gethostbyname || defined __stub___gethostbyname +-choke me +-#endif ++ if test x"$INCLUDE_pcx" = xyes; then ++ INCLUDE_PCX_TRUE= ++ INCLUDE_PCX_FALSE='#' ++else ++ INCLUDE_PCX_TRUE='#' ++ INCLUDE_PCX_FALSE= ++fi + +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_gethostbyname=yes ++ if test x"$INCLUDE_icns" = xyes; then ++ INCLUDE_ICNS_TRUE= ++ INCLUDE_ICNS_FALSE='#' + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ INCLUDE_ICNS_TRUE='#' ++ INCLUDE_ICNS_FALSE= ++fi + +- ac_cv_func_gethostbyname=no ++ if test x"$INCLUDE_jasper" = xyes; then ++ INCLUDE_JASPER_TRUE= ++ INCLUDE_JASPER_FALSE='#' ++else ++ INCLUDE_JASPER_TRUE='#' ++ INCLUDE_JASPER_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++# As all GDI+ loaders are either built-in or not, arbitrarily just ++# check one of the variables here ++ if test x"$INCLUDE_gdip_ico" = xyes; then ++ INCLUDE_GDIPLUS_TRUE= ++ INCLUDE_GDIPLUS_FALSE='#' ++else ++ INCLUDE_GDIPLUS_TRUE='#' ++ INCLUDE_GDIPLUS_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 +-$as_echo "$ac_cv_func_gethostbyname" >&6; } + +- if test $ac_cv_func_gethostbyname = no; then +- { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } +-if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ++if test x$gio_can_sniff = x; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if gio can sniff png" >&5 ++$as_echo_n "checking if gio can sniff png... " >&6; } ++ gtk_save_LIBS="$LIBS" ++ gtk_save_CFLAGS="$CFLAGS" ++ LIBS="`$PKG_CONFIG --libs gio-2.0`" ++ CFLAGS="`$PKG_CONFIG --cflags gio-2.0`" ++ 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; } + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnsl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_nsl_gethostbyname=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ #include <gio/gio.h> ++ static const gsize data_size = 159; ++ static const guint8 data[] = ++ { ++ 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, ++ 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, ++ 0x08, 0x02, 0x00, 0x00, 0x00, 0x90, 0x77, 0x53, 0xde, 0x00, 0x00, 0x00, ++ 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, ++ 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, ++ 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, ++ 0x49, 0x4d, 0x45, 0x07, 0xd8, 0x07, 0x0f, 0x10, 0x08, 0x15, 0x61, 0xd8, ++ 0x35, 0x37, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x43, 0x6f, ++ 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, ++ 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x47, 0x49, 0x4d, 0x50, 0x57, ++ 0x81, 0x0e, 0x17, 0x00, 0x00, 0x00, 0x0c, 0x49, 0x44, 0x41, 0x54, 0x08, ++ 0xd7, 0x63, 0xf8, 0xff, 0xff, 0x3f, 0x00, 0x05, 0xfe, 0x02, 0xfe, 0xdc, ++ 0xcc, 0x59, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, ++ 0x42, 0x60, 0x82 ++ }; ++ int ++ main (int argc, char **argv) ++ { ++ char *content_type; ++ char *image_png; ++ content_type = g_content_type_guess (NULL, data, data_size, NULL); ++ image_png = g_content_type_from_mime_type ("image/png"); ++ return !!strcmp (content_type, image_png); ++ } ++_ACEOF ++if ac_fn_c_try_run "$LINENO"; then : ++ gio_can_sniff=yes + +- ac_cv_lib_nsl_gethostbyname=no ++$as_echo "#define GDK_PIXBUF_USE_GIO_MIME 1" >>confdefs.h ++ ++else ++ gio_can_sniff=no ++fi ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gio_can_sniff" >&5 ++$as_echo "$gio_can_sniff" >&6; } ++ LIBS="$gtk_save_LIBS" ++ CFLAGS="$gtk_save_CFLAGS" + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 +-$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } +-if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" ++ ++# ++# Allow building some or all immodules included ++# ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking immodules to build" >&5 ++$as_echo_n "checking immodules to build... " >&6; } ++ ++ ++# Check whether --with-included_immodules was given. ++if test "${with_included_immodules+set}" = set; then : ++ withval=$with_included_immodules; + fi + +- if test $ac_cv_lib_nsl_gethostbyname = no; then +- { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 +-$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } +-if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lbsd $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_bsd_gethostbyname=yes ++if $dynworks; then ++ : + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_bsd_gethostbyname=no ++ ## if the option was specified, leave it; otherwise disable included immodules ++ if test x$with_included_immodules = xno; then ++ with_included_immodules=yes ++ fi + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++all_immodules="am-et,cedilla,cyrillic-translit" ++if test "$gdktarget" = "win32"; then ++ all_immodules="${all_immodules},ime" + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 +-$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } +-if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" ++all_immodules="${all_immodules},inuktitut,ipa,multipress,thai,ti-er,ti-et,viqr" ++if test "$gdktarget" = "x11"; then ++ all_immodules="${all_immodules},xim" + fi + +- fi +- fi ++included_immodules="" ++# If the switch specified without listing any specific ones, include all ++if test "x$with_included_immodules" = xyes ; then ++ included_immodules="$all_immodules" ++else ++ included_immodules="$with_included_immodules" ++fi + +- # lieder@skyler.mavd.honeywell.com says without -lsocket, +- # socket/setsockopt and other routines are undefined under SCO ODT +- # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary +- # on later versions), says Simon Leinen: it contains gethostby* +- # variants that don't use the name server (or something). -lsocket +- # must be given before -lnsl if both are needed. We assume that +- # if connect needs -lnsl, so does gethostbyname. +- { $as_echo "$as_me:$LINENO: checking for connect" >&5 +-$as_echo_n "checking for connect... " >&6; } +-if test "${ac_cv_func_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $included_immodules" >&5 ++$as_echo "$included_immodules" >&6; } ++ if test "x$included_immodules" != x; then ++ HAVE_INCLUDED_IMMMODULES_TRUE= ++ HAVE_INCLUDED_IMMMODULES_FALSE='#' + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define connect to an innocuous variant, in case <limits.h> declares connect. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define connect innocuous_connect ++ HAVE_INCLUDED_IMMMODULES_TRUE='#' ++ HAVE_INCLUDED_IMMMODULES_FALSE= ++fi + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char connect (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif ++INCLUDED_IMMODULE_OBJ= ++INCLUDED_IMMODULE_DEFINE= + +-#undef connect ++IFS="${IFS= }"; gtk_save_ifs="$IFS"; IFS="," ++for immodule in $included_immodules; do ++ immodule_underscores=`echo $immodule | sed -e 's/-/_/g'` ++ if echo "$all_immodules" | egrep "(^|,)$immodule(\$|,)" > /dev/null; then ++ : ++ else ++ as_fn_error "the specified input method $immodule does not exist" "$LINENO" 5 ++ fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char connect (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_connect || defined __stub___connect +-choke me +-#endif ++ INCLUDED_IMMODULE_OBJ="$INCLUDED_IMMODULE_OBJ ../modules/input/libstatic-im-$immodule.la" ++ INCLUDED_IMMODULE_DEFINE="$INCLUDED_IMMODULE_DEFINE -DINCLUDE_IM_$immodule_underscores" ++ eval INCLUDE_$immodule_underscores=yes ++done ++IFS="$gtk_save_ifs" + +-int +-main () +-{ +-return connect (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_connect=yes ++ ++ ++ if test x"$INCLUDE_am_et" = xyes; then ++ INCLUDE_IM_AM_ET_TRUE= ++ INCLUDE_IM_AM_ET_FALSE='#' + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ INCLUDE_IM_AM_ET_TRUE='#' ++ INCLUDE_IM_AM_ET_FALSE= ++fi + +- ac_cv_func_connect=no ++ if test x"$INCLUDE_cedilla" = xyes; then ++ INCLUDE_IM_CEDILLA_TRUE= ++ INCLUDE_IM_CEDILLA_FALSE='#' ++else ++ INCLUDE_IM_CEDILLA_TRUE='#' ++ INCLUDE_IM_CEDILLA_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ if test x"$INCLUDE_cyrillic_translit" = xyes; then ++ INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE= ++ INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE='#' ++else ++ INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE='#' ++ INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 +-$as_echo "$ac_cv_func_connect" >&6; } + +- if test $ac_cv_func_connect = no; then +- { $as_echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-$as_echo_n "checking for connect in -lsocket... " >&6; } +-if test "${ac_cv_lib_socket_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ if test x"$INCLUDE_ime" = xyes; then ++ INCLUDE_IM_IME_TRUE= ++ INCLUDE_IM_IME_FALSE='#' + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lsocket $X_EXTRA_LIBS $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ INCLUDE_IM_IME_TRUE='#' ++ INCLUDE_IM_IME_FALSE= ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char connect (); +-int +-main () +-{ +-return connect (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_socket_connect=yes ++ if test x"$INCLUDE_inuktitut" = xyes; then ++ INCLUDE_IM_INUKTITUT_TRUE= ++ INCLUDE_IM_INUKTITUT_FALSE='#' + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ INCLUDE_IM_INUKTITUT_TRUE='#' ++ INCLUDE_IM_INUKTITUT_FALSE= ++fi ++ ++ if test x"$INCLUDE_ipa" = xyes; then ++ INCLUDE_IM_IPA_TRUE= ++ INCLUDE_IM_IPA_FALSE='#' ++else ++ INCLUDE_IM_IPA_TRUE='#' ++ INCLUDE_IM_IPA_FALSE= ++fi ++ ++ if test x"$INCLUDE_multipress" = xyes; then ++ INCLUDE_IM_MULTIPRESS_TRUE= ++ INCLUDE_IM_MULTIPRESS_FALSE='#' ++else ++ INCLUDE_IM_MULTIPRESS_TRUE='#' ++ INCLUDE_IM_MULTIPRESS_FALSE= ++fi ++ ++ if test x"$INCLUDE_thai" = xyes; then ++ INCLUDE_IM_THAI_TRUE= ++ INCLUDE_IM_THAI_FALSE='#' ++else ++ INCLUDE_IM_THAI_TRUE='#' ++ INCLUDE_IM_THAI_FALSE= ++fi ++ ++ if test x"$INCLUDE_ti_er" = xyes; then ++ INCLUDE_IM_TI_ER_TRUE= ++ INCLUDE_IM_TI_ER_FALSE='#' ++else ++ INCLUDE_IM_TI_ER_TRUE='#' ++ INCLUDE_IM_TI_ER_FALSE= ++fi + +- ac_cv_lib_socket_connect=no ++ if test x"$INCLUDE_ti_et" = xyes; then ++ INCLUDE_IM_TI_ET_TRUE= ++ INCLUDE_IM_TI_ET_FALSE='#' ++else ++ INCLUDE_IM_TI_ET_TRUE='#' ++ INCLUDE_IM_TI_ET_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ if test x"$INCLUDE_viqr" = xyes; then ++ INCLUDE_IM_VIQR_TRUE= ++ INCLUDE_IM_VIQR_FALSE='#' ++else ++ INCLUDE_IM_VIQR_TRUE='#' ++ INCLUDE_IM_VIQR_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 +-$as_echo "$ac_cv_lib_socket_connect" >&6; } +-if test "x$ac_cv_lib_socket_connect" = x""yes; then +- X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" ++ ++ if test x"$INCLUDE_xim" = xyes; then ++ INCLUDE_IM_XIM_TRUE= ++ INCLUDE_IM_XIM_FALSE='#' ++else ++ INCLUDE_IM_XIM_TRUE='#' ++ INCLUDE_IM_XIM_FALSE= + fi + +- fi + +- # Guillermo Gomez says -lposix is necessary on A/UX. +- { $as_echo "$as_me:$LINENO: checking for remove" >&5 +-$as_echo_n "checking for remove... " >&6; } +-if test "${ac_cv_func_remove+set}" = set; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 ++$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } ++if test "${ac_cv_header_sys_wait_h+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define remove to an innocuous variant, in case <limits.h> declares remove. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define remove innocuous_remove +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char remove (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef remove +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" ++#include <sys/types.h> ++#include <sys/wait.h> ++#ifndef WEXITSTATUS ++# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) + #endif +-char remove (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_remove || defined __stub___remove +-choke me ++#ifndef WIFEXITED ++# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) + #endif + + int + main () + { +-return remove (); ++ int s; ++ wait (&s); ++ s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_remove=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_header_sys_wait_h=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_remove=no ++ ac_cv_header_sys_wait_h=no + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 ++$as_echo "$ac_cv_header_sys_wait_h" >&6; } ++if test $ac_cv_header_sys_wait_h = yes; then ++ ++$as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 +-$as_echo "$ac_cv_func_remove" >&6; } + +- if test $ac_cv_func_remove = no; then +- { $as_echo "$as_me:$LINENO: checking for remove in -lposix" >&5 +-$as_echo_n "checking for remove in -lposix... " >&6; } +-if test "${ac_cv_lib_posix_remove+set}" = set; then ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 ++$as_echo_n "checking return type of signal handlers... " >&6; } ++if test "${ac_cv_type_signal+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lposix $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++#include <sys/types.h> ++#include <signal.h> + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char remove (); + int + main () + { +-return remove (); ++return *(signal (0, 0)) (0) == 1; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_posix_remove=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_type_signal=int + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_type_signal=void ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 ++$as_echo "$ac_cv_type_signal" >&6; } ++ ++cat >>confdefs.h <<_ACEOF ++#define RETSIGTYPE $ac_cv_type_signal ++_ACEOF ++ ++ + +- ac_cv_lib_posix_remove=no ++ if test "x$LIBTIFF" != x; then ++ HAVE_TIFF_TRUE= ++ HAVE_TIFF_FALSE='#' ++else ++ HAVE_TIFF_TRUE='#' ++ HAVE_TIFF_FALSE= + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ if test "x$LIBPNG" != x; then ++ HAVE_PNG_TRUE= ++ HAVE_PNG_FALSE='#' ++else ++ HAVE_PNG_TRUE='#' ++ HAVE_PNG_FALSE= + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 +-$as_echo "$ac_cv_lib_posix_remove" >&6; } +-if test "x$ac_cv_lib_posix_remove" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" ++ ++ if test "x$LIBJPEG" != x; then ++ HAVE_JPEG_TRUE= ++ HAVE_JPEG_FALSE='#' ++else ++ HAVE_JPEG_TRUE='#' ++ HAVE_JPEG_FALSE= + fi + +- fi ++ if test "x$LIBJASPER" != x; then ++ HAVE_JASPER_TRUE= ++ HAVE_JASPER_FALSE='#' ++else ++ HAVE_JASPER_TRUE='#' ++ HAVE_JASPER_FALSE= ++fi + +- # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. +- { $as_echo "$as_me:$LINENO: checking for shmat" >&5 +-$as_echo_n "checking for shmat... " >&6; } +-if test "${ac_cv_func_shmat+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ++if $dynworks ; then ++ STATIC_LIB_DEPS= ++ if echo "$included_loaders" | egrep '(^|,)tiff($|,)' > /dev/null; then ++ STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBTIFF" ++ fi ++ if echo "$included_loaders" | egrep '(^|,)jpeg($|,)' > /dev/null; then ++ STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBJPEG" ++ fi ++ if echo "$included_loaders" | egrep '(^|,)png($|,)' > /dev/null; then ++ STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBPNG" ++ fi ++ if echo "$included_loaders" | egrep '(^|,)jasper($|,)' > /dev/null; then ++ STATIC_LIB_DEPS="$STATIC_LIB_DEPS $LIBJASPER" ++ fi + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define shmat to an innocuous variant, in case <limits.h> declares shmat. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define shmat innocuous_shmat ++ STATIC_LIB_DEPS="$LIBTIFF $LIBJPEG $LIBPNG $LIBJASPER" ++fi + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char shmat (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ ++# Checks to see whether we should include mediaLib ++# support. ++# ++ac_fn_c_check_header_mongrel "$LINENO" "sys/systeminfo.h" "ac_cv_header_sys_systeminfo_h" "$ac_includes_default" ++if test "x$ac_cv_header_sys_systeminfo_h" = x""yes; then : + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif ++$as_echo "#define HAVE_SYS_SYSTEMINFO_H 1" >>confdefs.h + +-#undef shmat ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shmat (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_shmat || defined __stub___shmat +-choke me +-#endif + +-int +-main () +-{ +-return shmat (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_shmat=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ac_fn_c_check_header_mongrel "$LINENO" "sys/sysinfo.h" "ac_cv_header_sys_sysinfo_h" "$ac_includes_default" ++if test "x$ac_cv_header_sys_sysinfo_h" = x""yes; then : + +- ac_cv_func_shmat=no +-fi ++$as_echo "#define HAVE_SYS_SYSINFO_H 1" >>confdefs.h + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 +-$as_echo "$ac_cv_func_shmat" >&6; } + +- if test $ac_cv_func_shmat = no; then +- { $as_echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 +-$as_echo_n "checking for shmat in -lipc... " >&6; } +-if test "${ac_cv_lib_ipc_shmat+set}" = set; then ++ ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mediaLib 2.3" >&5 ++$as_echo_n "checking for mediaLib 2.3... " >&6; } ++use_mlib25=no ++# Check for a mediaLib 2.3 function since that is what the GTK+ mediaLib ++# patch requires. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mlib_ImageSetStruct in -lmlib" >&5 ++$as_echo_n "checking for mlib_ImageSetStruct in -lmlib... " >&6; } ++if test "${ac_cv_lib_mlib_mlib_ImageSetStruct+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lipc $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lmlib $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28719,79 +22366,50 @@ + #ifdef __cplusplus + extern "C" + #endif +-char shmat (); ++char mlib_ImageSetStruct (); + int + main () + { +-return shmat (); ++return mlib_ImageSetStruct (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_ipc_shmat=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_mlib_mlib_ImageSetStruct=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ipc_shmat=no ++ ac_cv_lib_mlib_mlib_ImageSetStruct=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 +-$as_echo "$ac_cv_lib_ipc_shmat" >&6; } +-if test "x$ac_cv_lib_ipc_shmat" = x""yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mlib_mlib_ImageSetStruct" >&5 ++$as_echo "$ac_cv_lib_mlib_mlib_ImageSetStruct" >&6; } ++if test "x$ac_cv_lib_mlib_mlib_ImageSetStruct" = x""yes; then : ++ use_mlib=yes ++else ++ use_mlib=no + fi + +- fi +- fi ++if test $use_mlib = yes; then ++ ++$as_echo "#define USE_MEDIALIB 1" >>confdefs.h ++ ++ MEDIA_LIB=-lmlib + +- # Check for libraries that X11R6 Xt/Xaw programs need. +- ac_save_LDFLAGS=$LDFLAGS +- test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" +- # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to +- # check for ICE first), but we must link in the order -lSM -lICE or +- # we get undefined symbols. So assume we have SM if we have ICE. +- # These have to be linked with before -lX11, unlike the other +- # libraries we check for below, so use a different variable. +- # John Interrante, Karl Berry +- { $as_echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 +-$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } +-if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mediaLib 2.5" >&5 ++$as_echo_n "checking for mediaLib 2.5... " >&6; } ++ # Check for a mediaLib 2.5 function since that is what is needed for ++ # gdk_rgb_convert integration. ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mlib_VideoColorRGBint_to_BGRAint in -lmlib" >&5 ++$as_echo_n "checking for mlib_VideoColorRGBint_to_BGRAint in -lmlib... " >&6; } ++if test "${ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lICE $X_EXTRA_LIBS $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lmlib $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28800,499 +22418,554 @@ + #ifdef __cplusplus + extern "C" + #endif +-char IceConnectionNumber (); ++char mlib_VideoColorRGBint_to_BGRAint (); + int + main () + { +-return IceConnectionNumber (); ++return mlib_VideoColorRGBint_to_BGRAint (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_ICE_IceConnectionNumber=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ICE_IceConnectionNumber=no ++ ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +-$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } +-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then +- X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" >&5 ++$as_echo "$ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" >&6; } ++if test "x$ac_cv_lib_mlib_mlib_VideoColorRGBint_to_BGRAint" = x""yes; then : ++ use_mlib25=yes ++else ++ use_mlib25=no + fi + +- LDFLAGS=$ac_save_LDFLAGS ++ if test $use_mlib25 = yes; then ++ ++$as_echo "#define USE_MEDIALIB25 1" >>confdefs.h ++ ++ fi ++fi ++ if test $use_mlib = yes; then ++ USE_MEDIALIB_TRUE= ++ USE_MEDIALIB_FALSE='#' ++else ++ USE_MEDIALIB_TRUE='#' ++ USE_MEDIALIB_FALSE= ++fi + ++ if test $use_mlib25 = yes; then ++ USE_MEDIALIB25_TRUE= ++ USE_MEDIALIB25_FALSE='#' ++else ++ USE_MEDIALIB25_TRUE='#' ++ USE_MEDIALIB25_FALSE= + fi + +- if test x$no_x = xyes ; then +- { { $as_echo "$as_me:$LINENO: error: X development libraries not found" >&5 +-$as_echo "$as_me: error: X development libraries not found" >&2;} +- { (exit 1); exit 1; }; } ++ ++# Checks to see if we should compile in MMX support (there will be ++# a runtime test when the code is actually run to see if it should ++# be used - this just checks if we can compile it.) ++# ++# This code is partially taken from Mesa ++# ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for x86 platform" >&5 ++$as_echo_n "checking for x86 platform... " >&6; } ++case $host_cpu in ++ i386|i486|i586|i686|i786|k6|k7) ++ use_x86_asm=yes ++ ;; ++ *) ++ use_x86_asm=no ++esac ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_x86_asm" >&5 ++$as_echo "$use_x86_asm" >&6; } ++ ++use_mmx_asm=no ++if test $use_x86_asm = yes; then ++ save_ac_ext=$ac_ext ++ ac_ext=S ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler support for MMX" >&5 ++$as_echo_n "checking compiler support for MMX... " >&6; } ++ cp $srcdir/gdk-pixbuf/pixops/scale_line_22_33_mmx.S conftest.S ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 ++ (eval $ac_compile) 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ use_mmx_asm=yes + fi + +- x_cflags="$X_CFLAGS" +- x_libs_for_checks="$X_LIBS -lXext -lXrender -lX11 $X_EXTRA_LIBS" ++ rm -rf conftest* + +- GDK_PIXBUF_XLIB_EXTRA_CFLAGS="$x_cflags" +- GDK_PIXBUF_XLIB_EXTRA_LIBS="$X_LIBS -lX11 $X_EXTRA_LIBS" +- GTK_DEP_LIBS_FOR_X="$X_LIBS -lXrender -lX11 $X_EXTRA_LIBS" +- fi ++ ac_ext=$save_ac_ext ++ if test $use_mmx_asm = yes; then + +- # Extra libraries found during checks (-lXinerama, etc), not from pkg-config. +- x_extra_libs= ++$as_echo "#define USE_MMX 1" >>confdefs.h + +- gtk_save_cppflags="$CPPFLAGS" +- CPPFLAGS="$CPPFLAGS $X_CFLAGS" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ fi ++fi + +- gtk_save_LIBS=$LIBS +- LIBS="$x_libs_for_checks $LIBS" ++ if test x$use_mmx_asm = xyes; then ++ USE_MMX_TRUE= ++ USE_MMX_FALSE='#' ++else ++ USE_MMX_TRUE='#' ++ USE_MMX_FALSE= ++fi + +- # Sanity check for the X11 and Xext libraries. While everything we need from +- # Xext is optional, the chances a system has *none* of these things is so +- # small that we just unconditionally require it. +- { $as_echo "$as_me:$LINENO: checking for XOpenDisplay" >&5 +-$as_echo_n "checking for XOpenDisplay... " >&6; } +-if test "${ac_cv_func_XOpenDisplay+set}" = set; then ++ ++REBUILD_PNGS= ++if test -z "$LIBPNG" && test x"$os_win32" = xno -o x$enable_gdiplus = xno; then ++ REBUILD_PNGS=# ++fi ++ ++ ++ if test $cross_compiling = yes; then ++ CROSS_COMPILING_TRUE= ++ CROSS_COMPILING_FALSE='#' ++else ++ CROSS_COMPILING_TRUE='#' ++ CROSS_COMPILING_FALSE= ++fi ++ ++ ++if test $cross_compiling = yes; then ++ # Extract the first word of "gdk-pixbuf-csource", so it can be a program name with args. ++set dummy gdk-pixbuf-csource; 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_GDK_PIXBUF_CSOURCE+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define XOpenDisplay to an innocuous variant, in case <limits.h> declares XOpenDisplay. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XOpenDisplay innocuous_XOpenDisplay ++ case $GDK_PIXBUF_CSOURCE in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_GDK_PIXBUF_CSOURCE="$GDK_PIXBUF_CSOURCE" # 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_GDK_PIXBUF_CSOURCE="$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 + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XOpenDisplay (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ ++ test -z "$ac_cv_path_GDK_PIXBUF_CSOURCE" && ac_cv_path_GDK_PIXBUF_CSOURCE="no" ++ ;; ++esac ++fi ++GDK_PIXBUF_CSOURCE=$ac_cv_path_GDK_PIXBUF_CSOURCE ++if test -n "$GDK_PIXBUF_CSOURCE"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GDK_PIXBUF_CSOURCE" >&5 ++$as_echo "$GDK_PIXBUF_CSOURCE" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif + +-#undef XOpenDisplay ++ # Extract the first word of "gtk-update-icon-cache", so it can be a program name with args. ++set dummy gtk-update-icon-cache; 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_GTK_UPDATE_ICON_CACHE+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ case $GTK_UPDATE_ICON_CACHE in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_GTK_UPDATE_ICON_CACHE="$GTK_UPDATE_ICON_CACHE" # 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_GTK_UPDATE_ICON_CACHE="$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_GTK_UPDATE_ICON_CACHE" && ac_cv_path_GTK_UPDATE_ICON_CACHE="no" ++ ;; ++esac ++fi ++GTK_UPDATE_ICON_CACHE=$ac_cv_path_GTK_UPDATE_ICON_CACHE ++if test -n "$GTK_UPDATE_ICON_CACHE"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTK_UPDATE_ICON_CACHE" >&5 ++$as_echo "$GTK_UPDATE_ICON_CACHE" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++ if test x$GTK_UPDATE_ICON_CACHE = xno; then ++ REBUILD_PNGS=# ++ fi ++fi ++ ++if test ! -f $srcdir/gtk/gtkbuiltincache.h && ++ test "x$REBUILD_PNGS" = "x#" ; then ++ as_fn_error " ++*** gtkbuiltincache.h is not in the tree, and cannot be built ++*** because you don't have libpng, or (when cross-compiling) you ++*** don't have a prebuilt gtk-update-icon-cache on the build system." "$LINENO" 5 ++fi ++ ++ ++ ++GDK_PIXBUF_PACKAGES="gmodule-no-export-2.0 gobject-2.0 gio-2.0" ++GDK_PIXBUF_EXTRA_LIBS="$STATIC_LIB_DEPS $MATH_LIB $MEDIA_LIB" ++GDK_PIXBUF_EXTRA_CFLAGS= ++GDK_PIXBUF_DEP_LIBS="`$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" ++GDK_PIXBUF_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $PNG_DEP_CFLAGS_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS" ++ ++######################################## ++# Windowing system checks ++######################################## ++ ++GDK_PIXBUF_XLIB_PACKAGES= ++GDK_PIXBUF_XLIB_EXTRA_CFLAGS= ++GDK_PIXBUF_XLIB_EXTRA_LIBS= ++ ++GDK_EXTRA_LIBS="$GDK_WLIBS" ++GDK_EXTRA_CFLAGS= ++ ++# GTK+ uses some X calls, so needs to link against X directly ++GTK_DEP_PACKAGES_FOR_X= ++GTK_DEP_LIBS_FOR_X= ++ ++if test "x$gdktarget" = "xx11"; then ++ X_PACKAGES=fontconfig ++ ++ # ++ # We use fontconfig very peripherally when decoding the default ++ # settings. ++ # ++ if $PKG_CONFIG --exists fontconfig; then : ; else ++ as_fn_error " ++*** fontconfig (http://www.fontconfig.org) is required by the X11 backend." "$LINENO" 5 ++ fi ++ ++ # ++ # Check for basic X packages; we use pkg-config if available ++ # ++ if $PKG_CONFIG --exists x11 xext xrender; then ++ have_base_x_pc=true ++ X_PACKAGES="$X_PACKAGES x11 xext xrender" ++ x_libs="`$PKG_CONFIG --libs x11 xext xrender`" ++ X_CFLAGS="`$PKG_CONFIG --cflags x11 xext xrender`" + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char XOpenDisplay (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XOpenDisplay || defined __stub___XOpenDisplay +-choke me +-#endif ++ # Strip out any .la files that pkg-config might give us (this happens ++ # with -uninstalled.pc files) ++ x_libs_for_checks= ++ for I in $x_libs ; do ++ case $I in ++ *.la) ;; ++ *) x_libs_for_checks="$x_libs_for_checks $I" ;; ++ esac ++ done + +-int +-main () +-{ +-return XOpenDisplay (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XOpenDisplay=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ GDK_PIXBUF_XLIB_PACKAGES="x11" ++ GTK_PACKAGES_FOR_X="x11" ++ else ++ have_base_x_pc=false ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 ++$as_echo_n "checking for X... " >&6; } + +- ac_cv_func_XOpenDisplay=no +-fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XOpenDisplay" >&5 +-$as_echo "$ac_cv_func_XOpenDisplay" >&6; } +-if test "x$ac_cv_func_XOpenDisplay" = x""yes; then +- : +-else +- { { $as_echo "$as_me:$LINENO: error: *** libX11 not found. Check 'config.log' for more details." >&5 +-$as_echo "$as_me: error: *** libX11 not found. Check 'config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++# Check whether --with-x was given. ++if test "${with_x+set}" = set; then : ++ withval=$with_x; + fi + +- { $as_echo "$as_me:$LINENO: checking for XextFindDisplay" >&5 +-$as_echo_n "checking for XextFindDisplay... " >&6; } +-if test "${ac_cv_func_XextFindDisplay+set}" = set; then ++# $have_x is `yes', `no', `disabled', or empty when we do not yet know. ++if test "x$with_x" = xno; then ++ # The user explicitly disabled X. ++ have_x=disabled ++else ++ case $x_includes,$x_libraries in #( ++ *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #( ++ *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ # One or both of the vars are not set, and there is no cached value. ++ac_x_includes=no ac_x_libraries=no ++rm -f -r conftest.dir ++if mkdir conftest.dir; then ++ cd conftest.dir ++ cat >Imakefile <<'_ACEOF' ++incroot: ++ @echo incroot='${INCROOT}' ++usrlibdir: ++ @echo usrlibdir='${USRLIBDIR}' ++libdir: ++ @echo libdir='${LIBDIR}' + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define XextFindDisplay to an innocuous variant, in case <limits.h> declares XextFindDisplay. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XextFindDisplay innocuous_XextFindDisplay ++ if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then ++ # GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++ for ac_var in incroot usrlibdir libdir; do ++ eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" ++ done ++ # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. ++ for ac_extension in a so sl dylib la dll; do ++ if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && ++ test -f "$ac_im_libdir/libX11.$ac_extension"; then ++ ac_im_usrlibdir=$ac_im_libdir; break ++ fi ++ done ++ # Screen out bogus values from the imake configuration. They are ++ # bogus both because they are the default anyway, and because ++ # using them would break gcc on systems where it needs fixed includes. ++ case $ac_im_incroot in ++ /usr/include) ac_x_includes= ;; ++ *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; ++ esac ++ case $ac_im_usrlibdir in ++ /usr/lib | /usr/lib64 | /lib | /lib64) ;; ++ *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; ++ esac ++ fi ++ cd .. ++ rm -f -r conftest.dir ++fi + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XextFindDisplay (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ ++# Standard set of common directories for X headers. ++# Check X11 before X11Rn because it is often a symlink to the current release. ++ac_x_header_dirs=' ++/usr/X11/include ++/usr/X11R7/include ++/usr/X11R6/include ++/usr/X11R5/include ++/usr/X11R4/include + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif ++/usr/include/X11 ++/usr/include/X11R7 ++/usr/include/X11R6 ++/usr/include/X11R5 ++/usr/include/X11R4 + +-#undef XextFindDisplay ++/usr/local/X11/include ++/usr/local/X11R7/include ++/usr/local/X11R6/include ++/usr/local/X11R5/include ++/usr/local/X11R4/include + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char XextFindDisplay (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XextFindDisplay || defined __stub___XextFindDisplay +-choke me +-#endif ++/usr/local/include/X11 ++/usr/local/include/X11R7 ++/usr/local/include/X11R6 ++/usr/local/include/X11R5 ++/usr/local/include/X11R4 + +-int +-main () +-{ +-return XextFindDisplay (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XextFindDisplay=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++/usr/X386/include ++/usr/x386/include ++/usr/XFree86/include/X11 + +- ac_cv_func_XextFindDisplay=no +-fi ++/usr/include ++/usr/local/include ++/usr/unsupported/include ++/usr/athena/include ++/usr/local/x11r5/include ++/usr/lpp/Xamples/include + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XextFindDisplay" >&5 +-$as_echo "$ac_cv_func_XextFindDisplay" >&6; } +-if test "x$ac_cv_func_XextFindDisplay" = x""yes; then +- : ++/usr/openwin/include ++/usr/openwin/share/include' ++ ++if test "$ac_x_includes" = no; then ++ # Guess where to find include files, by looking for Xlib.h. ++ # First, try using that file with no special directory specified. ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <X11/Xlib.h> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ # We can compile using X headers with no special include directory. ++ac_x_includes= + else +- { { $as_echo "$as_me:$LINENO: error: *** libXext not found. Check 'config.log' for more details." >&5 +-$as_echo "$as_me: error: *** libXext not found. Check 'config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ for ac_dir in $ac_x_header_dirs; do ++ if test -r "$ac_dir/X11/Xlib.h"; then ++ ac_x_includes=$ac_dir ++ break ++ fi ++done + fi ++rm -f conftest.err conftest.$ac_ext ++fi # $ac_x_includes = no + +- { $as_echo "$as_me:$LINENO: checking for XRenderQueryExtension" >&5 +-$as_echo_n "checking for XRenderQueryExtension... " >&6; } +-if test "${ac_cv_func_XRenderQueryExtension+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test "$ac_x_libraries" = no; then ++ # Check for the libraries. ++ # See if we find them without any special options. ++ # Don't add to $LIBS permanently. ++ ac_save_LIBS=$LIBS ++ LIBS="-lX11 $LIBS" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define XRenderQueryExtension to an innocuous variant, in case <limits.h> declares XRenderQueryExtension. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XRenderQueryExtension innocuous_XRenderQueryExtension +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XRenderQueryExtension (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XRenderQueryExtension +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char XRenderQueryExtension (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XRenderQueryExtension || defined __stub___XRenderQueryExtension +-choke me +-#endif +- ++#include <X11/Xlib.h> + int + main () + { +-return XRenderQueryExtension (); ++XrmInitialize () + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XRenderQueryExtension=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ LIBS=$ac_save_LIBS ++# We can link X programs with no special library path. ++ac_x_libraries= + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XRenderQueryExtension=no ++ LIBS=$ac_save_LIBS ++for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` ++do ++ # Don't even attempt the hair of trying to link an X program! ++ for ac_extension in a so sl dylib la dll; do ++ if test -r "$ac_dir/libX11.$ac_extension"; then ++ ac_x_libraries=$ac_dir ++ break 2 ++ fi ++ done ++done + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi # $ac_x_libraries = no + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++case $ac_x_includes,$ac_x_libraries in #( ++ no,* | *,no | *\'*) ++ # Didn't find X, or a directory has "'" in its name. ++ ac_cv_have_x="have_x=no";; #( ++ *) ++ # Record where we found X for the cache. ++ ac_cv_have_x="have_x=yes\ ++ ac_x_includes='$ac_x_includes'\ ++ ac_x_libraries='$ac_x_libraries'" ++esac + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XRenderQueryExtension" >&5 +-$as_echo "$ac_cv_func_XRenderQueryExtension" >&6; } +-if test "x$ac_cv_func_XRenderQueryExtension" = x""yes; then +- : ++;; #( ++ *) have_x=yes;; ++ esac ++ eval "$ac_cv_have_x" ++fi # $with_x != no ++ ++if test "$have_x" != yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 ++$as_echo "$have_x" >&6; } ++ no_x=yes + else +- { { $as_echo "$as_me:$LINENO: error: *** libXrender not found. Check 'config.log' for more details." >&5 +-$as_echo "$as_me: error: *** libXrender not found. Check 'config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ # If each of the values was on the command line, it overrides each guess. ++ test "x$x_includes" = xNONE && x_includes=$ac_x_includes ++ test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries ++ # Update the cache value to reflect the command line values. ++ ac_cv_have_x="have_x=yes\ ++ ac_x_includes='$x_includes'\ ++ ac_x_libraries='$x_libraries'" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 ++$as_echo "libraries $x_libraries, headers $x_includes" >&6; } + fi + ++if test "$no_x" = yes; then ++ # Not all programs may use this symbol, but it does not hurt to define it. + +- # Check for xReply ++$as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h + +- { $as_echo "$as_me:$LINENO: checking if <X11/extensions/XIproto.h> is needed for xReply" >&5 +-$as_echo_n "checking if <X11/extensions/XIproto.h> is needed for xReply... " >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= ++else ++ if test -n "$x_includes"; then ++ X_CFLAGS="$X_CFLAGS -I$x_includes" ++ fi ++ ++ # It would also be nice to do this for all -L options, not just this one. ++ if test -n "$x_libraries"; then ++ X_LIBS="$X_LIBS -L$x_libraries" ++ # For Solaris; some versions of Sun CC require a space after -R and ++ # others require no space. Words are not sufficient . . . . ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 ++$as_echo_n "checking whether -R must be followed by a space... " >&6; } ++ ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ++ ac_xsave_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <X11/Xlibint.h> ++ + int + main () + { +-xReply *rep; ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++if ac_fn_c_try_link "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } ++ X_LIBS="$X_LIBS -R$x_libraries" + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ LIBS="$ac_xsave_LIBS -R $x_libraries" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <X11/extensions/XIproto.h> +-#include <X11/Xlibint.h> ++ + int + main () + { +-xReply *rep; ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++if ac_fn_c_try_link "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define NEED_XIPROTO_H_FOR_XREPLY 1 +-_ACEOF +- ++ X_LIBS="$X_LIBS -R $x_libraries" + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { $as_echo "$as_me:$LINENO: result: unknown" >&5 +-$as_echo "unknown" >&6; } +- { { $as_echo "$as_me:$LINENO: error: xReply type unavailable. X11 is too old" >&5 +-$as_echo "$as_me: error: xReply type unavailable. X11 is too old" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 ++$as_echo "neither works" >&6; } + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ ac_c_werror_flag=$ac_xsave_c_werror_flag ++ LIBS=$ac_xsave_LIBS ++ fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +- # Check for XConvertCase, XInternAtoms (X11R6 specific) +- +- ++ # Check for system-dependent libraries X programs must link with. ++ # Do this before checking for the system-independent R6 libraries ++ # (-lICE), since we may need -lsocket or whatever for X linking. + +-for ac_func in XConvertCase XInternAtoms +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ if test "$ISC" = yes; then ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" ++ else ++ # Martyn Johnson says this is needed for Ultrix, if the X ++ # libraries were built with DECnet support. And Karl Berry says ++ # the Alpha needs dnet_stub (dnet does not exist). ++ ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29300,103 +22973,27 @@ + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char XOpenDisplay (); + int + main () + { +-return $ac_func (); ++return XOpenDisplay (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +-done +- +- +- # Generic X11R6 check needed for XIM support; we could +- # probably use this to replace the above, but we'll +- # leave the separate checks for XConvertCase and XInternAtoms +- # for clarity ++if ac_fn_c_try_link "$LINENO"; then : + +- have_x11r6=false +- { $as_echo "$as_me:$LINENO: checking for XAddConnectionWatch" >&5 +-$as_echo_n "checking for XAddConnectionWatch... " >&6; } +-if test "${ac_cv_func_XAddConnectionWatch+set}" = set; then ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } ++if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldnet $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define XAddConnectionWatch to an innocuous variant, in case <limits.h> declares XAddConnectionWatch. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XAddConnectionWatch innocuous_XAddConnectionWatch +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XAddConnectionWatch (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XAddConnectionWatch + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29404,118 +23001,40 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XAddConnectionWatch (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XAddConnectionWatch || defined __stub___XAddConnectionWatch +-choke me +-#endif +- ++char dnet_ntoa (); + int + main () + { +-return XAddConnectionWatch (); ++return dnet_ntoa (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XAddConnectionWatch=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dnet_dnet_ntoa=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XAddConnectionWatch=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ ac_cv_lib_dnet_dnet_ntoa=no + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XAddConnectionWatch" >&5 +-$as_echo "$ac_cv_func_XAddConnectionWatch" >&6; } +-if test "x$ac_cv_func_XAddConnectionWatch" = x""yes; then +- have_x11r6=true ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +- +- +- if $have_x11r6; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_X11R6 1 +-_ACEOF +- +- fi +- +- +-if $have_x11r6; then +- HAVE_X11R6_TRUE= +- HAVE_X11R6_FALSE='#' +-else +- HAVE_X11R6_TRUE='#' +- HAVE_X11R6_FALSE= ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } ++if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" + fi + +- +- # Check for XKB support. +- +- if test "x$enable_xkb" = "xyes"; then +- { $as_echo "$as_me:$LINENO: WARNING: XKB support explicitly enabled" >&5 +-$as_echo "$as_me: WARNING: XKB support explicitly enabled" >&2;} +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XKB 1 +-_ACEOF +- +- elif test "x$enable_xkb" = "xmaybe"; then +- { $as_echo "$as_me:$LINENO: checking for XkbQueryExtension" >&5 +-$as_echo_n "checking for XkbQueryExtension... " >&6; } +-if test "${ac_cv_func_XkbQueryExtension+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define XkbQueryExtension to an innocuous variant, in case <limits.h> declares XkbQueryExtension. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XkbQueryExtension innocuous_XkbQueryExtension +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XkbQueryExtension (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XkbQueryExtension ++ if test $ac_cv_lib_dnet_dnet_ntoa = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } ++if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldnet_stub $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29523,99 +23042,59 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XkbQueryExtension (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XkbQueryExtension || defined __stub___XkbQueryExtension +-choke me +-#endif +- ++char dnet_ntoa (); + int + main () + { +-return XkbQueryExtension (); ++return dnet_ntoa (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XkbQueryExtension=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dnet_stub_dnet_ntoa=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XkbQueryExtension=no ++ ac_cv_lib_dnet_stub_dnet_ntoa=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } ++if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XkbQueryExtension" >&5 +-$as_echo "$ac_cv_func_XkbQueryExtension" >&6; } +-if test "x$ac_cv_func_XkbQueryExtension" = x""yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XKB 1 +-_ACEOF + ++ fi + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ LIBS="$ac_xsave_LIBS" + +- else +- { $as_echo "$as_me:$LINENO: WARNING: XKB support explicitly disabled" >&5 +-$as_echo "$as_me: WARNING: XKB support explicitly disabled" >&2;} +- fi ++ # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, ++ # to get the SysV transport functions. ++ # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) ++ # needs -lnsl. ++ # The nsl library prevents programs from opening the X display ++ # on Irix 5.2, according to T.E. Dickey. ++ # The functions gethostbyname, getservbyname, and inet_addr are ++ # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ++ ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" ++if test "x$ac_cv_func_gethostbyname" = x""yes; then : + +- # Check for shaped window extension ++fi + +- { $as_echo "$as_me:$LINENO: checking for XShapeCombineMask" >&5 +-$as_echo_n "checking for XShapeCombineMask... " >&6; } +-if test "${ac_cv_func_XShapeCombineMask+set}" = set; then ++ if test $ac_cv_func_gethostbyname = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } ++if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnsl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define XShapeCombineMask to an innocuous variant, in case <limits.h> declares XShapeCombineMask. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XShapeCombineMask innocuous_XShapeCombineMask +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XShapeCombineMask (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XShapeCombineMask + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29623,97 +23102,40 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XShapeCombineMask (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XShapeCombineMask || defined __stub___XShapeCombineMask +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return XShapeCombineMask (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XShapeCombineMask=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_nsl_gethostbyname=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XShapeCombineMask=no ++ ac_cv_lib_nsl_gethostbyname=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XShapeCombineMask" >&5 +-$as_echo "$ac_cv_func_XShapeCombineMask" >&6; } +-if test "x$ac_cv_func_XShapeCombineMask" = x""yes; then +- : +-else +- { { $as_echo "$as_me:$LINENO: error: Shape extension not found, check your development headers" >&5 +-$as_echo "$as_me: error: Shape extension not found, check your development headers" >&2;} +- { (exit 1); exit 1; }; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ++if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" + fi + +- +- # X SYNC check +- gtk_save_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS $x_cflags" +- +- { $as_echo "$as_me:$LINENO: checking for XSyncQueryExtension" >&5 +-$as_echo_n "checking for XSyncQueryExtension... " >&6; } +-if test "${ac_cv_func_XSyncQueryExtension+set}" = set; then ++ if test $ac_cv_lib_nsl_gethostbyname = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 ++$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } ++if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lbsd $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define XSyncQueryExtension to an innocuous variant, in case <limits.h> declares XSyncQueryExtension. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XSyncQueryExtension innocuous_XSyncQueryExtension +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XSyncQueryExtension (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XSyncQueryExtension + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29721,150 +23143,153 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XSyncQueryExtension (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XSyncQueryExtension || defined __stub___XSyncQueryExtension +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return XSyncQueryExtension (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XSyncQueryExtension=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_bsd_gethostbyname=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XSyncQueryExtension=no ++ ac_cv_lib_bsd_gethostbyname=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } ++if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ fi ++ fi ++ ++ # lieder@skyler.mavd.honeywell.com says without -lsocket, ++ # socket/setsockopt and other routines are undefined under SCO ODT ++ # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary ++ # on later versions), says Simon Leinen: it contains gethostby* ++ # variants that don't use the name server (or something). -lsocket ++ # must be given before -lnsl if both are needed. We assume that ++ # if connect needs -lnsl, so does gethostbyname. ++ ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" ++if test "x$ac_cv_func_connect" = x""yes; then : ++ + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XSyncQueryExtension" >&5 +-$as_echo "$ac_cv_func_XSyncQueryExtension" >&6; } +-if test "x$ac_cv_func_XSyncQueryExtension" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for X11/extensions/sync.h" >&5 +-$as_echo_n "checking for X11/extensions/sync.h... " >&6; } +-if test "${ac_cv_header_X11_extensions_sync_h+set}" = set; then ++ ++ if test $ac_cv_func_connect = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 ++$as_echo_n "checking for connect in -lsocket... " >&6; } ++if test "${ac_cv_lib_socket_connect+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lsocket $X_EXTRA_LIBS $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <X11/Xlib.h> + +-#include <X11/extensions/sync.h> ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char connect (); ++int ++main () ++{ ++return connect (); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_X11_extensions_sync_h=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_socket_connect=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_X11_extensions_sync_h=no ++ ac_cv_lib_socket_connect=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_X11_extensions_sync_h" >&5 +-$as_echo "$ac_cv_header_X11_extensions_sync_h" >&6; } +-if test "x$ac_cv_header_X11_extensions_sync_h" = x""yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XSYNC 1 +-_ACEOF +- +-else +- : ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +- +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 ++$as_echo "$ac_cv_lib_socket_connect" >&6; } ++if test "x$ac_cv_lib_socket_connect" = x""yes; then : ++ X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" + fi + ++ fi + +- CFLAGS="$gtk_save_CFLAGS" ++ # Guillermo Gomez says -lposix is necessary on A/UX. ++ ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" ++if test "x$ac_cv_func_remove" = x""yes; then : + +- # Xshm checks ++fi + +- if test "x$enable_shm" = "xyes"; then +- # Check for the XShm extension, normally in Xext +- { $as_echo "$as_me:$LINENO: checking for XShmAttach" >&5 +-$as_echo_n "checking for XShmAttach... " >&6; } +-if test "${ac_cv_func_XShmAttach+set}" = set; then ++ if test $ac_cv_func_remove = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 ++$as_echo_n "checking for remove in -lposix... " >&6; } ++if test "${ac_cv_lib_posix_remove+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lposix $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define XShmAttach to an innocuous variant, in case <limits.h> declares XShmAttach. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XShmAttach innocuous_XShmAttach +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XShmAttach (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" + #endif ++char remove (); ++int ++main () ++{ ++return remove (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_posix_remove=yes ++else ++ ac_cv_lib_posix_remove=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 ++$as_echo "$ac_cv_lib_posix_remove" >&6; } ++if test "x$ac_cv_lib_posix_remove" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" ++fi + +-#undef XShmAttach ++ fi ++ ++ # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ++ ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" ++if test "x$ac_cv_func_shmat" = x""yes; then : ++ ++fi ++ ++ if test $ac_cv_func_shmat = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 ++$as_echo_n "checking for shmat in -lipc... " >&6; } ++if test "${ac_cv_lib_ipc_shmat+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lipc $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -29872,73 +23297,50 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XShmAttach (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XShmAttach || defined __stub___XShmAttach +-choke me +-#endif +- ++char shmat (); + int + main () + { +-return XShmAttach (); ++return shmat (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XShmAttach=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_ipc_shmat=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XShmAttach=no ++ ac_cv_lib_ipc_shmat=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XShmAttach" >&5 +-$as_echo "$ac_cv_func_XShmAttach" >&6; } +-if test "x$ac_cv_func_XShmAttach" = x""yes; then +- : +-else +- # On AIX, it is in XextSam instead +- { $as_echo "$as_me:$LINENO: checking for XShmAttach in -lXextSam" >&5 +-$as_echo_n "checking for XShmAttach in -lXextSam... " >&6; } +-if test "${ac_cv_lib_XextSam_XShmAttach+set}" = set; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 ++$as_echo "$ac_cv_lib_ipc_shmat" >&6; } ++if test "x$ac_cv_lib_ipc_shmat" = x""yes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" ++fi ++ ++ fi ++ fi ++ ++ # Check for libraries that X11R6 Xt/Xaw programs need. ++ ac_save_LDFLAGS=$LDFLAGS ++ test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" ++ # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to ++ # check for ICE first), but we must link in the order -lSM -lICE or ++ # we get undefined symbols. So assume we have SM if we have ICE. ++ # These have to be linked with before -lX11, unlike the other ++ # libraries we check for below, so use a different variable. ++ # John Interrante, Karl Berry ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 ++$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } ++if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lXextSam $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lICE $X_EXTRA_LIBS $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29947,345 +23349,294 @@ + #ifdef __cplusplus + extern "C" + #endif +-char XShmAttach (); ++char IceConnectionNumber (); + int + main () + { +-return XShmAttach (); ++return IceConnectionNumber (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_XextSam_XShmAttach=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_ICE_IceConnectionNumber=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_XextSam_XShmAttach=no ++ ac_cv_lib_ICE_IceConnectionNumber=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_XextSam_XShmAttach" >&5 +-$as_echo "$ac_cv_lib_XextSam_XShmAttach" >&6; } +-if test "x$ac_cv_lib_XextSam_XShmAttach" = x""yes; then +- case "$x_extra_libs " in +- *-lXextSam[\ \ ]*) ;; +- *) x_extra_libs="-lXextSam $x_extra_libs" ;; +- esac +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 ++$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } ++if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then : ++ X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" + fi + ++ LDFLAGS=$ac_save_LDFLAGS ++ + fi + ++ if test x$no_x = xyes ; then ++ as_fn_error "X development libraries not found" "$LINENO" 5 ++ fi ++ ++ x_cflags="$X_CFLAGS" ++ x_libs_for_checks="$X_LIBS -lXext -lXrender -lX11 $X_EXTRA_LIBS" ++ ++ GDK_PIXBUF_XLIB_EXTRA_CFLAGS="$x_cflags" ++ GDK_PIXBUF_XLIB_EXTRA_LIBS="$X_LIBS -lX11 $X_EXTRA_LIBS" ++ GTK_DEP_LIBS_FOR_X="$X_LIBS -lXrender -lX11 $X_EXTRA_LIBS" + fi + +- if test "x$enable_shm" = "xyes"; then +- # Check for shared memory +- if test "${ac_cv_header_sys_ipc_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for sys/ipc.h" >&5 +-$as_echo_n "checking for sys/ipc.h... " >&6; } +-if test "${ac_cv_header_sys_ipc_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_ipc_h" >&5 +-$as_echo "$ac_cv_header_sys_ipc_h" >&6; } ++ # Extra libraries found during checks (-lXinerama, etc), not from pkg-config. ++ x_extra_libs= ++ ++ gtk_save_cppflags="$CPPFLAGS" ++ CPPFLAGS="$CPPFLAGS $X_CFLAGS" ++ ++ gtk_save_LIBS=$LIBS ++ LIBS="$x_libs_for_checks $LIBS" ++ ++ # Sanity check for the X11 and Xext libraries. While everything we need from ++ # Xext is optional, the chances a system has *none* of these things is so ++ # small that we just unconditionally require it. ++ ac_fn_c_check_func "$LINENO" "XOpenDisplay" "ac_cv_func_XOpenDisplay" ++if test "x$ac_cv_func_XOpenDisplay" = x""yes; then : ++ : + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking sys/ipc.h usability" >&5 +-$as_echo_n "checking sys/ipc.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <sys/ipc.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++ as_fn_error "*** libX11 not found. Check 'config.log' for more details." "$LINENO" 5 ++fi ++ ++ ac_fn_c_check_func "$LINENO" "XextFindDisplay" "ac_cv_func_XextFindDisplay" ++if test "x$ac_cv_func_XextFindDisplay" = x""yes; then : ++ : + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ as_fn_error "*** libXext not found. Check 'config.log' for more details." "$LINENO" 5 ++fi + +- ac_header_compiler=no ++ ac_fn_c_check_func "$LINENO" "XRenderQueryExtension" "ac_cv_func_XRenderQueryExtension" ++if test "x$ac_cv_func_XRenderQueryExtension" = x""yes; then : ++ : ++else ++ as_fn_error "*** libXrender not found. Check 'config.log' for more details." "$LINENO" 5 + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking sys/ipc.h presence" >&5 +-$as_echo_n "checking sys/ipc.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ # Check for xReply ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if <X11/extensions/XIproto.h> is needed for xReply" >&5 ++$as_echo_n "checking if <X11/extensions/XIproto.h> is needed for xReply... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <X11/Xlibint.h> ++int ++main () ++{ ++xReply *rep; ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <sys/ipc.h> ++#include <X11/extensions/XIproto.h> ++#include <X11/Xlibint.h> ++int ++main () ++{ ++xReply *rep; ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define NEED_XIPROTO_H_FOR_XREPLY 1" >>confdefs.h ++ + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unknown" >&5 ++$as_echo "unknown" >&6; } ++ as_fn_error "xReply type unavailable. X11 is too old" "$LINENO" 5 ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ++ # Check for XConvertCase, XInternAtoms (X11R6 specific) ++ ++ for ac_func in XConvertCase XInternAtoms ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++eval as_val=\$$as_ac_var ++ if test "x$as_val" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++_ACEOF + +- ac_header_preproc=no + fi ++done + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/ipc.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: sys/ipc.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for sys/ipc.h" >&5 +-$as_echo_n "checking for sys/ipc.h... " >&6; } +-if test "${ac_cv_header_sys_ipc_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ # Generic X11R6 check needed for XIM support; we could ++ # probably use this to replace the above, but we'll ++ # leave the separate checks for XConvertCase and XInternAtoms ++ # for clarity ++ ++ have_x11r6=false ++ ac_fn_c_check_func "$LINENO" "XAddConnectionWatch" "ac_cv_func_XAddConnectionWatch" ++if test "x$ac_cv_func_XAddConnectionWatch" = x""yes; then : ++ have_x11r6=true ++fi ++ ++ ++ if $have_x11r6; then ++ ++$as_echo "#define HAVE_X11R6 1" >>confdefs.h ++ ++ fi ++ if $have_x11r6; then ++ HAVE_X11R6_TRUE= ++ HAVE_X11R6_FALSE='#' + else +- ac_cv_header_sys_ipc_h=$ac_header_preproc ++ HAVE_X11R6_TRUE='#' ++ HAVE_X11R6_FALSE= ++fi ++ ++ ++ # Check for XKB support. ++ ++ if test "x$enable_xkb" = "xyes"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: XKB support explicitly enabled" >&5 ++$as_echo "$as_me: WARNING: XKB support explicitly enabled" >&2;} ++ ++$as_echo "#define HAVE_XKB 1" >>confdefs.h ++ ++ elif test "x$enable_xkb" = "xmaybe"; then ++ ac_fn_c_check_func "$LINENO" "XkbQueryExtension" "ac_cv_func_XkbQueryExtension" ++if test "x$ac_cv_func_XkbQueryExtension" = x""yes; then : ++ ++$as_echo "#define HAVE_XKB 1" >>confdefs.h ++ + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_ipc_h" >&5 +-$as_echo "$ac_cv_header_sys_ipc_h" >&6; } + ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: XKB support explicitly disabled" >&5 ++$as_echo "$as_me: WARNING: XKB support explicitly disabled" >&2;} ++ fi ++ ++ # Check for shaped window extension ++ ++ ac_fn_c_check_func "$LINENO" "XShapeCombineMask" "ac_cv_func_XShapeCombineMask" ++if test "x$ac_cv_func_XShapeCombineMask" = x""yes; then : ++ : ++else ++ as_fn_error "Shape extension not found, check your development headers" "$LINENO" 5 + fi +-if test "x$ac_cv_header_sys_ipc_h" = x""yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_IPC_H 1 +-_ACEOF ++ ++ # X SYNC check ++ gtk_save_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $x_cflags" ++ ++ ac_fn_c_check_func "$LINENO" "XSyncQueryExtension" "ac_cv_func_XSyncQueryExtension" ++if test "x$ac_cv_func_XSyncQueryExtension" = x""yes; then : ++ ac_fn_c_check_header_compile "$LINENO" "X11/extensions/sync.h" "ac_cv_header_X11_extensions_sync_h" "#include <X11/Xlib.h> ++" ++if test "x$ac_cv_header_X11_extensions_sync_h" = x""yes; then : ++ ++$as_echo "#define HAVE_XSYNC 1" >>confdefs.h + + else +- no_sys_ipc=yes ++ : + fi + + +- if test "${ac_cv_header_sys_shm_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for sys/shm.h" >&5 +-$as_echo_n "checking for sys/shm.h... " >&6; } +-if test "${ac_cv_header_sys_shm_h+set}" = set; then ++fi ++ ++ ++ CFLAGS="$gtk_save_CFLAGS" ++ ++ # Xshm checks ++ ++ if test "x$enable_shm" = "xyes"; then ++ # Check for the XShm extension, normally in Xext ++ ac_fn_c_check_func "$LINENO" "XShmAttach" "ac_cv_func_XShmAttach" ++if test "x$ac_cv_func_XShmAttach" = x""yes; then : ++ : ++else ++ # On AIX, it is in XextSam instead ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShmAttach in -lXextSam" >&5 ++$as_echo_n "checking for XShmAttach in -lXextSam... " >&6; } ++if test "${ac_cv_lib_XextSam_XShmAttach+set}" = set; then : + $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_shm_h" >&5 +-$as_echo "$ac_cv_header_sys_shm_h" >&6; } + else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking sys/shm.h usability" >&5 +-$as_echo_n "checking sys/shm.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lXextSam $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <sys/shm.h> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char XShmAttach (); ++int ++main () ++{ ++return XShmAttach (); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_XextSam_XShmAttach=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_XextSam_XShmAttach=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_XextSam_XShmAttach" >&5 ++$as_echo "$ac_cv_lib_XextSam_XShmAttach" >&6; } ++if test "x$ac_cv_lib_XextSam_XShmAttach" = x""yes; then : ++ case "$x_extra_libs " in ++ *-lXextSam[\ \ ]*) ;; ++ *) x_extra_libs="-lXextSam $x_extra_libs" ;; ++ esac + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++fi + +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking sys/shm.h presence" >&5 +-$as_echo_n "checking sys/shm.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/shm.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ fi + +- ac_header_preproc=no +-fi ++ if test "x$enable_shm" = "xyes"; then ++ # Check for shared memory ++ ac_fn_c_check_header_mongrel "$LINENO" "sys/ipc.h" "ac_cv_header_sys_ipc_h" "$ac_includes_default" ++if test "x$ac_cv_header_sys_ipc_h" = x""yes; then : + +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++$as_echo "#define HAVE_IPC_H 1" >>confdefs.h + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/shm.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: sys/shm.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for sys/shm.h" >&5 +-$as_echo_n "checking for sys/shm.h... " >&6; } +-if test "${ac_cv_header_sys_shm_h+set}" = set; then +- $as_echo_n "(cached) " >&6 + else +- ac_cv_header_sys_shm_h=$ac_header_preproc ++ no_sys_ipc=yes + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_shm_h" >&5 +-$as_echo "$ac_cv_header_sys_shm_h" >&6; } + +-fi +-if test "x$ac_cv_header_sys_shm_h" = x""yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SHM_H 1 +-_ACEOF ++ ac_fn_c_check_header_mongrel "$LINENO" "sys/shm.h" "ac_cv_header_sys_shm_h" "$ac_includes_default" ++if test "x$ac_cv_header_sys_shm_h" = x""yes; then : ++ ++$as_echo "#define HAVE_SHM_H 1" >>confdefs.h + + else + no_sys_shm=yes +@@ -30295,18 +23646,14 @@ + + # Check for the X shared memory extension header file + have_xshm=no +- { $as_echo "$as_me:$LINENO: checking X11/extensions/XShm.h" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11/extensions/XShm.h" >&5 + $as_echo_n "checking X11/extensions/XShm.h... " >&6; } + if test "x$no_xext_lib" = "xyes"; then + : + else + gtk_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $x_cflags" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include <stdlib.h> +@@ -30325,42 +23672,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 ++if ac_fn_c_try_compile "$LINENO"; then : + have_xshm=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + CFLAGS="$gtk_save_CFLAGS" + fi +- { $as_echo "$as_me:$LINENO: result: $have_xshm" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_xshm" >&5 + $as_echo "$have_xshm" >&6; } + if test $have_xshm = yes ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XSHM_H 1 +-_ACEOF ++$as_echo "#define HAVE_XSHM_H 1" >>confdefs.h + + fi + fi +@@ -30371,7 +23693,7 @@ + CPPFLAGS="$CPPFLAGS $x_cflags" + + # Check for XFree +- { $as_echo "$as_me:$LINENO: checking for Xinerama support on XFree86" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Xinerama support on XFree86" >&5 + $as_echo_n "checking for Xinerama support on XFree86... " >&6; } + + have_xfree_xinerama=false +@@ -30379,18 +23701,14 @@ + have_xfree_xinerama=true + X_PACKAGES="$X_PACKAGES xinerama" + else +- { $as_echo "$as_me:$LINENO: checking for XineramaQueryExtension in -lXinerama" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XineramaQueryExtension in -lXinerama" >&5 + $as_echo_n "checking for XineramaQueryExtension in -lXinerama... " >&6; } +-if test "${ac_cv_lib_Xinerama_XineramaQueryExtension+set}" = set; then ++if test "${ac_cv_lib_Xinerama_XineramaQueryExtension+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXinerama $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -30408,89 +23726,21 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xinerama_XineramaQueryExtension=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xinerama_XineramaQueryExtension=no ++ ac_cv_lib_Xinerama_XineramaQueryExtension=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xinerama_XineramaQueryExtension" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xinerama_XineramaQueryExtension" >&5 + $as_echo "$ac_cv_lib_Xinerama_XineramaQueryExtension" >&6; } +-if test "x$ac_cv_lib_Xinerama_XineramaQueryExtension" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for X11/extensions/Xinerama.h" >&5 +-$as_echo_n "checking for X11/extensions/Xinerama.h... " >&6; } +-if test "${ac_cv_header_X11_extensions_Xinerama_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <X11/Xlib.h> +- +-#include <X11/extensions/Xinerama.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_X11_extensions_Xinerama_h=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_X11_extensions_Xinerama_h=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_X11_extensions_Xinerama_h" >&5 +-$as_echo "$ac_cv_header_X11_extensions_Xinerama_h" >&6; } +-if test "x$ac_cv_header_X11_extensions_Xinerama_h" = x""yes; then ++if test "x$ac_cv_lib_Xinerama_XineramaQueryExtension" = x""yes; then : ++ ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xinerama.h" "ac_cv_header_X11_extensions_Xinerama_h" "#include <X11/Xlib.h> ++" ++if test "x$ac_cv_header_X11_extensions_Xinerama_h" = x""yes; then : + case "$x_extra_libs " in + *-lXinerama[\ \ ]*) ;; + *) x_extra_libs="-lXinerama $x_extra_libs" ;; +@@ -30508,160 +23758,29 @@ + + if $have_xfree_xinerama ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XFREE_XINERAMA 1 +-_ACEOF ++$as_echo "#define HAVE_XFREE_XINERAMA 1" >>confdefs.h + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XINERAMA 1 +-_ACEOF ++$as_echo "#define HAVE_XINERAMA 1" >>confdefs.h + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + + case "$host" in + *-*-solaris*) + # Check for solaris +- { $as_echo "$as_me:$LINENO: checking for Xinerama support on Solaris" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Xinerama support on Solaris" >&5 + $as_echo_n "checking for Xinerama support on Solaris... " >&6; } + + have_solaris_xinerama=false +- { $as_echo "$as_me:$LINENO: checking for XineramaGetInfo" >&5 +-$as_echo_n "checking for XineramaGetInfo... " >&6; } +-if test "${ac_cv_func_XineramaGetInfo+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define XineramaGetInfo to an innocuous variant, in case <limits.h> declares XineramaGetInfo. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define XineramaGetInfo innocuous_XineramaGetInfo +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char XineramaGetInfo (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef XineramaGetInfo +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char XineramaGetInfo (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_XineramaGetInfo || defined __stub___XineramaGetInfo +-choke me +-#endif +- +-int +-main () +-{ +-return XineramaGetInfo (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_XineramaGetInfo=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_XineramaGetInfo=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_XineramaGetInfo" >&5 +-$as_echo "$ac_cv_func_XineramaGetInfo" >&6; } +-if test "x$ac_cv_func_XineramaGetInfo" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for X11/extensions/xinerama.h" >&5 +-$as_echo_n "checking for X11/extensions/xinerama.h... " >&6; } +-if test "${ac_cv_header_X11_extensions_xinerama_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <X11/Xlib.h> +- +-#include <X11/extensions/xinerama.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_X11_extensions_xinerama_h=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_X11_extensions_xinerama_h=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_X11_extensions_xinerama_h" >&5 +-$as_echo "$ac_cv_header_X11_extensions_xinerama_h" >&6; } +-if test "x$ac_cv_header_X11_extensions_xinerama_h" = x""yes; then ++ ac_fn_c_check_func "$LINENO" "XineramaGetInfo" "ac_cv_func_XineramaGetInfo" ++if test "x$ac_cv_func_XineramaGetInfo" = x""yes; then : ++ ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xinerama.h" "ac_cv_header_X11_extensions_xinerama_h" "#include <X11/Xlib.h> ++" ++if test "x$ac_cv_header_X11_extensions_xinerama_h" = x""yes; then : + have_solaris_xinerama=true + else + : +@@ -30673,19 +23792,15 @@ + + if $have_solaris_xinerama ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SOLARIS_XINERAMA 1 +-_ACEOF ++$as_echo "#define HAVE_SOLARIS_XINERAMA 1" >>confdefs.h + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XINERAMA 1 +-_ACEOF ++$as_echo "#define HAVE_XINERAMA 1" >>confdefs.h + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + ;; +@@ -30699,9 +23814,7 @@ + + if test "x$with_xinput" = "xxfree" || test "x$with_xinput" = "xyes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define XINPUT_XFREE 1 +-_ACEOF ++$as_echo "#define XINPUT_XFREE 1" >>confdefs.h + + + if $PKG_CONFIG --exists xi ; then +@@ -30715,15 +23828,11 @@ + fi + else + +-cat >>confdefs.h <<\_ACEOF +-#define XINPUT_NONE 1 +-_ACEOF ++$as_echo "#define XINPUT_NONE 1" >>confdefs.h + + fi + +- +- +-if test x$with_xinput = xxfree || test x$with_xinput = xyes; then ++ if test x$with_xinput = xxfree || test x$with_xinput = xyes; then + XINPUT_XFREE_TRUE= + XINPUT_XFREE_FALSE='#' + else +@@ -30735,9 +23844,7 @@ + # Check for the RANDR extension + if $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_RANDR 1 +-_ACEOF ++$as_echo "#define HAVE_RANDR 1" >>confdefs.h + + + X_PACKAGES="$X_PACKAGES xrandr" +@@ -30747,9 +23854,7 @@ + + if $PKG_CONFIG --exists xcursor ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XCURSOR 1 +-_ACEOF ++$as_echo "#define HAVE_XCURSOR 1" >>confdefs.h + + + X_PACKAGES="$X_PACKAGES xcursor" +@@ -30759,9 +23864,7 @@ + + if $PKG_CONFIG --exists xfixes ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XFIXES 1 +-_ACEOF ++$as_echo "#define HAVE_XFIXES 1" >>confdefs.h + + + X_PACKAGES="$X_PACKAGES xfixes" +@@ -30772,9 +23875,7 @@ + + if $PKG_CONFIG --exists xcomposite ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XCOMPOSITE 1 +-_ACEOF ++$as_echo "#define HAVE_XCOMPOSITE 1" >>confdefs.h + + + X_PACKAGES="$X_PACKAGES xcomposite" +@@ -30785,9 +23886,7 @@ + + if $PKG_CONFIG --exists xdamage ; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XDAMAGE 1 +-_ACEOF ++$as_echo "#define HAVE_XDAMAGE 1" >>confdefs.h + + + X_PACKAGES="$X_PACKAGES xdamage" +@@ -30803,9 +23902,7 @@ + CPPFLAGS="$gtk_save_cppflags" + LIBS="$gtk_save_libs" + +- +- +-if true; then ++ if true; then + USE_X11_TRUE= + USE_X11_FALSE='#' + else +@@ -30816,9 +23913,7 @@ + else + XPACKAGES= + +- +- +-if false; then ++ if false; then + XINPUT_XFREE_TRUE= + XINPUT_XFREE_FALSE='#' + else +@@ -30826,9 +23921,7 @@ + XINPUT_XFREE_FALSE= + fi + +- +- +-if false; then ++ if false; then + USE_X11_TRUE= + USE_X11_FALSE='#' + else +@@ -30836,9 +23929,7 @@ + USE_X11_FALSE= + fi + +- +- +-if false; then ++ if false; then + HAVE_X11R6_TRUE= + HAVE_X11R6_FALSE='#' + else +@@ -30850,9 +23941,7 @@ + + if test "x$gdktarget" = "xwin32"; then + GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -lgdi32 -limm32 -lshell32 -lole32 -Wl,-luuid" +- +- +-if true; then ++ if true; then + USE_WIN32_TRUE= + USE_WIN32_FALSE='#' + else +@@ -30861,9 +23950,7 @@ + fi + + else +- +- +-if false; then ++ if false; then + USE_WIN32_TRUE= + USE_WIN32_FALSE='#' + else +@@ -30874,10 +23961,8 @@ + fi + + if test "x$gdktarget" = "xquartz"; then +- GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -framework Cocoa" +- +- +-if true; then ++ GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -framework Cocoa" ++ if true; then + USE_QUARTZ_TRUE= + USE_QUARTZ_FALSE='#' + else +@@ -30886,9 +23971,7 @@ + fi + + else +- +- +-if false; then ++ if false; then + USE_QUARTZ_TRUE= + USE_QUARTZ_FALSE='#' + else +@@ -30909,45 +23992,49 @@ + + if test "x$gdktarget" = "xdirectfb"; then + DIRECTFB_REQUIRED_VERSION=1.0.0 +- { $as_echo "$as_me:$LINENO: checking for DirectFB" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DirectFB" >&5 + $as_echo_n "checking for DirectFB... " >&6; } + + + pkg_failed=no +-{ $as_echo "$as_me:$LINENO: checking for DIRECTFB" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DIRECTFB" >&5 + $as_echo_n "checking for DIRECTFB... " >&6; } + +-if test -n "$DIRECTFB_CFLAGS"; then +- pkg_cv_DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"directfb >= \$DIRECTFB_REQUIRED_VERSION\"") >&5 ++if test -n "$PKG_CONFIG"; then ++ if test -n "$DIRECTFB_CFLAGS"; then ++ pkg_cv_DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb >= \$DIRECTFB_REQUIRED_VERSION\""; } >&5 + ($PKG_CONFIG --exists --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags "directfb >= $DIRECTFB_REQUIRED_VERSION" 2>/dev/null` + else + pkg_failed=yes + fi +- else +- pkg_failed=untried ++ fi ++else ++ pkg_failed=untried + fi +-if test -n "$DIRECTFB_LIBS"; then +- pkg_cv_DIRECTFB_LIBS="$DIRECTFB_LIBS" +- elif test -n "$PKG_CONFIG"; then +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"directfb >= \$DIRECTFB_REQUIRED_VERSION\"") >&5 ++if test -n "$PKG_CONFIG"; then ++ if test -n "$DIRECTFB_LIBS"; then ++ pkg_cv_DIRECTFB_LIBS="$DIRECTFB_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb >= \$DIRECTFB_REQUIRED_VERSION\""; } >&5 + ($PKG_CONFIG --exists --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRECTFB_LIBS=`$PKG_CONFIG --libs "directfb >= $DIRECTFB_REQUIRED_VERSION" 2>/dev/null` + else + pkg_failed=yes + fi +- else +- pkg_failed=untried ++ fi ++else ++ pkg_failed=untried + fi + + +@@ -30960,25 +24047,14 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION" 2>&1` ++ DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION"` + else +- DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION" 2>&1` ++ DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "directfb >= $DIRECTFB_REQUIRED_VERSION"` + fi + # Put the nasty error message in config.log where it belongs + echo "$DIRECTFB_PKG_ERRORS" >&5 + +- { { $as_echo "$as_me:$LINENO: error: Package requirements (directfb >= $DIRECTFB_REQUIRED_VERSION) were not met: +- +-$DIRECTFB_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 DIRECTFB_CFLAGS +-and DIRECTFB_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-$as_echo "$as_me: error: Package requirements (directfb >= $DIRECTFB_REQUIRED_VERSION) were not met: ++ as_fn_error "Package requirements (directfb >= $DIRECTFB_REQUIRED_VERSION) were not met: + + $DIRECTFB_PKG_ERRORS + +@@ -30988,22 +24064,11 @@ + Alternatively, you may set the environment variables DIRECTFB_CFLAGS + and DIRECTFB_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + elif test $pkg_failed = untried; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_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 DIRECTFB_CFLAGS +-and DIRECTFB_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it ++as_fn_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. + +@@ -31012,18 +24077,15 @@ + See the pkg-config man page for more details. + + To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++See \`config.log' for more details." "$LINENO" 5; } + else + DIRECTFB_CFLAGS=$pkg_cv_DIRECTFB_CFLAGS + DIRECTFB_LIBS=$pkg_cv_DIRECTFB_LIBS +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + : + fi +- +- +-if true; then ++ if true; then + USE_DIRECTFB_TRUE= + USE_DIRECTFB_FALSE='#' + else +@@ -31032,9 +24094,7 @@ + fi + + else +- +- +-if false; then ++ if false; then + USE_DIRECTFB_TRUE= + USE_DIRECTFB_FALSE='#' + else +@@ -31053,24 +24113,19 @@ + PANGO_PACKAGES="pango pangocairo" + fi + +-{ $as_echo "$as_me:$LINENO: checking Pango flags" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Pango flags" >&5 + $as_echo_n "checking Pango flags... " >&6; } + if $PKG_CONFIG --exists $PANGO_PACKAGES ; then + PANGO_CFLAGS=`$PKG_CONFIG --cflags $PANGO_PACKAGES` + PANGO_LIBS=`$PKG_CONFIG --libs $PANGO_PACKAGES` + +- { $as_echo "$as_me:$LINENO: result: $PANGO_CFLAGS $PANGO_LIBS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PANGO_CFLAGS $PANGO_LIBS" >&5 + $as_echo "$PANGO_CFLAGS $PANGO_LIBS" >&6; } + else +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** Pango not found. Pango built with Cairo support is required + *** to build GTK+. See http://www.pango.org for Pango information. +-" >&5 +-$as_echo "$as_me: error: +-*** Pango not found. Pango built with Cairo support is required +-*** to build GTK+. See http://www.pango.org for Pango information. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + fi + + CFLAGS="$CFLAGS $PANGO_CFLAGS" +@@ -31080,11 +24135,7 @@ + else + gtk_save_LIBS="$LIBS" + LIBS="$PANGO_LIBS $LIBS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31102,60 +24153,33 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + : + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { { $as_echo "$as_me:$LINENO: error: +-*** Can't link to Pango. Pango is required to build +-*** GTK+. For more information see http://www.pango.org" >&5 +-$as_echo "$as_me: error: ++ as_fn_error " + *** Can't link to Pango. Pango is required to build +-*** GTK+. For more information see http://www.pango.org" >&2;} +- { (exit 1); exit 1; }; } ++*** GTK+. For more information see http://www.pango.org" "$LINENO" 5 + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS="$gtk_save_LIBS" + fi + + CFLAGS="$saved_cflags" + LDFLAGS="$saved_ldflags" + +-GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 $X_PACKAGES cairo-$cairo_backend" +-GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES $GDK_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" +-GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $GDK_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS $GDK_EXTRA_CFLAGS" ++GDK_PACKAGES="$PANGO_PACKAGES gio-2.0" ++GDK_PRIVATE_PACKAGES="$X_PACKAGES cairo-$cairo_backend" ++GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PIXBUF_PACKAGES $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_PIXBUF_EXTRA_LIBS" ++GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PIXBUF_PACKAGES $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_PIXBUF_EXTRA_CFLAGS $GDK_EXTRA_CFLAGS" + # + # If we aren't writing explicit dependencies, then don't put the extra libraries we need + # into the pkg-config files + # + if test $enable_explicit_deps != yes ; then +- GDK_PACKAGES="$PANGO_PACKAGES" + GDK_EXTRA_LIBS= ++else ++ GDK_PACKAGES="$PANGO_PACKAGES" + fi + + +@@ -31165,29 +24189,25 @@ + + + ++ + ######################################## + # Check for Accessibility Toolkit flags + ######################################## + + ATK_PACKAGES=atk +-{ $as_echo "$as_me:$LINENO: checking ATK flags" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking ATK flags" >&5 + $as_echo_n "checking ATK flags... " >&6; } + if $PKG_CONFIG --exists $ATK_PACKAGES ; then + ATK_CFLAGS=`$PKG_CONFIG --cflags $ATK_PACKAGES` + ATK_LIBS=`$PKG_CONFIG --libs $ATK_PACKAGES` + +- { $as_echo "$as_me:$LINENO: result: $ATK_CFLAGS $ATK_LIBS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ATK_CFLAGS $ATK_LIBS" >&5 + $as_echo "$ATK_CFLAGS $ATK_LIBS" >&6; } + else +- { { $as_echo "$as_me:$LINENO: error: +-*** Accessibility Toolkit not found. Accessibility Toolkit is required +-*** to build GTK+. +-" >&5 +-$as_echo "$as_me: error: ++ as_fn_error " + *** Accessibility Toolkit not found. Accessibility Toolkit is required + *** to build GTK+. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + fi + + if $PKG_CONFIG --uninstalled $ATK_PACKAGES; then +@@ -31195,11 +24215,7 @@ + else + gtk_save_LIBS="$LIBS" + LIBS="$ATK_LIBS $LIBS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31217,44 +24233,15 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + : + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required +- *** to build GTK+" >&5 +-$as_echo "$as_me: error: +- *** Cannot link to Accessibility Toolkit. Accessibility Toolkit is required +- *** to build GTK+" >&2;} +- { (exit 1); exit 1; }; } ++ *** to build GTK+" "$LINENO" 5 + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS="$gtk_save_LIBS" + fi + +@@ -31277,7 +24264,7 @@ + CAIRO_PREFIX="`pkg-config --variable=prefix cairo`" + + if test $enable_explicit_deps != yes ; then +- GDK_PIXBUF_EXTRA_LIBS= ++ GDK_PIXBUF_EXTRA_LIBS="$MATH_LIB" + fi + + +@@ -31305,17 +24292,13 @@ + ######################## + + old_LIBS="$LIBS" +-{ $as_echo "$as_me:$LINENO: checking for library containing gethostent" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostent" >&5 + $as_echo_n "checking for library containing gethostent... " >&6; } +-if test "${ac_cv_search_gethostent+set}" = set; then ++if test "${ac_cv_search_gethostent+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_func_search_save_LIBS=$LIBS +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31340,69 +24323,38 @@ + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi +- rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_gethostent=$ac_res +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext +- if test "${ac_cv_search_gethostent+set}" = set; then ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if test "${ac_cv_search_gethostent+set}" = set; then : + break + fi + done +-if test "${ac_cv_search_gethostent+set}" = set; then +- : ++if test "${ac_cv_search_gethostent+set}" = set; then : ++ + else + ac_cv_search_gethostent=no + fi + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_gethostent" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostent" >&5 + $as_echo "$ac_cv_search_gethostent" >&6; } + ac_res=$ac_cv_search_gethostent +-if test "$ac_res" != no; then ++if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + + fi + +-{ $as_echo "$as_me:$LINENO: checking for library containing setsockopt" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setsockopt" >&5 + $as_echo_n "checking for library containing setsockopt... " >&6; } +-if test "${ac_cv_search_setsockopt+set}" = set; then ++if test "${ac_cv_search_setsockopt+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_func_search_save_LIBS=$LIBS +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31427,69 +24379,38 @@ + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi +- rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_setsockopt=$ac_res +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext +- if test "${ac_cv_search_setsockopt+set}" = set; then ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if test "${ac_cv_search_setsockopt+set}" = set; then : + break + fi + done +-if test "${ac_cv_search_setsockopt+set}" = set; then +- : ++if test "${ac_cv_search_setsockopt+set}" = set; then : ++ + else + ac_cv_search_setsockopt=no + fi + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_setsockopt" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_setsockopt" >&5 + $as_echo "$ac_cv_search_setsockopt" >&6; } + ac_res=$ac_cv_search_setsockopt +-if test "$ac_res" != no; then ++if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + + fi + +-{ $as_echo "$as_me:$LINENO: checking for library containing connect" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing connect" >&5 + $as_echo_n "checking for library containing connect... " >&6; } +-if test "${ac_cv_search_connect+set}" = set; then ++if test "${ac_cv_search_connect+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_func_search_save_LIBS=$LIBS +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31514,161 +24435,37 @@ + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi +- rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_connect=$ac_res +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext +- if test "${ac_cv_search_connect+set}" = set; then ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if test "${ac_cv_search_connect+set}" = set; then : + break + fi + done +-if test "${ac_cv_search_connect+set}" = set; then +- : ++if test "${ac_cv_search_connect+set}" = set; then : ++ + else + ac_cv_search_connect=no + fi + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_connect" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_connect" >&5 + $as_echo "$ac_cv_search_connect" >&6; } + ac_res=$ac_cv_search_connect +-if test "$ac_res" != no; then ++if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + + fi + + +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr_un.sun_len" >&5 +-$as_echo_n "checking for struct sockaddr_un.sun_len... " >&6; } +-if test "${ac_cv_member_struct_sockaddr_un_sun_len+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> +- #include <sys/un.h> +- +- +-int +-main () +-{ +-static struct sockaddr_un ac_aggr; +-if (ac_aggr.sun_len) +-return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_member_struct_sockaddr_un_sun_len=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/types.h> ++ac_fn_c_check_member "$LINENO" "struct sockaddr_un" "sun_len" "ac_cv_member_struct_sockaddr_un_sun_len" "#include <sys/types.h> + #include <sys/un.h> + +- +-int +-main () +-{ +-static struct sockaddr_un ac_aggr; +-if (sizeof ac_aggr.sun_len) +-return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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_member_struct_sockaddr_un_sun_len=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_member_struct_sockaddr_un_sun_len=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_un_sun_len" >&5 +-$as_echo "$ac_cv_member_struct_sockaddr_un_sun_len" >&6; } +-if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = x""yes; then ++" ++if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = x""yes; then : + struct_sockaddr_un_sun_len=true + else + struct_sockaddr_un_suin_len=false +@@ -31696,7 +24493,7 @@ + ################################################################ + + # Check whether --enable-cups was given. +-if test "${enable_cups+set}" = set; then ++if test "${enable_cups+set}" = set; then : + enableval=$enable_cups; + else + enable_cups=auto +@@ -31704,9 +24501,7 @@ + + + if test "x$enable_cups" = "xno"; then +- +- +-if false; then ++ if false; then + HAVE_CUPS_TRUE= + HAVE_CUPS_FALSE='#' + else +@@ -31717,9 +24512,9 @@ + else + # Extract the first word of "cups-config", so it can be a program name with args. + set dummy cups-config; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_CUPS_CONFIG+set}" = set; then ++if test "${ac_cv_path_CUPS_CONFIG+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $CUPS_CONFIG in +@@ -31732,14 +24527,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_CUPS_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_CUPS_CONFIG" && ac_cv_path_CUPS_CONFIG="no" +@@ -31748,19 +24543,17 @@ + fi + CUPS_CONFIG=$ac_cv_path_CUPS_CONFIG + if test -n "$CUPS_CONFIG"; then +- { $as_echo "$as_me:$LINENO: result: $CUPS_CONFIG" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CUPS_CONFIG" >&5 + $as_echo "$CUPS_CONFIG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + if test "x$CUPS_CONFIG" = "xno"; then + if test "x$enable_cups" = "xauto"; then +- +- +-if false; then ++ if false; then + HAVE_CUPS_TRUE= + HAVE_CUPS_FALSE='#' + else +@@ -31769,13 +24562,9 @@ + fi + + else +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** cups not found. +-" >&5 +-$as_echo "$as_me: error: +-*** cups not found. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + fi + else + CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O0-9*//' | sed 's/-m^\t*//g'` +@@ -31788,9 +24577,7 @@ + if test $CUPS_API_MAJOR -gt 1 -o \ + $CUPS_API_MAJOR -eq 1 -a $CUPS_API_MINOR -ge 2; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_CUPS_API_1_2 1 +-_ACEOF ++$as_echo "#define HAVE_CUPS_API_1_2 1" >>confdefs.h + + fi + +@@ -31799,151 +24586,16 @@ + + + +- if test "${ac_cv_header_cups_cups_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for cups/cups.h" >&5 +-$as_echo_n "checking for cups/cups.h... " >&6; } +-if test "${ac_cv_header_cups_cups_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cups_cups_h" >&5 +-$as_echo "$ac_cv_header_cups_cups_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking cups/cups.h usability" >&5 +-$as_echo_n "checking cups/cups.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <cups/cups.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking cups/cups.h presence" >&5 +-$as_echo_n "checking cups/cups.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <cups/cups.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cups/cups.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: cups/cups.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for cups/cups.h" >&5 +-$as_echo_n "checking for cups/cups.h... " >&6; } +-if test "${ac_cv_header_cups_cups_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_cups_cups_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cups_cups_h" >&5 +-$as_echo "$ac_cv_header_cups_cups_h" >&6; } +- +-fi +-if test "x$ac_cv_header_cups_cups_h" = x""yes; then +- : ++ ac_fn_c_check_header_mongrel "$LINENO" "cups/cups.h" "ac_cv_header_cups_cups_h" "$ac_includes_default" ++if test "x$ac_cv_header_cups_cups_h" = x""yes; then : ++ + else +- { { $as_echo "$as_me:$LINENO: error: *** Sorry, cups-config present but cups/cups.h missing." >&5 +-$as_echo "$as_me: error: *** Sorry, cups-config present but cups/cups.h missing." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "*** Sorry, cups-config present but cups/cups.h missing." "$LINENO" 5 + fi + + + +- +- +-if true; then ++ if true; then + HAVE_CUPS_TRUE= + HAVE_CUPS_FALSE='#' + else +@@ -31954,11 +24606,7 @@ + + gtk_save_cflags="$CFLAGS" + CFLAGS="$CUPS_CFLAGS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include <cups/http.h> + int +@@ -31969,36 +24617,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_HTTP_AUTHSTRING /**/ +-_ACEOF +- +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + ++$as_echo "#define HAVE_HTTP_AUTHSTRING /**/" >>confdefs.h + + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + CFLAGS="$gtk_save_cflags" + +@@ -32006,102 +24629,12 @@ + + gtk_save_libs="$LIBS" + LIBS="$CUPS_LIBS" +- +-for ac_func in httpGetAuthString +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. +- For example, HP-UX 11i <limits.h> declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ for ac_func in httpGetAuthString ++do : ++ ac_fn_c_check_func "$LINENO" "httpGetAuthString" "ac_cv_func_httpGetAuthString" ++if test "x$ac_cv_func_httpGetAuthString" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_HTTPGETAUTHSTRING 1 + _ACEOF + + fi +@@ -32115,7 +24648,7 @@ + # + + # Check whether --enable-papi was given. +-if test "${enable_papi+set}" = set; then ++if test "${enable_papi+set}" = set; then : + enableval=$enable_papi; + else + enable_papi=auto +@@ -32123,9 +24656,7 @@ + + + if test "x$enable_papi" = "xno"; then +- +- +-if false; then ++ if false; then + HAVE_PAPI_TRUE= + HAVE_PAPI_FALSE='#' + else +@@ -32134,20 +24665,16 @@ + fi + + else +- { $as_echo "$as_me:$LINENO: checking libpapi" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking libpapi" >&5 + $as_echo_n "checking libpapi... " >&6; } +- { $as_echo "$as_me:$LINENO: checking for papiServiceCreate in -lpapi" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for papiServiceCreate in -lpapi" >&5 + $as_echo_n "checking for papiServiceCreate in -lpapi... " >&6; } +-if test "${ac_cv_lib_papi_papiServiceCreate+set}" = set; then ++if test "${ac_cv_lib_papi_papiServiceCreate+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lpapi $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -32165,43 +24692,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_papi_papiServiceCreate=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_papi_papiServiceCreate=no ++ ac_cv_lib_papi_papiServiceCreate=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_papi_papiServiceCreate" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_papi_papiServiceCreate" >&5 + $as_echo "$ac_cv_lib_papi_papiServiceCreate" >&6; } +-if test "x$ac_cv_lib_papi_papiServiceCreate" = x""yes; then ++if test "x$ac_cv_lib_papi_papiServiceCreate" = x""yes; then : + have_papi=yes + else + have_papi=no +@@ -32209,14 +24711,10 @@ + + if test $have_papi = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_PAPI /**/ +-_ACEOF ++$as_echo "#define HAVE_PAPI /**/" >>confdefs.h + + fi +- +- +-if test $have_papi = yes; then ++ if test $have_papi = yes; then + HAVE_PAPI_TRUE= + HAVE_PAPI_FALSE='#' + else +@@ -32225,19 +24723,13 @@ + fi + + if test "x$enable_papi" = "xyes" -a "x$have_papi" = "xno"; then +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** papi not found. +-" >&5 +-$as_echo "$as_me: error: +-*** papi not found. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + fi + fi + +- +- +-if test "x$have_papi" = "xyes" -a "x$CUPS_CONFIG" != "xno"; then ++ if test "x$have_papi" = "xyes" -a "x$CUPS_CONFIG" != "xno"; then + HAVE_PAPI_CUPS_TRUE= + HAVE_PAPI_CUPS_FALSE='#' + else +@@ -32249,295 +24741,25 @@ + gtk_save_cppflags="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $GTK_DEP_CFLAGS $GDK_DEP_CFLAGS" + +-if test "${ac_cv_header_cairo_pdf_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for cairo-pdf.h" >&5 +-$as_echo_n "checking for cairo-pdf.h... " >&6; } +-if test "${ac_cv_header_cairo_pdf_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cairo_pdf_h" >&5 +-$as_echo "$ac_cv_header_cairo_pdf_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking cairo-pdf.h usability" >&5 +-$as_echo_n "checking cairo-pdf.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <cairo-pdf.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking cairo-pdf.h presence" >&5 +-$as_echo_n "checking cairo-pdf.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <cairo-pdf.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-pdf.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: cairo-pdf.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for cairo-pdf.h" >&5 +-$as_echo_n "checking for cairo-pdf.h... " >&6; } +-if test "${ac_cv_header_cairo_pdf_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_cairo_pdf_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cairo_pdf_h" >&5 +-$as_echo "$ac_cv_header_cairo_pdf_h" >&6; } ++ac_fn_c_check_header_mongrel "$LINENO" "cairo-pdf.h" "ac_cv_header_cairo_pdf_h" "$ac_includes_default" ++if test "x$ac_cv_header_cairo_pdf_h" = x""yes; then : + +-fi +-if test "x$ac_cv_header_cairo_pdf_h" = x""yes; then +- : + else +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** Can't find cairo-pdf.h. You must build Cairo with the pdf +-*** backend enabled." >&5 +-$as_echo "$as_me: error: +-*** Can't find cairo-pdf.h. You must build Cairo with the pdf +-*** backend enabled." >&2;} +- { (exit 1); exit 1; }; } ++*** backend enabled." "$LINENO" 5 + fi + + + + if test "$os_win32" != "yes"; then +- if test "${ac_cv_header_cairo_ps_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for cairo-ps.h" >&5 +-$as_echo_n "checking for cairo-ps.h... " >&6; } +-if test "${ac_cv_header_cairo_ps_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cairo_ps_h" >&5 +-$as_echo "$ac_cv_header_cairo_ps_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking cairo-ps.h usability" >&5 +-$as_echo_n "checking cairo-ps.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <cairo-ps.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking cairo-ps.h presence" >&5 +-$as_echo_n "checking cairo-ps.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <cairo-ps.h> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_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 +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: cairo-ps.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: cairo-ps.h: in the future, the compiler will take precedence" >&2;} +- ( cat <<\_ASBOX +-## --------------------------------------------------------------------- ## +-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B ## +-## --------------------------------------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for cairo-ps.h" >&5 +-$as_echo_n "checking for cairo-ps.h... " >&6; } +-if test "${ac_cv_header_cairo_ps_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_cairo_ps_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_cairo_ps_h" >&5 +-$as_echo "$ac_cv_header_cairo_ps_h" >&6; } ++ ac_fn_c_check_header_mongrel "$LINENO" "cairo-ps.h" "ac_cv_header_cairo_ps_h" "$ac_includes_default" ++if test "x$ac_cv_header_cairo_ps_h" = x""yes; then : + +-fi +-if test "x$ac_cv_header_cairo_ps_h" = x""yes; then +- : + else +- { { $as_echo "$as_me:$LINENO: error: ++ as_fn_error " + *** Can't find cairo-ps.h. You must build Cairo with the +-*** postscript backend enabled." >&5 +-$as_echo "$as_me: error: +-*** Can't find cairo-ps.h. You must build Cairo with the +-*** postscript backend enabled." >&2;} +- { (exit 1); exit 1; }; } ++*** postscript backend enabled." "$LINENO" 5 + fi + + +@@ -32547,15 +24769,13 @@ + + + # Check whether --enable-test-print-backend was given. +-if test "${enable_test_print_backend+set}" = set; then ++if test "${enable_test_print_backend+set}" = set; then : + enableval=$enable_test_print_backend; + else + enable_test_print_backend=no + fi + +- +- +-if test "x$enable_test_print_backend" != "xno"; then ++ if test "x$enable_test_print_backend" != "xno"; then + TEST_PRINT_BACKEND_TRUE= + TEST_PRINT_BACKEND_FALSE='#' + else +@@ -32595,7 +24815,7 @@ + + + # Check whether --with-html-dir was given. +-if test "${with_html_dir+set}" = set; then ++if test "${with_html_dir+set}" = set; then : + withval=$with_html_dir; + else + with_html_dir='${datadir}/gtk-doc/html' +@@ -32605,7 +24825,7 @@ + + + # Check whether --enable-gtk-doc was given. +-if test "${enable_gtk_doc+set}" = set; then ++if test "${enable_gtk_doc+set}" = set; then : + enableval=$enable_gtk_doc; + else + enable_gtk_doc=no +@@ -32614,31 +24834,29 @@ + + if test x$enable_gtk_doc = xyes; then + if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.11\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.11\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.11") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + : + else +- { { $as_echo "$as_me:$LINENO: error: You need to have gtk-doc >= 1.11 installed to build gtk-doc" >&5 +-$as_echo "$as_me: error: You need to have gtk-doc >= 1.11 installed to build gtk-doc" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "You need to have gtk-doc >= 1.11 installed to build gtk-doc" "$LINENO" 5 + fi + fi + +- { $as_echo "$as_me:$LINENO: checking whether to build gtk-doc documentation" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 + $as_echo_n "checking whether to build gtk-doc documentation... " >&6; } +- { $as_echo "$as_me:$LINENO: result: $enable_gtk_doc" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 + $as_echo "$enable_gtk_doc" >&6; } + + for ac_prog in gtkdoc-check + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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 test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $GTKDOC_CHECK in +@@ -32651,14 +24869,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -32666,10 +24884,10 @@ + fi + GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK + if test -n "$GTKDOC_CHECK"; then +- { $as_echo "$as_me:$LINENO: result: $GTKDOC_CHECK" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 + $as_echo "$GTKDOC_CHECK" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -32678,9 +24896,7 @@ + done + + +- +- +-if test x$enable_gtk_doc = xyes; then ++ if test x$enable_gtk_doc = xyes; then + ENABLE_GTK_DOC_TRUE= + ENABLE_GTK_DOC_FALSE='#' + else +@@ -32688,9 +24904,7 @@ + ENABLE_GTK_DOC_FALSE= + fi + +- +- +-if test -n "$LIBTOOL"; then ++ if test -n "$LIBTOOL"; then + GTK_DOC_USE_LIBTOOL_TRUE= + GTK_DOC_USE_LIBTOOL_FALSE='#' + else +@@ -32702,9 +24916,9 @@ + + # Extract the first word of "db2html", so it can be a program name with args. + set dummy db2html; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_DB2HTML+set}" = set; then ++if test "${ac_cv_prog_DB2HTML+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$DB2HTML"; then +@@ -32715,14 +24929,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_DB2HTML="true" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_prog_DB2HTML" && ac_cv_prog_DB2HTML="false" +@@ -32730,17 +24944,15 @@ + fi + DB2HTML=$ac_cv_prog_DB2HTML + if test -n "$DB2HTML"; then +- { $as_echo "$as_me:$LINENO: result: $DB2HTML" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DB2HTML" >&5 + $as_echo "$DB2HTML" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + +- +- +-if $DB2HTML; then ++ if $DB2HTML; then + HAVE_DOCBOOK_TRUE= + HAVE_DOCBOOK_FALSE='#' + else +@@ -32750,7 +24962,7 @@ + + + # Check whether --enable-man was given. +-if test "${enable_man+set}" = set; then ++if test "${enable_man+set}" = set; then : + enableval=$enable_man; enable_man=yes + else + enable_man=no +@@ -32760,9 +24972,9 @@ + if test "${enable_man}" != no; then + # Extract the first word of "xsltproc", so it can be a program name with args. + set dummy xsltproc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_XSLTPROC+set}" = set; then ++if test "${ac_cv_path_XSLTPROC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $XSLTPROC in +@@ -32775,14 +24987,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_XSLTPROC="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -32790,10 +25002,10 @@ + fi + XSLTPROC=$ac_cv_path_XSLTPROC + if test -n "$XSLTPROC"; then +- { $as_echo "$as_me:$LINENO: result: $XSLTPROC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XSLTPROC" >&5 + $as_echo "$XSLTPROC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -32806,7 +25018,7 @@ + # check for the presence of the XML catalog + + # Check whether --with-xml-catalog was given. +-if test "${with_xml_catalog+set}" = set; then ++if test "${with_xml_catalog+set}" = set; then : + withval=$with_xml_catalog; + else + with_xml_catalog=/etc/xml/catalog +@@ -32815,23 +25027,23 @@ + jh_found_xmlcatalog=true + XML_CATALOG_FILE="$with_xml_catalog" + +- { $as_echo "$as_me:$LINENO: checking for XML catalog ($XML_CATALOG_FILE)" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML catalog ($XML_CATALOG_FILE)" >&5 + $as_echo_n "checking for XML catalog ($XML_CATALOG_FILE)... " >&6; } + if test -f "$XML_CATALOG_FILE"; then +- { $as_echo "$as_me:$LINENO: result: found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 + $as_echo "found" >&6; } + else + jh_found_xmlcatalog=false +- { $as_echo "$as_me:$LINENO: result: not found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 + $as_echo "not found" >&6; } + fi + + # check for the xmlcatalog program + # Extract the first word of "xmlcatalog", so it can be a program name with args. + set dummy xmlcatalog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $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_XMLCATALOG+set}" = set; then ++if test "${ac_cv_path_XMLCATALOG+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $XMLCATALOG in +@@ -32844,14 +25056,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ 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_XMLCATALOG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_XMLCATALOG" && ac_cv_path_XMLCATALOG="no" +@@ -32860,10 +25072,10 @@ + fi + XMLCATALOG=$ac_cv_path_XMLCATALOG + if test -n "$XMLCATALOG"; then +- { $as_echo "$as_me:$LINENO: result: $XMLCATALOG" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLCATALOG" >&5 + $as_echo "$XMLCATALOG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -32879,44 +25091,42 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for DocBook XML DTD V4.1.2 in XML catalog" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook XML DTD V4.1.2 in XML catalog" >&5 + $as_echo_n "checking for DocBook XML DTD V4.1.2 in XML catalog... " >&6; } + if $jh_found_xmlcatalog && \ +- { ($as_echo "$as_me:$LINENO: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"-//OASIS//DTD DocBook XML V4.1.2//EN\" >&2") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"-//OASIS//DTD DocBook XML V4.1.2//EN\" >&2"; } >&5 + ($XMLCATALOG --noout "$XML_CATALOG_FILE" "-//OASIS//DTD DocBook XML V4.1.2//EN" >&2) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- { $as_echo "$as_me:$LINENO: result: found" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 + $as_echo "found" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: not found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 + $as_echo "not found" >&6; } + enable_man=no + fi + + +- { $as_echo "$as_me:$LINENO: checking for DocBook XSL Stylesheets in XML catalog" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook XSL Stylesheets in XML catalog" >&5 + $as_echo_n "checking for DocBook XSL Stylesheets in XML catalog... " >&6; } + if $jh_found_xmlcatalog && \ +- { ($as_echo "$as_me:$LINENO: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl\" >&2") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl\" >&2"; } >&5 + ($XMLCATALOG --noout "$XML_CATALOG_FILE" "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl" >&2) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- { $as_echo "$as_me:$LINENO: result: found" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 + $as_echo "found" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: not found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 + $as_echo "not found" >&6; } + enable_man=no + fi + + fi + +- +- +-if test x$enable_man != xno; then ++ if test x$enable_man != xno; then + ENABLE_MAN_TRUE= + ENABLE_MAN_FALSE='#' + else +@@ -32963,13 +25173,13 @@ + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 + $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( +- *) $as_unset $ac_var ;; ++ *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done +@@ -32977,8 +25187,8 @@ + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) +- # `set' does not quote correctly, so add quotes (double-quote +- # substitution turns \\\\ into \\, and sed turns \\ into \). ++ # `set' does not quote correctly, so add quotes: double-quote ++ # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" +@@ -33001,11 +25211,11 @@ + if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && +- { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 ++ { $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 + else +- { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 ++ { $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;} + fi + fi +@@ -33025,554 +25235,347 @@ + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. +- ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" +- ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' ++ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" ++ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' + done + LIBOBJS=$ac_libobjs + + LTLIBOBJS=$ac_ltlibobjs + + ++ if test -n "$EXEEXT"; then ++ am__EXEEXT_TRUE= ++ am__EXEEXT_FALSE='#' ++else ++ am__EXEEXT_TRUE='#' ++ am__EXEEXT_FALSE= ++fi ++ + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"AMDEP\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"am__fastdepCC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 ++fi ++if test -z "${ENABLE_STATIC_TRUE}" && test -z "${ENABLE_STATIC_FALSE}"; then ++ as_fn_error "conditional \"ENABLE_STATIC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"am__fastdepCXX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_CXX_TRUE}" && test -z "${HAVE_CXX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_CXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_CXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_CXX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_OBJC_TRUE}" && test -z "${HAVE_OBJC_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_OBJC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_OBJC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_OBJC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"am__fastdepCXX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 ++fi ++if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then ++ as_fn_error "conditional \"am__fastdepCCAS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"MAINTAINER_MODE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${PLATFORM_WIN32_TRUE}" && test -z "${PLATFORM_WIN32_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"PLATFORM_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"PLATFORM_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"PLATFORM_WIN32\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${OS_WIN32_TRUE}" && test -z "${OS_WIN32_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"OS_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"OS_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"OS_WIN32\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${OS_UNIX_TRUE}" && test -z "${OS_UNIX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"OS_UNIX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"OS_UNIX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"OS_UNIX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${OS_LINUX_TRUE}" && test -z "${OS_LINUX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"OS_LINUX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"OS_LINUX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"OS_LINUX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${MS_LIB_AVAILABLE_TRUE}" && test -z "${MS_LIB_AVAILABLE_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"MS_LIB_AVAILABLE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"MS_LIB_AVAILABLE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"MS_LIB_AVAILABLE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 ++fi ++if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then ++ as_fn_error "conditional \"am__fastdepCC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${DISABLE_EXPLICIT_DEPS_TRUE}" && test -z "${DISABLE_EXPLICIT_DEPS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"DISABLE_EXPLICIT_DEPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"DISABLE_EXPLICIT_DEPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"DISABLE_EXPLICIT_DEPS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_GDIPLUS_LOADERS_TRUE}" && test -z "${BUILD_GDIPLUS_LOADERS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"BUILD_GDIPLUS_LOADERS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"BUILD_GDIPLUS_LOADERS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"BUILD_GDIPLUS_LOADERS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_DYNAMIC_MODULES_TRUE}" && test -z "${BUILD_DYNAMIC_MODULES_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"BUILD_DYNAMIC_MODULES\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"BUILD_DYNAMIC_MODULES\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"BUILD_DYNAMIC_MODULES\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_PNG_TRUE}" && test -z "${INCLUDE_PNG_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_PNG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_PNG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_PNG\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_BMP_TRUE}" && test -z "${INCLUDE_BMP_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_BMP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_BMP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_BMP\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_WBMP_TRUE}" && test -z "${INCLUDE_WBMP_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_WBMP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_WBMP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_WBMP\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_GIF_TRUE}" && test -z "${INCLUDE_GIF_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_GIF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_GIF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_GIF\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_ICO_TRUE}" && test -z "${INCLUDE_ICO_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_ICO\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_ICO\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_ICO\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_ANI_TRUE}" && test -z "${INCLUDE_ANI_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_ANI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_ANI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_ANI\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_JPEG_TRUE}" && test -z "${INCLUDE_JPEG_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_JPEG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_JPEG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_JPEG\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_PNM_TRUE}" && test -z "${INCLUDE_PNM_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_PNM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_PNM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_PNM\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_RAS_TRUE}" && test -z "${INCLUDE_RAS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_RAS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_RAS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_RAS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_TIFF_TRUE}" && test -z "${INCLUDE_TIFF_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_TIFF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_TIFF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_TIFF\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_XPM_TRUE}" && test -z "${INCLUDE_XPM_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_XPM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_XPM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_XPM\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_XBM_TRUE}" && test -z "${INCLUDE_XBM_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_XBM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_XBM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_XBM\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_TGA_TRUE}" && test -z "${INCLUDE_TGA_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_TGA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_TGA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_TGA\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_PCX_TRUE}" && test -z "${INCLUDE_PCX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_PCX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_PCX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_PCX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_ICNS_TRUE}" && test -z "${INCLUDE_ICNS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_ICNS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_ICNS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_ICNS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_JASPER_TRUE}" && test -z "${INCLUDE_JASPER_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_JASPER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_JASPER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_JASPER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_GDIPLUS_TRUE}" && test -z "${INCLUDE_GDIPLUS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_GDIPLUS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_GDIPLUS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_GDIPLUS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_INCLUDED_IMMMODULES_TRUE}" && test -z "${HAVE_INCLUDED_IMMMODULES_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_INCLUDED_IMMMODULES\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_INCLUDED_IMMMODULES\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_INCLUDED_IMMMODULES\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_AM_ET_TRUE}" && test -z "${INCLUDE_IM_AM_ET_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_AM_ET\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_AM_ET\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_AM_ET\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_CEDILLA_TRUE}" && test -z "${INCLUDE_IM_CEDILLA_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_CEDILLA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_CEDILLA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_CEDILLA\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE}" && test -z "${INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_CYRILLIC_TRANSLIT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_CYRILLIC_TRANSLIT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_CYRILLIC_TRANSLIT\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_IME_TRUE}" && test -z "${INCLUDE_IM_IME_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_IME\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_IME\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_IME\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_INUKTITUT_TRUE}" && test -z "${INCLUDE_IM_INUKTITUT_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_INUKTITUT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_INUKTITUT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_INUKTITUT\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_IPA_TRUE}" && test -z "${INCLUDE_IM_IPA_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_IPA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_IPA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_IPA\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_MULTIPRESS_TRUE}" && test -z "${INCLUDE_IM_MULTIPRESS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_MULTIPRESS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_MULTIPRESS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_MULTIPRESS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_THAI_TRUE}" && test -z "${INCLUDE_IM_THAI_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_THAI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_THAI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_THAI\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_TI_ER_TRUE}" && test -z "${INCLUDE_IM_TI_ER_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_TI_ER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_TI_ER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_TI_ER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_TI_ET_TRUE}" && test -z "${INCLUDE_IM_TI_ET_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_TI_ET\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_TI_ET\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_TI_ET\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_VIQR_TRUE}" && test -z "${INCLUDE_IM_VIQR_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_VIQR\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_VIQR\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_VIQR\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${INCLUDE_IM_XIM_TRUE}" && test -z "${INCLUDE_IM_XIM_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"INCLUDE_IM_XIM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"INCLUDE_IM_XIM\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"INCLUDE_IM_XIM\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_TIFF_TRUE}" && test -z "${HAVE_TIFF_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_TIFF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_TIFF\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_TIFF\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_PNG_TRUE}" && test -z "${HAVE_PNG_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_PNG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_PNG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_PNG\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_JPEG_TRUE}" && test -z "${HAVE_JPEG_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_JPEG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_JPEG\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_JPEG\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_JASPER_TRUE}" && test -z "${HAVE_JASPER_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_JASPER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_JASPER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_JASPER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_MEDIALIB_TRUE}" && test -z "${USE_MEDIALIB_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_MEDIALIB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_MEDIALIB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_MEDIALIB\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_MEDIALIB25_TRUE}" && test -z "${USE_MEDIALIB25_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_MEDIALIB25\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_MEDIALIB25\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_MEDIALIB25\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_MMX_TRUE}" && test -z "${USE_MMX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_MMX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_MMX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_MMX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${CROSS_COMPILING_TRUE}" && test -z "${CROSS_COMPILING_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"CROSS_COMPILING\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"CROSS_COMPILING\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"CROSS_COMPILING\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_X11R6_TRUE}" && test -z "${HAVE_X11R6_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_X11R6\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_X11R6\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_X11R6\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${XINPUT_XFREE_TRUE}" && test -z "${XINPUT_XFREE_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"XINPUT_XFREE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"XINPUT_XFREE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"XINPUT_XFREE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_X11_TRUE}" && test -z "${USE_X11_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_X11\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_X11\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_X11\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${XINPUT_XFREE_TRUE}" && test -z "${XINPUT_XFREE_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"XINPUT_XFREE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"XINPUT_XFREE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"XINPUT_XFREE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_X11_TRUE}" && test -z "${USE_X11_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_X11\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_X11\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_X11\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_X11R6_TRUE}" && test -z "${HAVE_X11R6_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_X11R6\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_X11R6\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_X11R6\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_WIN32_TRUE}" && test -z "${USE_WIN32_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_WIN32\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_WIN32_TRUE}" && test -z "${USE_WIN32_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_WIN32\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_QUARTZ_TRUE}" && test -z "${USE_QUARTZ_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_QUARTZ\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_QUARTZ\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_QUARTZ\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_QUARTZ_TRUE}" && test -z "${USE_QUARTZ_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_QUARTZ\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_QUARTZ\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_QUARTZ\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_DIRECTFB_TRUE}" && test -z "${USE_DIRECTFB_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_DIRECTFB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_DIRECTFB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_DIRECTFB\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_DIRECTFB_TRUE}" && test -z "${USE_DIRECTFB_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"USE_DIRECTFB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"USE_DIRECTFB\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"USE_DIRECTFB\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_CUPS_TRUE}" && test -z "${HAVE_CUPS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_CUPS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_CUPS_TRUE}" && test -z "${HAVE_CUPS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_CUPS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_CUPS_TRUE}" && test -z "${HAVE_CUPS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_CUPS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_PAPI_TRUE}" && test -z "${HAVE_PAPI_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_PAPI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_PAPI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_PAPI\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_PAPI_TRUE}" && test -z "${HAVE_PAPI_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_PAPI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_PAPI\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_PAPI\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_PAPI_CUPS_TRUE}" && test -z "${HAVE_PAPI_CUPS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_PAPI_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_PAPI_CUPS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_PAPI_CUPS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${TEST_PRINT_BACKEND_TRUE}" && test -z "${TEST_PRINT_BACKEND_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"TEST_PRINT_BACKEND\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"TEST_PRINT_BACKEND\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"TEST_PRINT_BACKEND\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_GTK_DOC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"ENABLE_GTK_DOC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"ENABLE_GTK_DOC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_DOCBOOK_TRUE}" && test -z "${HAVE_DOCBOOK_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_DOCBOOK\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_DOCBOOK\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"HAVE_DOCBOOK\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${ENABLE_MAN_TRUE}" && test -z "${ENABLE_MAN_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_MAN\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"ENABLE_MAN\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "conditional \"ENABLE_MAN\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + + : ${CONFIG_STATUS=./config.status} + ac_write_fail=0 + ac_clean_files_save=$ac_clean_files + ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 + $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++as_write_fail=0 ++cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 + #! $SHELL + # Generated by $as_me. + # Run this file to recreate the current configuration. +@@ -33582,17 +25585,18 @@ + debug=false + ac_cs_recheck=false + ac_cs_silent=false +-SHELL=\${CONFIG_SHELL-$SHELL} +-_ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++SHELL=\${CONFIG_SHELL-$SHELL} ++export SHELL ++_ASEOF ++cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ++## -------------------- ## ++## 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 ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +@@ -33600,23 +25604,15 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- + as_nl=' + ' + export as_nl +@@ -33624,7 +25620,13 @@ + as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' + else +@@ -33635,7 +25637,7 @@ + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; +- case $arg in ++ case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +@@ -33658,13 +25660,6 @@ + } + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- + + # IFS + # We need space, tab and new line, in precisely that order. Quoting is +@@ -33674,15 +25669,15 @@ + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -33694,12 +25689,16 @@ + fi + if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' +@@ -33711,7 +25710,89 @@ + LANGUAGE=C + export LANGUAGE + +-# Required to use basename. ++# CDPATH. ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH ++ ++ ++# as_fn_error ERROR [LINENO LOG_FD] ++# --------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with status $?, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$?; test $as_status -eq 0 && as_status=1 ++ if test "$3"; then ++ as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 ++ fi ++ $as_echo "$as_me: error: $1" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith ++ ++ + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -33725,8 +25806,12 @@ + as_basename=false + fi + ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi + +-# Name of the executable. + as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ +@@ -33746,76 +25831,25 @@ + } + s/.*/./; q'` + +-# CDPATH. +-$as_unset CDPATH +- +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) +- sed -n ' +- p +- /[$]LINENO/= +- ' <$as_myself | +- sed ' +- s/[$]LINENO.*/&-/ +- t lineno +- b +- :lineno +- N +- :loop +- s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ +- t loop +- s/-\n.*// +- ' >$as_me.lineno && +- chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensitive to this). +- . "./$as_me.lineno" +- # Exit status is that of the last command. +- exit +-} +- +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi + + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then +@@ -33844,8 +25878,56 @@ + rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file + rmdir conf$$.dir 2>/dev/null + ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ ++ ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" ++ ++ ++} # as_fn_mkdir_p + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +@@ -33864,10 +25946,10 @@ + if test -d "$1"; then + test -d "$1/."; + else +- case $1 in ++ case $1 in #( + -*)set "./$1";; + esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +@@ -33882,13 +25964,19 @@ + + + exec 6>&1 ++## ----------------------------------- ## ++## Main body of $CONFIG_STATUS script. ## ++## ----------------------------------- ## ++_ASEOF ++test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +-# Save the log message, to keep $[0] and so on meaningful, and to ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++# Save the log message, to keep $0 and so on meaningful, and to + # report actual input values of CONFIG_FILES etc. instead of their + # values after options handling. + ac_log=" + This file was extended by gtk+ $as_me 2.17.10, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++generated by GNU Autoconf 2.64. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -33920,10 +26008,11 @@ + + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + ac_cs_usage="\ +-\`$as_me' instantiates files from templates according to the +-current configuration. ++\`$as_me' instantiates files and other configuration actions ++from templates according to the current configuration. Unless the files ++and actions are specified as TAGs, all are instantiated by default. + +-Usage: $0 [OPTION]... [FILE]... ++Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit +@@ -33945,22 +26034,23 @@ + Configuration commands: + $config_commands + +-Report bugs to <bug-autoconf@gnu.org>." ++Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B>." + + _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_cs_version="\\ + gtk+ config.status 2.17.10 +-configured by $0, generated by GNU Autoconf 2.63, ++configured by $0, generated by GNU Autoconf 2.64, + with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + +-Copyright (C) 2008 Free Software Foundation, Inc. ++Copyright (C) 2009 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it." + + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' ++MKDIR_P='$MKDIR_P' + AWK='$AWK' + test -n "\$AWK" || AWK=awk + _ACEOF +@@ -33996,20 +26086,19 @@ + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac +- CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" ++ as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac +- CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" ++ as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header +- { $as_echo "$as_me: error: ambiguous option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; };; ++ as_fn_error "ambiguous option: \`$1' ++Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ +@@ -34017,11 +26106,10 @@ + ac_cs_silent=: ;; + + # This is an error. +- -*) { $as_echo "$as_me: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ;; ++ -*) as_fn_error "unrecognized option: \`$1' ++Try \`$0 --help' for more information." ;; + +- *) ac_config_targets="$ac_config_targets $1" ++ *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac +@@ -34536,9 +26624,7 @@ + "contrib/gdk-pixbuf-xlib/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/gdk-pixbuf-xlib/Makefile" ;; + "contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.0.pc") CONFIG_FILES="$CONFIG_FILES contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.0.pc" ;; + +- *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} +- { (exit 1); exit 1; }; };; ++ *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac + done + +@@ -34565,7 +26651,7 @@ + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status + ' 0 +- trap '{ (exit 1); exit 1; }' 1 2 13 15 ++ trap 'as_fn_exit 1' 1 2 13 15 + } + # Create a (secure) tmp directory for tmp files. + +@@ -34576,11 +26662,7 @@ + { + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +-} || +-{ +- $as_echo "$as_me: cannot create a temporary directory in ." >&2 +- { (exit 1); exit 1; } +-} ++} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 + + # Set up the scripts for CONFIG_FILES section. + # No need to generate them if there are no CONFIG_FILES. +@@ -34588,10 +26670,16 @@ + if test -n "$CONFIG_FILES"; then + + +-ac_cr=' ' ++ac_cr=`echo X | tr X '\015'` ++# On cygwin, bash can eat \r inside `` if the user requested igncr. ++# But we know of no other shell where ac_cr would be empty at this ++# point, so we can use a bashism as a fallback. ++if test "x$ac_cr" = x; then ++ eval ac_cr=\$\'\\r\' ++fi + ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` + if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then +- ac_cs_awk_cr='\\r' ++ ac_cs_awk_cr='\r' + else + ac_cs_awk_cr=$ac_cr + fi +@@ -34605,24 +26693,18 @@ + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" + } >conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +@@ -34711,9 +26793,7 @@ + else + cat + fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ +- || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 +-$as_echo "$as_me: error: could not setup config files machinery" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error "could not setup config files machinery" "$LINENO" 5 + _ACEOF + + # VPATH may cause trouble with some makes, so we remove $(srcdir), +@@ -34754,9 +26834,7 @@ + if test -z "$ac_t"; then + break + elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +@@ -34841,9 +26919,7 @@ + _ACAWK + _ACEOF + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +- { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 +-$as_echo "$as_me: error: could not setup config headers machinery" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "could not setup config headers machinery" "$LINENO" 5 + fi # test -n "$CONFIG_HEADERS" + + +@@ -34856,9 +26932,7 @@ + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 +-$as_echo "$as_me: error: invalid tag $ac_tag" >&2;} +- { (exit 1); exit 1; }; };; ++ :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac +@@ -34886,12 +26960,10 @@ + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +-$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} +- { (exit 1); exit 1; }; };; ++ as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac +- ac_file_inputs="$ac_file_inputs '$ac_f'" ++ as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't +@@ -34902,7 +26974,7 @@ + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" +- { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 + $as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. +@@ -34915,9 +26987,7 @@ + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ;; ++ || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac +@@ -34945,47 +27015,7 @@ + q + } + s/.*/./; q'` +- { as_dir="$ac_dir" +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_dir" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- test -d "$as_dir" && break +- done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } ++ as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + + case "$ac_dir" in +@@ -35031,13 +27061,17 @@ + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac ++ ac_MKDIR_P=$MKDIR_P ++ case $MKDIR_P in ++ [\\/$]* | ?:[\\/]* ) ;; ++ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; ++ esac + _ACEOF + + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. + ac_datarootdir_hack=; ac_datarootdir_seen= +- + ac_sed_dataroot=' + /datarootdir/ { + p +@@ -35047,12 +27081,11 @@ + /@docdir@/p + /@infodir@/p + /@localedir@/p +-/@mandir@/p +-' ++/@mandir@/p' + case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in + *datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 + $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +@@ -35062,7 +27095,7 @@ + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g +- s&\\\${datarootdir}&$datarootdir&g' ;; ++ s&\\\${datarootdir}&$datarootdir&g' ;; + esac + _ACEOF + +@@ -35087,17 +27120,16 @@ + s&@abs_builddir@&$ac_abs_builddir&;t t + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t ++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_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || 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"; } && +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++ { $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;} +@@ -35107,9 +27139,7 @@ + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # +@@ -35120,42 +27150,37 @@ + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then +- { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 ++ { $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" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || 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" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 +-$as_echo "$as_me: error: could not create -" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error "could not create -" "$LINENO" 5 + fi + # Compute "$ac_file"'s index in $config_headers. ++_am_arg="$ac_file" + _am_stamp_count=1 + for _am_header in $config_headers :; do + case $_am_header in +- "$ac_file" | "$ac_file":* ) ++ $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac + done +-echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" || +-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$ac_file" : 'X\(//\)[^/]' \| \ +- X"$ac_file" : 'X\(//\)$' \| \ +- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$ac_file" | ++echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || ++$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$_am_arg" : 'X\(//\)[^/]' \| \ ++ X"$_am_arg" : 'X\(//\)$' \| \ ++ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -35175,24 +27200,35 @@ + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + +- :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 ++ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 + $as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in +- "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do +- # Strip MF so we end up with the name of the file. +- mf=`echo "$mf" | sed -e 's/:.*$//'` +- # Check whether this is an Automake generated Makefile or not. +- # We used to match only the files named `Makefile.in', but +- # some people rename them; so instead we look at the file content. +- # Grep'ing the first line is not enough: some people post-process +- # each Makefile.in and add a new line on top of each file to say so. +- # So let's grep whole file. +- if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then +- dirpart=`$as_dirname -- "$mf" || ++ "depfiles":C) test x"$AMDEP_TRUE" != x"" || { ++ # Autoconf 2.62 quotes --file arguments for eval, but not when files ++ # are listed without --file. Let's play safe and only enable the eval ++ # if we detect the quoting. ++ case $CONFIG_FILES in ++ *\'*) eval set x "$CONFIG_FILES" ;; ++ *) set x $CONFIG_FILES ;; ++ esac ++ shift ++ for mf ++ do ++ # Strip MF so we end up with the name of the file. ++ mf=`echo "$mf" | sed -e 's/:.*$//'` ++ # Check whether this is an Automake generated Makefile or not. ++ # We used to match only the files named `Makefile.in', but ++ # some people rename them; so instead we look at the file content. ++ # Grep'ing the first line is not enough: some people post-process ++ # each Makefile.in and add a new line on top of each file to say so. ++ # Grep'ing the whole file is not good either: AIX grep has a line ++ # limit of 2048, but all sed's we know have understand at least 4000. ++ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then ++ dirpart=`$as_dirname -- "$mf" || + $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ +@@ -35215,34 +27251,28 @@ + q + } + s/.*/./; q'` +- else +- continue +- fi +- grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue +- # Extract the definition of DEP_FILES from the Makefile without +- # running `make'. +- DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` +- test -z "$DEPDIR" && continue +- # When using ansi2knr, U may be empty or an underscore; expand it +- U=`sed -n -e '/^U = / s///p' < "$mf"` +- test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" +- # We invoke sed twice because it is the simplest approach to +- # changing $(DEPDIR) to its actual value in the expansion. +- for file in `sed -n -e ' +- /^DEP_FILES = .*\\\\$/ { +- s/^DEP_FILES = // +- :loop +- s/\\\\$// +- p +- n +- /\\\\$/ b loop +- p +- } +- /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ +- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do +- # Make sure the directory exists. +- test -f "$dirpart/$file" && continue +- fdir=`$as_dirname -- "$file" || ++ else ++ continue ++ fi ++ # Extract the definition of DEPDIR, am__include, and am__quote ++ # from the Makefile without running `make'. ++ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` ++ test -z "$DEPDIR" && continue ++ am__include=`sed -n 's/^am__include = //p' < "$mf"` ++ test -z "am__include" && continue ++ am__quote=`sed -n 's/^am__quote = //p' < "$mf"` ++ # When using ansi2knr, U may be empty or an underscore; expand it ++ U=`sed -n 's/^U = //p' < "$mf"` ++ # Find all dependency output files, they are included files with ++ # $(DEPDIR) in their names. We invoke sed twice because it is the ++ # simplest approach to changing $(DEPDIR) to its actual value in the ++ # expansion. ++ for file in `sed -n " ++ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ ++ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do ++ # Make sure the directory exists. ++ test -f "$dirpart/$file" && continue ++ fdir=`$as_dirname -- "$file" || + $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ +@@ -35265,51 +27295,12 @@ + q + } + s/.*/./; q'` +- { as_dir=$dirpart/$fdir +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_dir" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- test -d "$as_dir" && break ++ as_dir=$dirpart/$fdir; as_fn_mkdir_p ++ # echo "creating $dirpart/$file" ++ echo '# dummy' > "$dirpart/$file" + done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } +- # echo "creating $dirpart/$file" +- echo '# dummy' > "$dirpart/$file" + done +-done ++} + ;; + "libtool":C) + +@@ -36167,7 +28158,7 @@ + + + if cmp -s $outfile gdk/gdkconfig.h; then +- { $as_echo "$as_me:$LINENO: gdk/gdkconfig.h is unchanged" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: gdk/gdkconfig.h is unchanged" >&5 + $as_echo "$as_me: gdk/gdkconfig.h is unchanged" >&6;} + rm -f $outfile + else +@@ -36179,15 +28170,12 @@ + done # for ac_tag + + +-{ (exit 0); exit 0; } ++as_fn_exit 0 + _ACEOF +-chmod +x $CONFIG_STATUS + ac_clean_files=$ac_clean_files_save + + test $ac_write_fail = 0 || +- { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + + # configure is writing to config.log, and then calls config.status. +@@ -36208,10 +28196,10 @@ + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. +- $ac_cs_success || { (exit 1); exit 1; } ++ $ac_cs_success || as_fn_exit $? + fi + if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then +- { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 + $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi + +diff -Nur gtk+2.0-2.17.10/contrib/gdk-pixbuf-xlib/Makefile.in gtk+2.0-2.17.10.ubuntu/contrib/gdk-pixbuf-xlib/Makefile.in +--- gtk+2.0-2.17.10/contrib/gdk-pixbuf-xlib/Makefile.in 2009-09-01 06:02:54.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/contrib/gdk-pixbuf-xlib/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,14 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +36,97 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgdk_pixbuf_xlibinclude_HEADERS) \ ++ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/gdk-pixbuf-xlib-2.0.pc.in \ ++ $(top_srcdir)/Makefile.decl ChangeLog ++subdir = contrib/gdk-pixbuf-xlib ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = gdk-pixbuf-xlib-2.0.pc ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ ++ "$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)" ++LTLIBRARIES = $(lib_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libgdk_pixbuf_xlib_2_0_la_DEPENDENCIES = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(am__DEPENDENCIES_1) ++am_libgdk_pixbuf_xlib_2_0_la_OBJECTS = gdk-pixbuf-xlib.lo \ ++ gdk-pixbuf-xlib-render.lo gdk-pixbuf-xlib-drawable.lo \ ++ gdk-pixbuf-xlibrgb.lo ++libgdk_pixbuf_xlib_2_0_la_OBJECTS = \ ++ $(am_libgdk_pixbuf_xlib_2_0_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgdk_pixbuf_xlib_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_pixbuf_xlib_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_pixbuf_xlib_2_0_la_SOURCES) ++DIST_SOURCES = $(libgdk_pixbuf_xlib_2_0_la_SOURCES) ++DATA = $(pkgconfig_DATA) ++HEADERS = $(libgdk_pixbuf_xlibinclude_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +136,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +143,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +165,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +172,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +197,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +216,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +226,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +257,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +273,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +290,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +302,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +344,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +353,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,29 +389,23 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + lib_LTLIBRARIES = libgdk_pixbuf_xlib-2.0.la +- + INCLUDES = \ + -I$(top_srcdir) -I$(top_builddir) \ + -I$(top_srcdir)/gdk-pixbuf \ + -I$(top_srcdir)/contrib \ + $(GDK_PIXBUF_XLIB_DEP_CFLAGS) + +- + libgdk_pixbuf_xlib_2_0_la_LDFLAGS = \ + -export-dynamic \ + $(no_undefined) \ + -version-info $(LT_VERSION_INFO) + +- + libgdk_pixbuf_xlib_2_0_la_LIBADD = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(GDK_PIXBUF_XLIB_DEP_LIBS) + +- + libgdk_pixbuf_xlib_2_0_la_SOURCES = \ + gdk-pixbuf-xlib-private.h \ + gdk-pixbuf-xlib.c \ +@@ -448,99 +413,85 @@ + gdk-pixbuf-xlib-drawable.c \ + gdk-pixbuf-xlibrgb.c + +- + libgdk_pixbuf_xlibincludedir = $(includedir)/gtk-2.0/gdk-pixbuf-xlib +- + libgdk_pixbuf_xlibinclude_HEADERS = \ + gdk-pixbuf-xlib.h \ + gdk-pixbuf-xlibrgb.h + +- + pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = gdk-pixbuf-xlib-2.0.pc +-subdir = contrib/gdk-pixbuf-xlib +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = gdk-pixbuf-xlib-2.0.pc +-LTLIBRARIES = $(lib_LTLIBRARIES) +- +-libgdk_pixbuf_xlib_2_0_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libgdk_pixbuf_xlib_2_0_la_OBJECTS = gdk-pixbuf-xlib.lo \ +- gdk-pixbuf-xlib-render.lo gdk-pixbuf-xlib-drawable.lo \ +- gdk-pixbuf-xlibrgb.lo +-libgdk_pixbuf_xlib_2_0_la_OBJECTS = \ +- $(am_libgdk_pixbuf_xlib_2_0_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gdk-pixbuf-xlib-drawable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-xlib-render.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-xlib.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-xlibrgb.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgdk_pixbuf_xlib_2_0_la_SOURCES) +-DATA = $(pkgconfig_DATA) +- +-HEADERS = $(libgdk_pixbuf_xlibinclude_HEADERS) +- +-DIST_COMMON = $(libgdk_pixbuf_xlibinclude_HEADERS) \ +- $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ChangeLog \ +- Makefile.am gdk-pixbuf-xlib-2.0.pc.in +-SOURCES = $(libgdk_pixbuf_xlib_2_0_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu contrib/gdk-pixbuf-xlib/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-gdk-pixbuf-xlib-2.0.pc: $(top_builddir)/config.status gdk-pixbuf-xlib-2.0.pc.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/gdk-pixbuf-xlib/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu contrib/gdk-pixbuf-xlib/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++gdk-pixbuf-xlib-2.0.pc: $(top_builddir)/config.status $(srcdir)/gdk-pixbuf-xlib-2.0.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-libLTLIBRARIES_INSTALL = $(INSTALL) + install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libdir) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ ++ } + + uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + + clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk_pixbuf_xlib-2.0.la: $(libgdk_pixbuf_xlib_2_0_la_OBJECTS) $(libgdk_pixbuf_xlib_2_0_la_DEPENDENCIES) +- $(LINK) -rpath $(libdir) $(libgdk_pixbuf_xlib_2_0_la_LDFLAGS) $(libgdk_pixbuf_xlib_2_0_la_OBJECTS) $(libgdk_pixbuf_xlib_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_pixbuf_xlib_2_0_la_LINK) -rpath $(libdir) $(libgdk_pixbuf_xlib_2_0_la_OBJECTS) $(libgdk_pixbuf_xlib_2_0_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -551,167 +502,154 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdk-pixbuf-xlibrgb.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-pkgconfigDATA_INSTALL = $(INSTALL_DATA) + install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir) +- @list='$(pkgconfig_DATA)'; for p in $$list; do \ ++ test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" ++ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f"; \ +- $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + + uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) +- @list='$(pkgconfig_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(pkgconfigdir)/$$f"; \ +- rm -f $(DESTDIR)$(pkgconfigdir)/$$f; \ +- done +-libgdk_pixbuf_xlibincludeHEADERS_INSTALL = $(INSTALL_HEADER) ++ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files + install-libgdk_pixbuf_xlibincludeHEADERS: $(libgdk_pixbuf_xlibinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdk_pixbuf_xlibincludedir) +- @list='$(libgdk_pixbuf_xlibinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdk_pixbuf_xlibincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)" ++ @list='$(libgdk_pixbuf_xlibinclude_HEADERS)'; test -n "$(libgdk_pixbuf_xlibincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdk_pixbuf_xlibincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdk_pixbuf_xlibincludedir)/$$f"; \ +- $(libgdk_pixbuf_xlibincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdk_pixbuf_xlibincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)" || exit $$?; \ + done + + uninstall-libgdk_pixbuf_xlibincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdk_pixbuf_xlibinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdk_pixbuf_xlibincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdk_pixbuf_xlibincludedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(libgdk_pixbuf_xlibinclude_HEADERS)'; test -n "$(libgdk_pixbuf_xlibincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -719,9 +657,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(pkgconfigdir) $(DESTDIR)$(libgdk_pixbuf_xlibincludedir) ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libgdk_pixbuf_xlibincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -741,7 +680,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -755,12 +695,16 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: +@@ -768,12 +712,30 @@ + install-data-am: install-libgdk_pixbuf_xlibincludeHEADERS \ + install-pkgconfigDATA + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: install-libLTLIBRARIES + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -794,23 +756,27 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ ++uninstall-am: uninstall-libLTLIBRARIES \ + uninstall-libgdk_pixbuf_xlibincludeHEADERS \ + uninstall-pkgconfigDATA + ++.MAKE: check-am install-am install-strip ++ + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libLTLIBRARIES clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am \ +- install-libLTLIBRARIES install-libgdk_pixbuf_xlibincludeHEADERS \ +- install-man install-pkgconfigDATA install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-info-am \ +- uninstall-libLTLIBRARIES \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-libLTLIBRARIES \ ++ install-libgdk_pixbuf_xlibincludeHEADERS install-man \ ++ install-pdf install-pdf-am install-pkgconfigDATA install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-libLTLIBRARIES \ + uninstall-libgdk_pixbuf_xlibincludeHEADERS \ + uninstall-pkgconfigDATA + +@@ -869,6 +835,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/contrib/Makefile.in gtk+2.0-2.17.10.ubuntu/contrib/Makefile.in +--- gtk+2.0-2.17.10/contrib/Makefile.in 2009-09-01 06:02:54.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/contrib/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,12 +33,73 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl + @USE_X11_TRUE@am__append_1 = gdk-pixbuf-xlib ++subdir = contrib ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = gdk-pixbuf-xlib ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -52,10 +109,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -63,13 +116,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -86,8 +138,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -95,10 +145,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -124,6 +170,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -142,8 +189,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -154,95 +199,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -266,24 +230,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -291,13 +246,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -309,28 +263,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -339,22 +275,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -378,6 +317,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -386,9 +326,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -419,31 +362,40 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = $(am__append_1) +-subdir = contrib +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = gdk-pixbuf-xlib + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu contrib/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu contrib/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -451,10 +403,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -462,7 +410,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -473,16 +427,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -502,124 +461,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -630,7 +602,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -650,7 +621,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -661,25 +633,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -698,26 +691,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -774,6 +765,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/demos/gtk-demo/Makefile.in gtk+2.0-2.17.10.ubuntu/demos/gtk-demo/Makefile.in +--- gtk+2.0-2.17.10/demos/gtk-demo/Makefile.in 2009-09-01 06:02:54.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/demos/gtk-demo/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,102 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/geninclude.pl.in $(top_srcdir)/Makefile.decl ++bin_PROGRAMS = gtk-demo$(EXEEXT) ++subdir = demos/gtk-demo ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = geninclude.pl ++CONFIG_CLEAN_VPATH_FILES = ++am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(democodedir)" ++PROGRAMS = $(bin_PROGRAMS) ++am__objects_1 = appwindow.$(OBJEXT) assistant.$(OBJEXT) \ ++ builder.$(OBJEXT) button_box.$(OBJEXT) changedisplay.$(OBJEXT) \ ++ clipboard.$(OBJEXT) colorsel.$(OBJEXT) combobox.$(OBJEXT) \ ++ dialog.$(OBJEXT) drawingarea.$(OBJEXT) \ ++ editable_cells.$(OBJEXT) entry_buffer.$(OBJEXT) \ ++ entry_completion.$(OBJEXT) expander.$(OBJEXT) \ ++ hypertext.$(OBJEXT) iconview.$(OBJEXT) iconview_edit.$(OBJEXT) \ ++ images.$(OBJEXT) infobar.$(OBJEXT) links.$(OBJEXT) \ ++ list_store.$(OBJEXT) menus.$(OBJEXT) \ ++ offscreen_window.$(OBJEXT) offscreen_window2.$(OBJEXT) \ ++ panes.$(OBJEXT) pickers.$(OBJEXT) pixbufs.$(OBJEXT) \ ++ printing.$(OBJEXT) rotated_text.$(OBJEXT) \ ++ search_entry.$(OBJEXT) sizegroup.$(OBJEXT) \ ++ stock_browser.$(OBJEXT) textview.$(OBJEXT) \ ++ textscroll.$(OBJEXT) tree_store.$(OBJEXT) ui_manager.$(OBJEXT) ++am_gtk_demo_OBJECTS = $(am__objects_1) main.$(OBJEXT) ++gtk_demo_OBJECTS = $(am_gtk_demo_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++gtk_demo_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(gtk_demo_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(gtk_demo_SOURCES) ++DIST_SOURCES = $(gtk_demo_SOURCES) ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++DATA = $(democode_DATA) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +140,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +147,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +169,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +176,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +201,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +220,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +230,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +261,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +277,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +294,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +306,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +348,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,17 +357,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- $(IMAGEFILES) \ +- demo.ui +- ++EXTRA_DIST = $(IMAGEFILES) demo.ui + TEST_PROGS = + + ### testing rules +@@ -421,9 +393,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + democodedir = $(datadir)/gtk-2.0/demo +- + demos = \ + appwindow.c \ + assistant.c \ +@@ -462,7 +432,6 @@ + tree_store.c \ + ui_manager.c + +- + INCLUDES = \ + -DDEMOCODEDIR="\"$(democodedir)\"" \ + -I$(top_srcdir) \ +@@ -472,34 +441,26 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- +-bin_PROGRAMS = gtk-demo +- + BUILT_SOURCES = demos.h +- + gtk_demo_SOURCES = \ + $(demos) \ + demo-common.h \ + main.c \ + demos.h + +- + gtk_demo_DEPENDENCIES = $(DEPS) + gtk_demo_LDADD = $(LDADDS) + gtk_demo_LDFLAGS = -export-dynamic +- + IMAGEFILES = alphatest.png \ + apple-red.png \ + background.jpg \ +@@ -515,125 +476,94 @@ + gnu-keys.png \ + gtk-logo-rgb.gif + +- + democode_DATA = $(demos) $(IMAGEFILES) demo.ui +- + DISTCLEANFILES = demos.h +-subdir = demos/gtk-demo +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = geninclude.pl +-bin_PROGRAMS = gtk-demo$(EXEEXT) +-PROGRAMS = $(bin_PROGRAMS) +- +-am__objects_1 = appwindow.$(OBJEXT) assistant.$(OBJEXT) \ +- builder.$(OBJEXT) button_box.$(OBJEXT) changedisplay.$(OBJEXT) \ +- clipboard.$(OBJEXT) colorsel.$(OBJEXT) combobox.$(OBJEXT) \ +- dialog.$(OBJEXT) drawingarea.$(OBJEXT) editable_cells.$(OBJEXT) \ +- entry_buffer.$(OBJEXT) entry_completion.$(OBJEXT) \ +- expander.$(OBJEXT) hypertext.$(OBJEXT) iconview.$(OBJEXT) \ +- iconview_edit.$(OBJEXT) images.$(OBJEXT) infobar.$(OBJEXT) \ +- links.$(OBJEXT) list_store.$(OBJEXT) menus.$(OBJEXT) \ +- offscreen_window.$(OBJEXT) offscreen_window2.$(OBJEXT) \ +- panes.$(OBJEXT) pickers.$(OBJEXT) pixbufs.$(OBJEXT) \ +- printing.$(OBJEXT) rotated_text.$(OBJEXT) \ +- search_entry.$(OBJEXT) sizegroup.$(OBJEXT) \ +- stock_browser.$(OBJEXT) textview.$(OBJEXT) textscroll.$(OBJEXT) \ +- tree_store.$(OBJEXT) ui_manager.$(OBJEXT) +-am_gtk_demo_OBJECTS = $(am__objects_1) main.$(OBJEXT) +-gtk_demo_OBJECTS = $(am_gtk_demo_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/appwindow.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/assistant.Po ./$(DEPDIR)/builder.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/button_box.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/changedisplay.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/clipboard.Po ./$(DEPDIR)/colorsel.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/combobox.Po ./$(DEPDIR)/dialog.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/drawingarea.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/editable_cells.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/entry_buffer.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/entry_completion.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/expander.Po ./$(DEPDIR)/hypertext.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/iconview.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/iconview_edit.Po ./$(DEPDIR)/images.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/infobar.Po ./$(DEPDIR)/links.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/list_store.Po ./$(DEPDIR)/main.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/menus.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/offscreen_window.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/offscreen_window2.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/panes.Po ./$(DEPDIR)/pickers.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbufs.Po ./$(DEPDIR)/printing.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/rotated_text.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/search_entry.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/sizegroup.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/stock_browser.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/textscroll.Po ./$(DEPDIR)/textview.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/tree_store.Po ./$(DEPDIR)/ui_manager.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(gtk_demo_SOURCES) +-DATA = $(democode_DATA) +- +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am geninclude.pl.in +-SOURCES = $(gtk_demo_SOURCES) +- + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu demos/gtk-demo/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-geninclude.pl: $(top_builddir)/config.status geninclude.pl.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu demos/gtk-demo/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu demos/gtk-demo/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++geninclude.pl: $(top_builddir)/config.status $(srcdir)/geninclude.pl.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(bindir) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- if test -f $$p \ +- || test -f $$p1 \ +- ; then \ +- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ +- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ +- else :; fi; \ +- done ++ test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed 's/$(EXEEXT)$$//' | \ ++ while read p p1; do if test -f $$p || test -f $$p1; \ ++ then echo "$$p"; echo "$$p"; else :; fi; \ ++ done | \ ++ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ ++ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ ++ sed 'N;N;N;s,\n, ,g' | \ ++ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ ++ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ ++ if ($$2 == $$4) files[d] = files[d] " " $$1; \ ++ else { print "f", $$3 "/" $$4, $$1; } } \ ++ END { for (d in files) print "f", d, files[d] }' | \ ++ while read type dir files; do \ ++ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ ++ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ ++ } \ ++ ; done + + uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ +- rm -f $(DESTDIR)$(bindir)/$$f; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ files=`for p in $$list; do echo "$$p"; done | \ ++ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ ++ -e 's/$$/$(EXEEXT)/' `; \ ++ test -n "$$list" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(bindir)" && rm -f $$files + + clean-binPROGRAMS: +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + gtk-demo$(EXEEXT): $(gtk_demo_OBJECTS) $(gtk_demo_DEPENDENCIES) + @rm -f gtk-demo$(EXEEXT) +- $(LINK) $(gtk_demo_LDFLAGS) $(gtk_demo_OBJECTS) $(gtk_demo_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(gtk_demo_LINK) $(gtk_demo_OBJECTS) $(gtk_demo_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -677,149 +607,134 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ui_manager.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-democodeDATA_INSTALL = $(INSTALL_DATA) + install-democodeDATA: $(democode_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(democodedir) +- @list='$(democode_DATA)'; for p in $$list; do \ ++ test -z "$(democodedir)" || $(MKDIR_P) "$(DESTDIR)$(democodedir)" ++ @list='$(democode_DATA)'; test -n "$(democodedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(democodeDATA_INSTALL) $$d$$p $(DESTDIR)$(democodedir)/$$f"; \ +- $(democodeDATA_INSTALL) $$d$$p $(DESTDIR)$(democodedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(democodedir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(democodedir)" || exit $$?; \ + done + + uninstall-democodeDATA: + @$(NORMAL_UNINSTALL) +- @list='$(democode_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(democodedir)/$$f"; \ +- rm -f $(DESTDIR)$(democodedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(democode_DATA)'; test -n "$(democodedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(democodedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(democodedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -828,9 +743,10 @@ + check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am + all-am: Makefile $(PROGRAMS) $(DATA) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(democodedir) ++ for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(democodedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am + install-exec: install-exec-am +@@ -851,7 +767,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + + maintainer-clean-generic: +@@ -866,24 +783,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-democodeDATA + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: install-binPROGRAMS + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -904,21 +843,24 @@ + + ps-am: + +-uninstall-am: uninstall-binPROGRAMS uninstall-democodeDATA \ +- uninstall-info-am ++uninstall-am: uninstall-binPROGRAMS uninstall-democodeDATA ++ ++.MAKE: all check check-am install install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-binPROGRAMS install-data install-data-am \ +- install-democodeDATA install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-binPROGRAMS \ +- uninstall-democodeDATA uninstall-info-am ++ distclean-tags distdir dvi dvi-am html html-am info info-am \ ++ install install-am install-binPROGRAMS install-data \ ++ install-data-am install-democodeDATA install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ++ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ++ uninstall-binPROGRAMS uninstall-democodeDATA + + # call as: $(XVFB_START) && someprogram + +@@ -978,6 +920,7 @@ + (here=`pwd` ; cd $(srcdir) && $(PERL) $$here/geninclude.pl $(demos)) > demos.h + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/demos/Makefile.in gtk+2.0-2.17.10.ubuntu/demos/Makefile.in +--- gtk+2.0-2.17.10/demos/Makefile.in 2009-09-01 06:02:54.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/demos/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,12 +34,122 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = testpixbuf-drawable$(EXEEXT) testanimation$(EXEEXT) \ ++ testpixbuf-save$(EXEEXT) testpixbuf-scale$(EXEEXT) \ ++ pixbuf-demo$(EXEEXT) $(am__EXEEXT_1) ++ ++# Need to build test-inline-pixbufs.h for testpixbuf + @HAVE_PNG_TRUE@am__append_1 = testpixbuf ++subdir = demos ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++@HAVE_PNG_TRUE@am__EXEEXT_1 = testpixbuf$(EXEEXT) ++PROGRAMS = $(noinst_PROGRAMS) ++am_pixbuf_demo_OBJECTS = pixbuf-demo.$(OBJEXT) pixbuf-init.$(OBJEXT) ++pixbuf_demo_OBJECTS = $(am_pixbuf_demo_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++am_testanimation_OBJECTS = testanimation.$(OBJEXT) \ ++ pixbuf-init.$(OBJEXT) ++testanimation_OBJECTS = $(am_testanimation_OBJECTS) ++am_testpixbuf_OBJECTS = testpixbuf.$(OBJEXT) pixbuf-init.$(OBJEXT) ++testpixbuf_OBJECTS = $(am_testpixbuf_OBJECTS) ++am_testpixbuf_drawable_OBJECTS = testpixbuf-drawable.$(OBJEXT) \ ++ pixbuf-init.$(OBJEXT) ++testpixbuf_drawable_OBJECTS = $(am_testpixbuf_drawable_OBJECTS) ++am_testpixbuf_save_OBJECTS = testpixbuf-save.$(OBJEXT) ++testpixbuf_save_OBJECTS = $(am_testpixbuf_save_OBJECTS) ++am_testpixbuf_scale_OBJECTS = testpixbuf-scale.$(OBJEXT) \ ++ pixbuf-init.$(OBJEXT) ++testpixbuf_scale_OBJECTS = $(am_testpixbuf_scale_OBJECTS) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(pixbuf_demo_SOURCES) $(testanimation_SOURCES) \ ++ $(testpixbuf_SOURCES) $(testpixbuf_drawable_SOURCES) \ ++ $(testpixbuf_save_SOURCES) $(testpixbuf_scale_SOURCES) ++DIST_SOURCES = $(pixbuf_demo_SOURCES) $(testanimation_SOURCES) \ ++ $(testpixbuf_SOURCES) $(testpixbuf_drawable_SOURCES) \ ++ $(testpixbuf_save_SOURCES) $(testpixbuf_scale_SOURCES) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -52,10 +159,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -63,13 +166,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -86,8 +188,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -95,10 +195,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -124,6 +220,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -142,8 +239,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -154,95 +249,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -266,24 +280,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -291,13 +296,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -309,28 +313,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -339,22 +325,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -378,6 +367,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -386,24 +376,19 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- apple-red.png \ +- background.jpg \ +- gnome-applets.png \ +- gnome-calendar.png \ +- gnome-foot.png \ +- gnome-gimp.png \ +- gnome-gmush.png \ +- gnome-gsame.png \ +- gnu-keys.png +- ++EXTRA_DIST = apple-red.png background.jpg gnome-applets.png \ ++ gnome-calendar.png gnome-foot.png gnome-gimp.png \ ++ gnome-gmush.png gnome-gsame.png gnu-keys.png + TEST_PROGS = + + ### testing rules +@@ -429,9 +414,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = gtk-demo +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ +@@ -440,159 +423,105 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- +-noinst_PROGRAMS = \ +- testpixbuf-drawable \ +- testanimation \ +- testpixbuf-save \ +- testpixbuf-scale \ +- pixbuf-demo\ +-$(am__append_1) + @HAVE_PNG_TRUE@BUILT_SOURCES = test-inline-pixbufs.h +- +-@CROSS_COMPILING_TRUE@pixbuf_csource = $(GDK_PIXBUF_CSOURCE) + @CROSS_COMPILING_FALSE@pixbuf_csource = GDK_PIXBUF_MODULE_FILE=$(top_builddir)/gdk-pixbuf/gdk-pixbuf.loaders $(top_builddir)/gdk-pixbuf/gdk-pixbuf-csource +-@CROSS_COMPILING_TRUE@pixbuf_csource_deps = ++@CROSS_COMPILING_TRUE@pixbuf_csource = $(GDK_PIXBUF_CSOURCE) + @CROSS_COMPILING_FALSE@pixbuf_csource_deps = $(top_builddir)/gdk-pixbuf/gdk-pixbuf-csource $(top_builddir)/gdk-pixbuf/gdk-pixbuf.loaders +- ++@CROSS_COMPILING_TRUE@pixbuf_csource_deps = + testpixbuf_DEPENDENCIES = $(DEPS) + testpixbuf_drawable_DEPENDENCIES = $(DEPS) + testpixbuf_save_DEPENDENCIES = $(DEPS) + testpixbuf_scale_DEPENDENCIES = $(DEPS) + testanimation_DEPENDENCIES = $(DEPS) + pixbuf_demo_DEPENDENCIES = $(DEPS) +- + testpixbuf_LDADD = $(LDADDS) + testpixbuf_drawable_LDADD = $(LDADDS) + testpixbuf_save_LDADD = $(LDADDS) + testpixbuf_scale_LDADD = $(LDADDS) + testanimation_LDADD = $(LDADDS) + pixbuf_demo_LDADD = $(LDADDS) +- + testpixbuf_SOURCES = testpixbuf.c pixbuf-init.c + testpixbuf_drawable_SOURCES = testpixbuf-drawable.c pixbuf-init.c + testpixbuf_save_SOURCES = testpixbuf-save.c + testpixbuf_scale_SOURCES = testpixbuf-scale.c pixbuf-init.c + testanimation_SOURCES = testanimation.c pixbuf-init.c + pixbuf_demo_SOURCES = pixbuf-demo.c pixbuf-init.c +- + DISTCLEANFILES = test-inline-pixbufs.h +-subdir = demos +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-@HAVE_PNG_TRUE@noinst_PROGRAMS = testpixbuf-drawable$(EXEEXT) \ +-@HAVE_PNG_TRUE@ testanimation$(EXEEXT) testpixbuf-save$(EXEEXT) \ +-@HAVE_PNG_TRUE@ testpixbuf-scale$(EXEEXT) pixbuf-demo$(EXEEXT) \ +-@HAVE_PNG_TRUE@ testpixbuf$(EXEEXT) +-@HAVE_PNG_FALSE@noinst_PROGRAMS = testpixbuf-drawable$(EXEEXT) \ +-@HAVE_PNG_FALSE@ testanimation$(EXEEXT) testpixbuf-save$(EXEEXT) \ +-@HAVE_PNG_FALSE@ testpixbuf-scale$(EXEEXT) pixbuf-demo$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_pixbuf_demo_OBJECTS = pixbuf-demo.$(OBJEXT) pixbuf-init.$(OBJEXT) +-pixbuf_demo_OBJECTS = $(am_pixbuf_demo_OBJECTS) +-pixbuf_demo_LDFLAGS = +-am_testanimation_OBJECTS = testanimation.$(OBJEXT) pixbuf-init.$(OBJEXT) +-testanimation_OBJECTS = $(am_testanimation_OBJECTS) +-testanimation_LDFLAGS = +-am_testpixbuf_OBJECTS = testpixbuf.$(OBJEXT) pixbuf-init.$(OBJEXT) +-testpixbuf_OBJECTS = $(am_testpixbuf_OBJECTS) +-testpixbuf_LDFLAGS = +-am_testpixbuf_drawable_OBJECTS = testpixbuf-drawable.$(OBJEXT) \ +- pixbuf-init.$(OBJEXT) +-testpixbuf_drawable_OBJECTS = $(am_testpixbuf_drawable_OBJECTS) +-testpixbuf_drawable_LDFLAGS = +-am_testpixbuf_save_OBJECTS = testpixbuf-save.$(OBJEXT) +-testpixbuf_save_OBJECTS = $(am_testpixbuf_save_OBJECTS) +-testpixbuf_save_LDFLAGS = +-am_testpixbuf_scale_OBJECTS = testpixbuf-scale.$(OBJEXT) \ +- pixbuf-init.$(OBJEXT) +-testpixbuf_scale_OBJECTS = $(am_testpixbuf_scale_OBJECTS) +-testpixbuf_scale_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/pixbuf-demo.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-init.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testanimation.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testpixbuf-drawable.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testpixbuf-save.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testpixbuf-scale.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testpixbuf.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(pixbuf_demo_SOURCES) $(testanimation_SOURCES) \ +- $(testpixbuf_SOURCES) $(testpixbuf_drawable_SOURCES) \ +- $(testpixbuf_save_SOURCES) $(testpixbuf_scale_SOURCES) +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) +-SOURCES = $(pixbuf_demo_SOURCES) $(testanimation_SOURCES) $(testpixbuf_SOURCES) $(testpixbuf_drawable_SOURCES) $(testpixbuf_save_SOURCES) $(testpixbuf_scale_SOURCES) +- + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu demos/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu demos/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu demos/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + pixbuf-demo$(EXEEXT): $(pixbuf_demo_OBJECTS) $(pixbuf_demo_DEPENDENCIES) + @rm -f pixbuf-demo$(EXEEXT) +- $(LINK) $(pixbuf_demo_LDFLAGS) $(pixbuf_demo_OBJECTS) $(pixbuf_demo_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_demo_OBJECTS) $(pixbuf_demo_LDADD) $(LIBS) + testanimation$(EXEEXT): $(testanimation_OBJECTS) $(testanimation_DEPENDENCIES) + @rm -f testanimation$(EXEEXT) +- $(LINK) $(testanimation_LDFLAGS) $(testanimation_OBJECTS) $(testanimation_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testanimation_OBJECTS) $(testanimation_LDADD) $(LIBS) + testpixbuf$(EXEEXT): $(testpixbuf_OBJECTS) $(testpixbuf_DEPENDENCIES) + @rm -f testpixbuf$(EXEEXT) +- $(LINK) $(testpixbuf_LDFLAGS) $(testpixbuf_OBJECTS) $(testpixbuf_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testpixbuf_OBJECTS) $(testpixbuf_LDADD) $(LIBS) + testpixbuf-drawable$(EXEEXT): $(testpixbuf_drawable_OBJECTS) $(testpixbuf_drawable_DEPENDENCIES) + @rm -f testpixbuf-drawable$(EXEEXT) +- $(LINK) $(testpixbuf_drawable_LDFLAGS) $(testpixbuf_drawable_OBJECTS) $(testpixbuf_drawable_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testpixbuf_drawable_OBJECTS) $(testpixbuf_drawable_LDADD) $(LIBS) + testpixbuf-save$(EXEEXT): $(testpixbuf_save_OBJECTS) $(testpixbuf_save_DEPENDENCIES) + @rm -f testpixbuf-save$(EXEEXT) +- $(LINK) $(testpixbuf_save_LDFLAGS) $(testpixbuf_save_OBJECTS) $(testpixbuf_save_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testpixbuf_save_OBJECTS) $(testpixbuf_save_LDADD) $(LIBS) + testpixbuf-scale$(EXEEXT): $(testpixbuf_scale_OBJECTS) $(testpixbuf_scale_DEPENDENCIES) + @rm -f testpixbuf-scale$(EXEEXT) +- $(LINK) $(testpixbuf_scale_LDFLAGS) $(testpixbuf_scale_OBJECTS) $(testpixbuf_scale_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testpixbuf_scale_OBJECTS) $(testpixbuf_scale_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -606,37 +535,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testpixbuf.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -644,10 +564,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -655,7 +571,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -666,16 +588,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -695,124 +622,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -824,7 +764,6 @@ + all-am: Makefile $(PROGRAMS) + installdirs: installdirs-recursive + installdirs-am: +- + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-recursive + install-exec: install-exec-recursive +@@ -845,7 +784,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + + maintainer-clean-generic: +@@ -861,24 +801,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -899,27 +861,26 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive +- +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool \ +- clean-noinstPROGRAMS clean-recursive ctags ctags-recursive \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-recursive distclean-tags distdir dvi dvi-am \ +- dvi-recursive info info-am info-recursive install install-am \ +- install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ +- pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ +- tags-recursive uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ++ check-am ctags-recursive install install-am install-strip \ ++ tags-recursive ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool clean-noinstPROGRAMS ctags ctags-recursive \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -983,6 +944,7 @@ + || (rm -f test-inline-pixbufs.h && false) + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/faq/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/faq/Makefile.in +--- gtk+2.0-2.17.10/docs/faq/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/faq/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,32 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = docs/faq ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +68,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +75,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +97,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +104,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +129,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +148,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +158,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +189,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +205,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +222,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +234,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +276,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,16 +285,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- gtk-faq.sgml +- ++EXTRA_DIST = gtk-faq.sgml + TEST_PROGS = + + ### testing rules +@@ -420,68 +321,79 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +-subdir = docs/faq +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/faq/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/faq/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/faq/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -492,7 +404,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -513,7 +424,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -524,24 +436,44 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -552,25 +484,27 @@ + + mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +-pdf: pdf-am +- + pdf-am: + + ps: ps-am + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-am check-local clean clean-generic \ +- clean-libtool distclean distclean-generic distclean-libtool \ +- distdir dvi dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am ++ clean-libtool dist-hook distclean distclean-generic \ ++ distclean-libtool distdir dvi dvi-am html html-am info info-am \ ++ install install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -660,6 +594,7 @@ + .PHONY: html + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/Makefile.in +--- gtk+2.0-2.17.10/docs/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,72 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = docs ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +108,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +115,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +137,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +144,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +169,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +188,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +198,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +229,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +245,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +262,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +274,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +316,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,30 +325,21 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- defsformat.txt \ +- developers.txt \ +- dnd_internals.txt \ +- make-todo \ +- refcounting.txt \ +- sizing-test.txt \ +- styles.txt \ +- text_widget.txt \ +- text_widget_internals.txt \ +- tree-column-sizing.txt \ +- widget_geometry.txt \ +- widget_system.txt \ +- generation.txt \ +- gtkdocs_fix \ +- RELEASE-HOWTO +- ++EXTRA_DIST = defsformat.txt developers.txt dnd_internals.txt make-todo \ ++ refcounting.txt sizing-test.txt styles.txt text_widget.txt \ ++ text_widget_internals.txt tree-column-sizing.txt \ ++ widget_geometry.txt widget_system.txt generation.txt \ ++ gtkdocs_fix RELEASE-HOWTO + TEST_PROGS = + + ### testing rules +@@ -434,31 +365,40 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = tutorial faq reference tools +-subdir = docs +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -466,10 +406,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -477,7 +413,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -488,16 +430,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -517,124 +464,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -645,7 +605,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -665,7 +624,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -676,25 +636,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -713,26 +694,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -789,6 +768,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/reference/gdk/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/reference/gdk/Makefile.in +--- gtk+2.0-2.17.10/docs/reference/gdk/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/reference/gdk/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -21,17 +22,12 @@ + #################################### + # Everything below here is generic # + #################################### +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -43,11 +39,33 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/version.xml.in $(top_srcdir)/Makefile.decl \ ++ $(top_srcdir)/gtk-doc.make ++subdir = docs/reference/gdk ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = version.xml ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -57,10 +75,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -68,13 +82,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -91,8 +104,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -100,10 +111,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -129,6 +136,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -147,8 +155,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -159,95 +165,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -271,24 +196,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -296,13 +212,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -314,28 +229,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -344,22 +241,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -383,6 +283,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -391,22 +292,19 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +-# initialize variables for unconditional += appending +- + # Other files to distribute +-EXTRA_DIST = \ +- $(content_files) \ +- $(HTML_IMAGES) \ +- $(DOC_MAIN_SGML_FILE) \ +- $(DOC_MODULE)-sections.txt \ +- $(DOC_MODULE)-overrides.txt\ +-version.xml.in ++EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ ++ $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ ++ version.xml.in + TEST_PROGS = + + ### testing rules +@@ -432,7 +330,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + AUTOMAKE_OPTIONS = 1.6 + + # The name of the module. +@@ -482,7 +379,6 @@ + $(GTK_DEBUG_FLAGS) \ + $(GDK_DEP_CFLAGS) + +- + GTKDOC_LIBS = $(top_builddir)/gdk/$(gdktargetlib) + + # Extra options to supply to gtkdoc-mkdb +@@ -584,7 +480,6 @@ + --extra-dir=$(CAIRO_PREFIX)/share/gtk-doc/html/cairo + + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +- + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@@ -597,13 +492,10 @@ + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +- + TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +- + DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +- + SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ +@@ -611,31 +503,46 @@ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).signals + +- + REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +- + CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) +-subdir = docs/reference/gdk +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = version.xml +-DIST_SOURCES = +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- $(top_srcdir)/gtk-doc.make Makefile.am version.xml.in + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/reference/gdk/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-version.xml: $(top_builddir)/config.status version.xml.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/gdk/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/reference/gdk/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + + mostlyclean-libtool: +@@ -643,46 +550,40 @@ + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. $(distdir)/images +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -693,7 +594,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile all-local +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -715,7 +615,8 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -726,25 +627,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-local ++distclean-am: clean-am distclean-generic distclean-local + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-data-local + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -764,18 +686,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-local ++uninstall-am: uninstall-local ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am all-local check check-am check-local clean \ +- clean-generic clean-libtool clean-local distclean \ +- distclean-generic distclean-libtool distclean-local distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-data-local install-exec install-exec-am \ +- install-info install-info-am install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic maintainer-clean-local mostlyclean \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- uninstall uninstall-am uninstall-info-am uninstall-local ++ clean-generic clean-libtool clean-local dist-hook distclean \ ++ distclean-generic distclean-libtool distclean-local distdir \ ++ dvi dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-local install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic \ ++ maintainer-clean-local mostlyclean mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ++ uninstall-local + + # call as: $(XVFB_START) && someprogram + +@@ -973,6 +900,7 @@ + .PHONY : dist-hook-local docs + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/reference/gdk-pixbuf/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/reference/gdk-pixbuf/Makefile.in +--- gtk+2.0-2.17.10/docs/reference/gdk-pixbuf/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/reference/gdk-pixbuf/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -21,17 +22,12 @@ + #################################### + # Everything below here is generic # + #################################### +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -43,11 +39,58 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/version.xml.in $(top_srcdir)/Makefile.decl \ ++ $(top_srcdir)/gtk-doc.make ++subdir = docs/reference/gdk-pixbuf ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = version.xml ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++man1dir = $(mandir)/man1 ++am__installdirs = "$(DESTDIR)$(man1dir)" ++NROFF = nroff ++MANS = $(man_MANS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -57,10 +100,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -68,13 +107,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -91,8 +129,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -100,10 +136,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -129,6 +161,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -147,8 +180,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -159,95 +190,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -271,24 +221,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -296,13 +237,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -314,28 +254,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -344,22 +266,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -383,6 +308,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -391,28 +317,20 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +-# initialize variables for unconditional += appending +- + # Other files to distribute +-EXTRA_DIST = \ +- $(content_files) \ +- $(HTML_IMAGES) \ +- $(DOC_MAIN_SGML_FILE) \ +- $(DOC_MODULE)-sections.txt \ +- $(DOC_MODULE)-overrides.txt\ +-version.xml.in \ +- composite.png \ +- composite.dia \ +- apple-red-1a.png \ +- apple-red-2c.png \ +- gnome-gmush-1.png +- ++EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ ++ $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ ++ version.xml.in composite.png composite.dia apple-red-1a.png \ ++ apple-red-2c.png gnome-gmush-1.png + TEST_PROGS = + + ### testing rules +@@ -438,7 +356,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + AUTOMAKE_OPTIONS = 1.6 + + # The name of the module. +@@ -470,7 +387,6 @@ + xpm-color-table.h \ + test-images.h + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ +@@ -478,7 +394,6 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + GTKDOC_LIBS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ +@@ -508,7 +423,6 @@ + --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib + + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +- + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@@ -521,13 +435,10 @@ + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +- + TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +- + DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +- + SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ +@@ -535,40 +446,50 @@ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).signals + +- + REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +- + CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) + +- + ######################################################################## +-@ENABLE_MAN_TRUE@man_MANS = gdk-pixbuf-csource.1 gdk-pixbuf-query-loaders.1 +- +-@ENABLE_MAN_TRUE@BUILT_EXTRA_DIST = $(man_MANS) +-subdir = docs/reference/gdk-pixbuf +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = version.xml +-DIST_SOURCES = +- +-NROFF = nroff +-MANS = $(man_MANS) +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- $(top_srcdir)/gtk-doc.make Makefile.am version.xml.in ++man_MANS = gdk-pixbuf-csource.1 gdk-pixbuf-query-loaders.1 ++BUILT_EXTRA_DIST = $(man_MANS) + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/reference/gdk-pixbuf/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-version.xml: $(top_builddir)/config.status version.xml.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/gdk-pixbuf/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/reference/gdk-pixbuf/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + + mostlyclean-libtool: +@@ -576,93 +497,91 @@ + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-man1dir = $(mandir)/man1 +-install-man1: $(man1_MANS) $(man_MANS) ++install-man1: $(man_MANS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(man1dir) +- @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ +- l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ +- for i in $$l2; do \ +- case "$$i" in \ +- *.1*) list="$$list $$i" ;; \ +- esac; \ ++ test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" ++ @list=''; test -n "$(man1dir)" || exit 0; \ ++ { for i in $$list; do echo "$$i"; done; \ ++ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ ++ sed -n '/\.1[a-z]*$$/p'; \ ++ } | while read p; do \ ++ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ ++ echo "$$d$$p"; echo "$$p"; \ ++ done | \ ++ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ ++ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ ++ sed 'N;N;s,\n, ,g' | { \ ++ list=; while read file base inst; do \ ++ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ ++ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ ++ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ ++ fi; \ + done; \ +- for i in $$list; do \ +- if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ +- else file=$$i; fi; \ +- ext=`echo $$i | sed -e 's/^.*\\.//'`; \ +- case "$$ext" in \ +- 1*) ;; \ +- *) ext='1' ;; \ +- esac; \ +- inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ +- inst=`echo $$inst | sed -e 's/^.*\///'`; \ +- inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ +- $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ +- done ++ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ ++ while read files; do \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ ++ done; } ++ + uninstall-man1: + @$(NORMAL_UNINSTALL) +- @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ +- l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ +- for i in $$l2; do \ +- case "$$i" in \ +- *.1*) list="$$list $$i" ;; \ +- esac; \ +- done; \ +- for i in $$list; do \ +- ext=`echo $$i | sed -e 's/^.*\\.//'`; \ +- case "$$ext" in \ +- 1*) ;; \ +- *) ext='1' ;; \ +- esac; \ +- inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ +- inst=`echo $$inst | sed -e 's/^.*\///'`; \ +- inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ +- rm -f $(DESTDIR)$(man1dir)/$$inst; \ +- done ++ @list=''; test -n "$(man1dir)" || exit 0; \ ++ files=`{ for i in $$list; do echo "$$i"; done; \ ++ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ ++ sed -n '/\.1[a-z]*$$/p'; \ ++ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ ++ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ ++ test -z "$$files" || { \ ++ echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @list='$(MANS)'; if test -n "$$list"; then \ ++ list=`for p in $$list; do \ ++ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ ++ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ ++ if test -n "$$list" && \ ++ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ ++ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ ++ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ ++ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ ++ echo " typically \`make maintainer-clean' will remove them" >&2; \ ++ exit 1; \ ++ else :; fi; \ ++ else :; fi ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -673,9 +592,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(MANS) all-local +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(man1dir) ++ for dir in "$(DESTDIR)$(man1dir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -696,7 +616,8 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -707,25 +628,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-local ++distclean-am: clean-am distclean-generic distclean-local + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-data-local install-man + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: install-man1 + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -745,21 +687,25 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-local uninstall-man ++uninstall-am: uninstall-local uninstall-man + + uninstall-man: uninstall-man1 + ++.MAKE: check-am install-am install-strip ++ + .PHONY: all all-am all-local check check-am check-local clean \ +- clean-generic clean-libtool clean-local distclean \ +- distclean-generic distclean-libtool distclean-local distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-data-local install-exec install-exec-am \ +- install-info install-info-am install-man install-man1 \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic \ ++ clean-generic clean-libtool clean-local dist-hook distclean \ ++ distclean-generic distclean-libtool distclean-local distdir \ ++ dvi dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-local install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-man1 install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am uninstall-local uninstall-man uninstall-man1 ++ uninstall-local uninstall-man uninstall-man1 + + # call as: $(XVFB_START) && someprogram + +@@ -966,6 +912,7 @@ + cp $$d/$$f $(distdir) || exit 1; done + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/reference/gtk/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/reference/gtk/Makefile.in +--- gtk+2.0-2.17.10/docs/reference/gtk/Makefile.in 2009-09-01 06:30:38.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/reference/gtk/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -21,17 +22,12 @@ + #################################### + # Everything below here is generic # + #################################### +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -43,11 +39,58 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/version.xml.in $(top_srcdir)/Makefile.decl \ ++ $(top_srcdir)/gtk-doc.make ++subdir = docs/reference/gtk ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = version.xml ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++man1dir = $(mandir)/man1 ++am__installdirs = "$(DESTDIR)$(man1dir)" ++NROFF = nroff ++MANS = $(man_MANS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -57,10 +100,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -68,16 +107,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ +- +-CPPFLAGS = @CPPFLAGS@ \ +- -UGTK_DISABLE_SINGLE_INCLUDES +- +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ ++CPPFLAGS = @CPPFLAGS@ -UGTK_DISABLE_SINGLE_INCLUDES + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -94,8 +129,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -103,10 +136,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -132,6 +161,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -150,8 +180,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -162,95 +190,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -274,24 +221,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -299,13 +237,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -317,28 +254,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -347,22 +266,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -386,6 +308,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -394,22 +317,19 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +-# initialize variables for unconditional += appending +- + # Other files to distribute +-EXTRA_DIST = \ +- $(content_files) \ +- $(HTML_IMAGES) \ +- $(DOC_MAIN_SGML_FILE) \ +- $(DOC_MODULE)-sections.txt \ +- $(DOC_MODULE)-overrides.txt\ +-version.xml.in ++EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ ++ $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ ++ version.xml.in + TEST_PROGS = + + ### testing rules +@@ -435,7 +355,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + AUTOMAKE_OPTIONS = 1.6 + + # The name of the module. +@@ -541,7 +460,6 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + GTKDOC_LIBS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ +@@ -590,7 +508,6 @@ + gtk-builder-convert.xml \ + visual_index.xml + +- + expand_content_files = \ + drawing-model.xml \ + glossary.xml \ +@@ -796,7 +713,6 @@ + --extra-dir=$(CAIRO_PREFIX)/share/gtk-doc/html/cairo + + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +- + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@@ -809,13 +725,10 @@ + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +- + TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +- + DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +- + SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ +@@ -823,40 +736,50 @@ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).signals + +- + REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +- + CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) + +- + ######################################################################## +-@ENABLE_MAN_TRUE@man_MANS = gtk-query-immodules-2.0.1 gtk-update-icon-cache.1 gtk-builder-convert.1 +- +-@ENABLE_MAN_TRUE@BUILT_EXTRA_DIST = $(man_MANS) +-subdir = docs/reference/gtk +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = version.xml +-DIST_SOURCES = +- +-NROFF = nroff +-MANS = $(man_MANS) +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- $(top_srcdir)/gtk-doc.make Makefile.am version.xml.in ++man_MANS = gtk-query-immodules-2.0.1 gtk-update-icon-cache.1 gtk-builder-convert.1 ++BUILT_EXTRA_DIST = $(man_MANS) + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/reference/gtk/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-version.xml: $(top_builddir)/config.status version.xml.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/gtk/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/reference/gtk/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + + mostlyclean-libtool: +@@ -864,93 +787,91 @@ + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-man1dir = $(mandir)/man1 +-install-man1: $(man1_MANS) $(man_MANS) ++install-man1: $(man_MANS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(man1dir) +- @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ +- l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ +- for i in $$l2; do \ +- case "$$i" in \ +- *.1*) list="$$list $$i" ;; \ +- esac; \ ++ test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" ++ @list=''; test -n "$(man1dir)" || exit 0; \ ++ { for i in $$list; do echo "$$i"; done; \ ++ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ ++ sed -n '/\.1[a-z]*$$/p'; \ ++ } | while read p; do \ ++ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ ++ echo "$$d$$p"; echo "$$p"; \ ++ done | \ ++ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ ++ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ ++ sed 'N;N;s,\n, ,g' | { \ ++ list=; while read file base inst; do \ ++ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ ++ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ ++ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ ++ fi; \ + done; \ +- for i in $$list; do \ +- if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ +- else file=$$i; fi; \ +- ext=`echo $$i | sed -e 's/^.*\\.//'`; \ +- case "$$ext" in \ +- 1*) ;; \ +- *) ext='1' ;; \ +- esac; \ +- inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ +- inst=`echo $$inst | sed -e 's/^.*\///'`; \ +- inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ +- $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ +- done ++ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ ++ while read files; do \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ ++ done; } ++ + uninstall-man1: + @$(NORMAL_UNINSTALL) +- @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ +- l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ +- for i in $$l2; do \ +- case "$$i" in \ +- *.1*) list="$$list $$i" ;; \ +- esac; \ +- done; \ +- for i in $$list; do \ +- ext=`echo $$i | sed -e 's/^.*\\.//'`; \ +- case "$$ext" in \ +- 1*) ;; \ +- *) ext='1' ;; \ +- esac; \ +- inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ +- inst=`echo $$inst | sed -e 's/^.*\///'`; \ +- inst=`echo $$inst | sed '$(transform)'`.$$ext; \ +- echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ +- rm -f $(DESTDIR)$(man1dir)/$$inst; \ +- done ++ @list=''; test -n "$(man1dir)" || exit 0; \ ++ files=`{ for i in $$list; do echo "$$i"; done; \ ++ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ ++ sed -n '/\.1[a-z]*$$/p'; \ ++ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ ++ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ ++ test -z "$$files" || { \ ++ echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/$(srcdir)/images $(distdir)/$(top_srcdir)/gtk/stock-icons/20 $(distdir)/$(top_srcdir)/gtk/stock-icons/24 $(distdir)/$(top_srcdir)/gtk/stock-icons/32 $(distdir)/$(top_srcdir)/gtk/stock-icons/48 $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @list='$(MANS)'; if test -n "$$list"; then \ ++ list=`for p in $$list; do \ ++ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ ++ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ ++ if test -n "$$list" && \ ++ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ ++ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ ++ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ ++ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ ++ echo " typically \`make maintainer-clean' will remove them" >&2; \ ++ exit 1; \ ++ else :; fi; \ ++ else :; fi ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -961,9 +882,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(MANS) all-local +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(man1dir) ++ for dir in "$(DESTDIR)$(man1dir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -984,7 +906,8 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -995,25 +918,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-local ++distclean-am: clean-am distclean-generic distclean-local + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-data-local install-man + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: install-man1 + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -1033,21 +977,25 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-local uninstall-man ++uninstall-am: uninstall-local uninstall-man + + uninstall-man: uninstall-man1 + ++.MAKE: check-am install-am install-strip ++ + .PHONY: all all-am all-local check check-am check-local clean \ +- clean-generic clean-libtool clean-local distclean \ +- distclean-generic distclean-libtool distclean-local distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-data-local install-exec install-exec-am \ +- install-info install-info-am install-man install-man1 \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic \ ++ clean-generic clean-libtool clean-local dist-hook distclean \ ++ distclean-generic distclean-libtool distclean-local distdir \ ++ dvi dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-local install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-man1 install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am uninstall-local uninstall-man uninstall-man1 ++ uninstall-local uninstall-man uninstall-man1 + + # call as: $(XVFB_START) && someprogram + +@@ -1254,6 +1202,7 @@ + cp $$d/$$f $(distdir) || exit 1; done + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/reference/libgail-util/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/reference/libgail-util/Makefile.in +--- gtk+2.0-2.17.10/docs/reference/libgail-util/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/reference/libgail-util/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -21,17 +22,12 @@ + #################################### + # Everything below here is generic # + #################################### +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -43,11 +39,32 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make ++subdir = docs/reference/libgail-util ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -57,10 +74,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -68,13 +81,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -91,8 +103,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -100,10 +110,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -129,6 +135,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -147,8 +154,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -159,95 +164,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -271,24 +195,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -296,13 +211,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -314,28 +228,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -344,22 +240,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -383,6 +282,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -391,13 +291,14 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages +- +-# initialize variables for unconditional += appending + EXTRA_DIST = \ + $(content_files) \ + $(HTML_IMAGES) \ +@@ -430,7 +331,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + AUTOMAKE_OPTIONS = 1.7 + + # The name of the module. +@@ -453,16 +353,13 @@ + -I$(top_builddir) \ + $(DEP_CFLAGS) + +- + GTKDOC_LIBS = $(top_builddir)/modules/other/gail/libgail-util/libgailutil.la + + # gtkdoc-mkdb related varaibles + MKDB_OPTIONS = + content_files = +- + HTML_IMAGES = + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +- + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) +@@ -475,13 +372,10 @@ + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +- + TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +- + DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +- + SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ +@@ -489,76 +383,85 @@ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).signals + +- + REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +- + CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) +-subdir = docs/reference/libgail-util +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- $(top_srcdir)/gtk-doc.make Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/reference/libgail-util/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/libgail-util/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/reference/libgail-util/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -569,7 +472,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile all-local +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -591,7 +493,8 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -602,25 +505,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-local ++distclean-am: clean-am distclean-generic distclean-local + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-data-local + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -640,18 +564,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-local ++uninstall-am: uninstall-local ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am all-local check check-am check-local clean \ +- clean-generic clean-libtool clean-local distclean \ +- distclean-generic distclean-libtool distclean-local distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-data-local install-exec install-exec-am \ +- install-info install-info-am install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic maintainer-clean-local mostlyclean \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- uninstall uninstall-am uninstall-info-am uninstall-local ++ clean-generic clean-libtool clean-local dist-hook distclean \ ++ distclean-generic distclean-libtool distclean-local distdir \ ++ dvi dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-local install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic \ ++ maintainer-clean-local mostlyclean mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ++ uninstall-local + + # call as: $(XVFB_START) && someprogram + +@@ -849,6 +778,7 @@ + .PHONY : dist-hook-local docs + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/reference/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/reference/Makefile.in +--- gtk+2.0-2.17.10/docs/reference/Makefile.in 2009-09-01 06:02:55.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/reference/Makefile.in 2009-09-01 18:44:00.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,72 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl AUTHORS COPYING ChangeLog ++subdir = docs/reference ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +108,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +115,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +137,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +144,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +169,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +188,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +198,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +229,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +245,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +262,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +274,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +316,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +325,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,33 +361,41 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = gdk-pixbuf gdk gtk libgail-util +- + GITIGNOREFILES = */*.1 +-subdir = docs/reference +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- AUTHORS COPYING ChangeLog Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/reference/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/reference/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -452,10 +403,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -463,7 +410,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -474,16 +427,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -503,124 +461,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -631,7 +602,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -651,7 +621,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -662,25 +633,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -699,26 +691,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -775,6 +765,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/tools/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/tools/Makefile.in +--- gtk+2.0-2.17.10/docs/tools/Makefile.in 2009-09-01 06:02:56.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/tools/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,66 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++@USE_X11_TRUE@noinst_PROGRAMS = doc-shooter$(EXEEXT) ++subdir = docs/tools ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++PROGRAMS = $(noinst_PROGRAMS) ++am_doc_shooter_OBJECTS = shadow.$(OBJEXT) shooter.$(OBJEXT) \ ++ widgets.$(OBJEXT) ++doc_shooter_OBJECTS = $(am_doc_shooter_OBJECTS) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) \ ++ $(top_builddir)/gtk/$(gtktargetlib) $(am__DEPENDENCIES_1) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(doc_shooter_SOURCES) ++DIST_SOURCES = $(doc_shooter_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +103,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +110,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +132,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +139,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +164,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +183,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +193,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +224,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +240,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +257,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +269,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +311,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +320,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,7 +356,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ +@@ -427,24 +364,17 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(GTK_DEP_LIBS) + +- +-@USE_X11_TRUE@noinst_PROGRAMS = \ +-@USE_X11_TRUE@ doc-shooter +- +- + doc_shooter_DEPENDENCIES = $(DEPS) + doc_shooter_LDADD = $(LDADDS) + doc_shooter_SOURCES = \ +@@ -454,59 +384,55 @@ + widgets.c \ + widgets.h + +-subdir = docs/tools +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-@USE_X11_TRUE@noinst_PROGRAMS = doc-shooter$(EXEEXT) +-@USE_X11_FALSE@noinst_PROGRAMS = +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_doc_shooter_OBJECTS = shadow.$(OBJEXT) shooter.$(OBJEXT) \ +- widgets.$(OBJEXT) +-doc_shooter_OBJECTS = $(am_doc_shooter_OBJECTS) +-doc_shooter_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/shadow.Po ./$(DEPDIR)/shooter.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/widgets.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(doc_shooter_SOURCES) +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(doc_shooter_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/tools/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/tools/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/tools/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + doc-shooter$(EXEEXT): $(doc_shooter_OBJECTS) $(doc_shooter_DEPENDENCIES) + @rm -f doc-shooter$(EXEEXT) +- $(LINK) $(doc_shooter_LDFLAGS) $(doc_shooter_OBJECTS) $(doc_shooter_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(doc_shooter_OBJECTS) $(doc_shooter_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -516,37 +442,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -554,93 +471,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -648,7 +557,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(PROGRAMS) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -669,7 +577,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -683,24 +592,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -721,19 +652,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + ctags distclean distclean-compile distclean-generic \ +- distclean-libtool distclean-tags distdir dvi dvi-am info \ +- info-am install install-am install-data install-data-am \ +- install-exec install-exec-am install-info install-info-am \ +- install-man install-strip installcheck installcheck-am \ +- installdirs maintainer-clean maintainer-clean-generic \ +- mostlyclean mostlyclean-compile mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ +- uninstall-am uninstall-info-am ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -798,6 +733,7 @@ + done + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/docs/tutorial/Makefile.in gtk+2.0-2.17.10.ubuntu/docs/tutorial/Makefile.in +--- gtk+2.0-2.17.10/docs/tutorial/Makefile.in 2009-09-01 06:02:56.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/docs/tutorial/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,32 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = docs/tutorial ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +68,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +75,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +97,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +104,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +129,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +148,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +158,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +189,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +205,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +222,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +234,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +276,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,47 +285,28 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- gtk-tut.sgml \ +- images/arrow.png \ +- images/aspectframe.png \ +- images/base.png \ +- images/buttonbox.png \ +- images/buttons.png \ +- images/calendar.png \ +- images/colorsel.png \ +- images/entry.png \ +- images/eventbox.png \ +- images/filesel.png \ +- images/fixed.png \ +- images/frame.png \ +- images/gtkdial.png \ +- images/helloworld.png \ +- images/helloworld2.png \ +- images/label.png \ +- images/menu.png \ +- images/notebook.png \ +- images/packbox1.png \ +- images/packbox2.png \ +- images/paned.png \ +- images/progressbar.png \ +- images/radiobuttons.png \ +- images/rangewidgets.png \ +- images/rulers.png \ +- images/scribble.png \ +- images/scrolledwin.png \ +- images/spinbutton.png \ +- images/statusbar.png \ +- images/table.png \ ++EXTRA_DIST = gtk-tut.sgml images/arrow.png images/aspectframe.png \ ++ images/base.png images/buttonbox.png images/buttons.png \ ++ images/calendar.png images/colorsel.png images/entry.png \ ++ images/eventbox.png images/filesel.png images/fixed.png \ ++ images/frame.png images/gtkdial.png images/helloworld.png \ ++ images/helloworld2.png images/label.png images/menu.png \ ++ images/notebook.png images/packbox1.png images/packbox2.png \ ++ images/paned.png images/progressbar.png \ ++ images/radiobuttons.png images/rangewidgets.png \ ++ images/rulers.png images/scribble.png images/scrolledwin.png \ ++ images/spinbutton.png images/statusbar.png images/table.png \ + images/tictactoe.png +- + TEST_PROGS = + + ### testing rules +@@ -451,68 +332,79 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +-subdir = docs/tutorial +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu docs/tutorial/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/tutorial/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu docs/tutorial/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. $(distdir)/images +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -523,7 +415,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -544,7 +435,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -555,24 +447,44 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -583,25 +495,27 @@ + + mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +-pdf: pdf-am +- + pdf-am: + + ps: ps-am + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-am check-local clean clean-generic \ +- clean-libtool distclean distclean-generic distclean-libtool \ +- distdir dvi dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am ++ clean-libtool dist-hook distclean distclean-generic \ ++ distclean-libtool distdir dvi dvi-am html html-am info info-am \ ++ install install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -693,6 +607,7 @@ + @HAVE_DOCBOOK_FALSE@ echo "***" + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/directfb/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/directfb/Makefile.in +--- gtk+2.0-2.17.10/gdk/directfb/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/directfb/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,94 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(libgdkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl AUTHORS TODO ++subdir = gdk/directfb ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++LTLIBRARIES = $(noinst_LTLIBRARIES) ++libgdk_directfb_la_LIBADD = ++am_libgdk_directfb_la_OBJECTS = gdkapplaunchcontext-directfb.lo \ ++ gdkcolor-directfb.lo gdkcursor-directfb.lo gdkdnd-directfb.lo \ ++ gdkdisplay-directfb.lo gdkdrawable-directfb.lo \ ++ gdkevents-directfb.lo gdkfont-directfb.lo gdkgc-directfb.lo \ ++ gdkgeometry-directfb.lo gdkglobals-directfb.lo \ ++ gdkim-directfb.lo gdkimage-directfb.lo gdkinput-directfb.lo \ ++ gdkkeys-directfb.lo gdkmain-directfb.lo gdkpixmap-directfb.lo \ ++ gdkproperty-directfb.lo gdkscreen-directfb.lo \ ++ gdkselection-directfb.lo gdkspawn-directfb.lo \ ++ gdktestutils-directfb.lo gdkvisual-directfb.lo \ ++ gdkwindow-directfb.lo gdkwindowid.lo ++libgdk_directfb_la_OBJECTS = $(am_libgdk_directfb_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_directfb_la_SOURCES) ++DIST_SOURCES = $(libgdk_directfb_la_SOURCES) ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libgdkincludedir)" ++HEADERS = $(libgdkinclude_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +132,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +139,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +161,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +168,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +193,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +212,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +222,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +253,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +269,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +286,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +298,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +340,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,14 +349,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = AUTHORS README TODO ++EXTRA_DIST = AUTHORS README TODO + TEST_PROGS = + + ### testing rules +@@ -418,9 +385,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + libgdkincludedir = $(includedir)/gtk-2.0/gdk +- + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk-DirectFB\" \ + -DGDK_COMPILATION \ +@@ -431,13 +396,10 @@ + @GTK_DEBUG_FLAGS@ \ + @GDK_DEP_CFLAGS@ + +- + LDADDS = \ + @GDK_DEP_LIBS@ + +- + noinst_LTLIBRARIES = libgdk-directfb.la +- + libgdk_directfb_la_SOURCES = \ + gdkapplaunchcontext-directfb.c \ + gdkcolor-directfb.c \ +@@ -470,98 +432,58 @@ + gdkwindowid.c \ + x-cursors.xbm + +- + libgdkinclude_HEADERS = \ + gdkdirectfb.h \ + gdkprivate-directfb.h + +-subdir = gdk/directfb +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(noinst_LTLIBRARIES) +- +-libgdk_directfb_la_LDFLAGS = +-libgdk_directfb_la_LIBADD = +-am_libgdk_directfb_la_OBJECTS = gdkapplaunchcontext-directfb.lo \ +- gdkcolor-directfb.lo gdkcursor-directfb.lo gdkdnd-directfb.lo \ +- gdkdisplay-directfb.lo gdkdrawable-directfb.lo \ +- gdkevents-directfb.lo gdkfont-directfb.lo gdkgc-directfb.lo \ +- gdkgeometry-directfb.lo gdkglobals-directfb.lo \ +- gdkim-directfb.lo gdkimage-directfb.lo gdkinput-directfb.lo \ +- gdkkeys-directfb.lo gdkmain-directfb.lo gdkpixmap-directfb.lo \ +- gdkproperty-directfb.lo gdkscreen-directfb.lo \ +- gdkselection-directfb.lo gdkspawn-directfb.lo \ +- gdktestutils-directfb.lo gdkvisual-directfb.lo \ +- gdkwindow-directfb.lo gdkwindowid.lo +-libgdk_directfb_la_OBJECTS = $(am_libgdk_directfb_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gdkapplaunchcontext-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcolor-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcursor-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplay-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdnd-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdrawable-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkevents-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkfont-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgc-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgeometry-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkglobals-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkim-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkimage-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeys-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmain-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixmap-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkproperty-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkscreen-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkselection-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkspawn-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdktestutils-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkvisual-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindow-directfb.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindowid.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgdk_directfb_la_SOURCES) +-HEADERS = $(libgdkinclude_HEADERS) +- +-DIST_COMMON = README $(libgdkinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl AUTHORS Makefile.am TODO +-SOURCES = $(libgdk_directfb_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/directfb/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/directfb/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/directfb/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk-directfb.la: $(libgdk_directfb_la_OBJECTS) $(libgdk_directfb_la_DEPENDENCIES) +- $(LINK) $(libgdk_directfb_la_LDFLAGS) $(libgdk_directfb_la_OBJECTS) $(libgdk_directfb_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(libgdk_directfb_la_OBJECTS) $(libgdk_directfb_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -593,149 +515,134 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdkwindowid.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgdkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgdkincludeHEADERS: $(libgdkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdkincludedir)" ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdkincludedir)" || exit $$?; \ + done + + uninstall-libgdkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdkincludedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdkincludedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -743,9 +650,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) ++ for dir in "$(DESTDIR)$(libgdkincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -765,7 +673,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -779,24 +688,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-libgdkincludeHEADERS + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -817,19 +748,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libgdkincludeHEADERS ++uninstall-am: uninstall-libgdkincludeHEADERS ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am \ +- install-libgdkincludeHEADERS install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-info-am \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-libgdkincludeHEADERS install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ++ pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-libgdkincludeHEADERS + + # call as: $(XVFB_START) && someprogram +@@ -887,6 +822,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/Makefile.in +--- gtk+2.0-2.17.10/gdk/Makefile.in 2009-09-01 06:02:56.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,14 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +36,215 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(gdkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl COPYING ++subdir = gdk ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(gdkincludedir)" ++LTLIBRARIES = $(lib_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libgdk_directfb_2_0_la_DEPENDENCIES = directfb/libgdk-directfb.la \ ++ $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++am__libgdk_directfb_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ ++ gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ ++ gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c \ ++ gdkevents.c gdkfont.c gdkgc.c gdkglobals.c gdkimage.c \ ++ gdkinternals.h gdkintl.h gdkkeys.c gdkkeyuni.c \ ++ gdkoffscreenwindow.c gdkpango.c gdkpixbuf-drawable.c \ ++ gdkpixbuf-render.c gdkpixmap.c gdkpoly-generic.h \ ++ gdkpolyreg-generic.c gdkrectangle.c gdkregion-generic.c \ ++ gdkregion-generic.h gdkrgb.c gdkscreen.c gdkselection.c \ ++ gdkvisual.c gdkwindow.c gdkwindowimpl.c gdkenumtypes.c \ ++ gdkmarshalers.c gdkmarshalers.h ++@USE_MEDIALIB_TRUE@am__objects_1 = gdkmedialib.lo ++am__objects_2 = $(am__objects_1) gdk.lo gdkapplaunchcontext.lo \ ++ gdkcairo.lo gdkcolor.lo gdkcursor.lo gdkdisplay.lo \ ++ gdkdisplaymanager.lo gdkdnd.lo gdkdraw.lo gdkevents.lo \ ++ gdkfont.lo gdkgc.lo gdkglobals.lo gdkimage.lo gdkkeys.lo \ ++ gdkkeyuni.lo gdkoffscreenwindow.lo gdkpango.lo \ ++ gdkpixbuf-drawable.lo gdkpixbuf-render.lo gdkpixmap.lo \ ++ gdkpolyreg-generic.lo gdkrectangle.lo gdkregion-generic.lo \ ++ gdkrgb.lo gdkscreen.lo gdkselection.lo gdkvisual.lo \ ++ gdkwindow.lo gdkwindowimpl.lo ++am__objects_3 = $(am__objects_2) gdkenumtypes.lo gdkmarshalers.lo ++am_libgdk_directfb_2_0_la_OBJECTS = $(am__objects_3) ++libgdk_directfb_2_0_la_OBJECTS = $(am_libgdk_directfb_2_0_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgdk_directfb_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_directfb_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libgdk_quartz_2_0_la_DEPENDENCIES = quartz/libgdk-quartz.la \ ++ $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++am__libgdk_quartz_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ ++ gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ ++ gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c \ ++ gdkevents.c gdkfont.c gdkgc.c gdkglobals.c gdkimage.c \ ++ gdkinternals.h gdkintl.h gdkkeys.c gdkkeyuni.c \ ++ gdkoffscreenwindow.c gdkpango.c gdkpixbuf-drawable.c \ ++ gdkpixbuf-render.c gdkpixmap.c gdkpoly-generic.h \ ++ gdkpolyreg-generic.c gdkrectangle.c gdkregion-generic.c \ ++ gdkregion-generic.h gdkrgb.c gdkscreen.c gdkselection.c \ ++ gdkvisual.c gdkwindow.c gdkwindowimpl.c gdkenumtypes.c \ ++ gdkmarshalers.c gdkmarshalers.h gdkkeynames.c ++am_libgdk_quartz_2_0_la_OBJECTS = $(am__objects_3) gdkkeynames.lo ++libgdk_quartz_2_0_la_OBJECTS = $(am_libgdk_quartz_2_0_la_OBJECTS) ++libgdk_quartz_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_quartz_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++am__libgdk_win32_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ ++ gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ ++ gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c \ ++ gdkevents.c gdkfont.c gdkgc.c gdkglobals.c gdkimage.c \ ++ gdkinternals.h gdkintl.h gdkkeys.c gdkkeyuni.c \ ++ gdkoffscreenwindow.c gdkpango.c gdkpixbuf-drawable.c \ ++ gdkpixbuf-render.c gdkpixmap.c gdkpoly-generic.h \ ++ gdkpolyreg-generic.c gdkrectangle.c gdkregion-generic.c \ ++ gdkregion-generic.h gdkrgb.c gdkscreen.c gdkselection.c \ ++ gdkvisual.c gdkwindow.c gdkwindowimpl.c gdkenumtypes.c \ ++ gdkmarshalers.c gdkmarshalers.h gdkkeynames.c ++am_libgdk_win32_2_0_la_OBJECTS = $(am__objects_3) gdkkeynames.lo ++libgdk_win32_2_0_la_OBJECTS = $(am_libgdk_win32_2_0_la_OBJECTS) ++libgdk_win32_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_win32_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libgdk_x11_2_0_la_DEPENDENCIES = x11/libgdk-x11.la \ ++ $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++am__libgdk_x11_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ ++ gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ ++ gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c \ ++ gdkevents.c gdkfont.c gdkgc.c gdkglobals.c gdkimage.c \ ++ gdkinternals.h gdkintl.h gdkkeys.c gdkkeyuni.c \ ++ gdkoffscreenwindow.c gdkpango.c gdkpixbuf-drawable.c \ ++ gdkpixbuf-render.c gdkpixmap.c gdkpoly-generic.h \ ++ gdkpolyreg-generic.c gdkrectangle.c gdkregion-generic.c \ ++ gdkregion-generic.h gdkrgb.c gdkscreen.c gdkselection.c \ ++ gdkvisual.c gdkwindow.c gdkwindowimpl.c gdkenumtypes.c \ ++ gdkmarshalers.c gdkmarshalers.h ++am_libgdk_x11_2_0_la_OBJECTS = $(am__objects_3) ++libgdk_x11_2_0_la_OBJECTS = $(am_libgdk_x11_2_0_la_OBJECTS) ++libgdk_x11_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_x11_2_0_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_directfb_2_0_la_SOURCES) \ ++ $(libgdk_quartz_2_0_la_SOURCES) $(libgdk_win32_2_0_la_SOURCES) \ ++ $(libgdk_x11_2_0_la_SOURCES) ++DIST_SOURCES = $(am__libgdk_directfb_2_0_la_SOURCES_DIST) \ ++ $(am__libgdk_quartz_2_0_la_SOURCES_DIST) \ ++ $(am__libgdk_win32_2_0_la_SOURCES_DIST) \ ++ $(am__libgdk_x11_2_0_la_SOURCES_DIST) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++DATA = $(noinst_DATA) ++HEADERS = $(gdkinclude_HEADERS) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +254,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +261,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +283,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +290,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +315,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +334,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +344,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +375,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +391,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +408,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +420,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +462,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,32 +471,22 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- keynames.txt \ +- keyname-table.h \ +- gen-keyname-table.pl \ +- gdkconfig.h.win32 \ +- gdkkeysyms-update.pl \ +- gdk.def \ +- gdkmarshalers.list \ +- gdkmedialib.h \ +- gdkwindowimpl.h \ +- makeenums.pl \ +- makefile.msc \ +- gdk.symbols \ +- makegdkalias.pl \ +- gdkenumtypes.c.template \ +- gdkenumtypes.h.template \ +- abicheck.sh \ +- pltcheck.sh\ +-$(gdk_built_sources) ++EXTRA_DIST = keynames.txt keyname-table.h gen-keyname-table.pl \ ++ gdkconfig.h.win32 gdkkeysyms-update.pl gdk.def \ ++ gdkmarshalers.list gdkmedialib.h gdkwindowimpl.h makeenums.pl \ ++ makefile.msc gdk.symbols makegdkalias.pl \ ++ gdkenumtypes.c.template gdkenumtypes.h.template abicheck.sh \ ++ pltcheck.sh $(gdk_built_sources) + TEST_PROGS = + + ### testing rules +@@ -436,10 +512,8 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = $(gdktarget) . tests + DIST_SUBDIRS = win32 x11 quartz directfb tests +- + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk\" \ + -DGDK_COMPILATION \ +@@ -449,9 +523,7 @@ + $(GTK_DEBUG_FLAGS) \ + $(GDK_DEP_CFLAGS) + +- + gtarget = $(gdktarget) +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined + + # libtool stuff: set version and export symbols for resolving +@@ -465,7 +537,6 @@ + $(LIBTOOL_EXPORT_OPTIONS) + + @USE_MEDIALIB_FALSE@medialib_sources = +- + @USE_MEDIALIB_TRUE@medialib_sources = \ + @USE_MEDIALIB_TRUE@ gdkmedialib.c + +@@ -509,15 +580,12 @@ + gdkvisual.h \ + gdkwindow.h + +- + gdk_built_public_sources = \ + gdkenumtypes.h + +- + gdk_built_private_headers = \ + gdkalias.h + +- + gdk_c_sources = \ + $(medialib_sources) \ + gdk.c \ +@@ -555,7 +623,6 @@ + gdkwindow.c \ + gdkwindowimpl.c + +- + gdk_built_sources = \ + gdkaliasdef.c \ + gdkenumtypes.c \ +@@ -565,53 +632,42 @@ + $(gdk_built_private_headers) + + +- + # + # setup GDK sources and their dependencies + # + gdkincludedir = $(includedir)/gtk-2.0/gdk + gdkinclude_HEADERS = $(gdk_public_h_sources) $(gdk_built_public_sources) +- + common_sources = \ + $(gdk_c_sources) \ + gdkenumtypes.c \ + gdkmarshalers.c \ + gdkmarshalers.h + +- + libgdk_directfb_2_0_la_SOURCES = $(common_sources) + libgdk_directfb_2_0_la_LIBADD = directfb/libgdk-directfb.la $(GDK_DEP_LIBS) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la + + libgdk_directfb_2_0_la_LDFLAGS = $(LDADD) +- + libgdk_x11_2_0_la_SOURCES = $(common_sources) + libgdk_x11_2_0_la_LIBADD = x11/libgdk-x11.la $(GDK_DEP_LIBS) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la + + libgdk_x11_2_0_la_LDFLAGS = $(LDADD) +- + libgdk_quartz_2_0_la_SOURCES = $(common_sources) gdkkeynames.c + libgdk_quartz_2_0_la_LIBADD = quartz/libgdk-quartz.la $(GDK_DEP_LIBS) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la + + libgdk_quartz_2_0_la_LDFLAGS = $(LDADD) +- + libgdk_win32_2_0_la_SOURCES = $(common_sources) gdkkeynames.c + libgdk_win32_2_0_la_LIBADD = win32/libgdk-win32.la $(GDK_DEP_LIBS) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la + + libgdk_win32_2_0_la_DEPENDENCIES = win32/libgdk-win32.la win32/rc/gdk-win32-res.o gdk.def + libgdk_win32_2_0_la_LDFLAGS = -Wl,win32/rc/gdk-win32-res.o -export-symbols $(srcdir)/gdk.def $(LDADD) +- + @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gdk-win32-$(GTK_API_VERSION).lib +- + @OS_LINUX_TRUE@TESTS = abicheck.sh pltcheck.sh +- + lib_LTLIBRARIES = $(gdktargetlib) +- + EXTRA_LTLIBRARIES = libgdk-x11-2.0.la libgdk-win32-2.0.la libgdk-quartz-2.0.la libgdk-directfb-2.0.la +- + MAINTAINERCLEANFILES = $(gdk_built_sources) stamp-gdkenumtypes.h + EXTRA_HEADERS = + +@@ -625,186 +681,84 @@ + $(gdk_built_sources) \ + gdkconfig.h + +- + DISTCLEANFILES = gdkconfig.h stamp-gc-h +-subdir = gdk +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(lib_LTLIBRARIES) +- +-libgdk_directfb_2_0_la_DEPENDENCIES = directfb/libgdk-directfb.la \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-am__libgdk_directfb_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ +- gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ +- gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c gdkevents.c \ +- gdkfont.c gdkgc.c gdkglobals.c gdkimage.c gdkinternals.h \ +- gdkintl.h gdkkeys.c gdkkeyuni.c gdkoffscreenwindow.c gdkpango.c \ +- gdkpixbuf-drawable.c gdkpixbuf-render.c gdkpixmap.c \ +- gdkpoly-generic.h gdkpolyreg-generic.c gdkrectangle.c \ +- gdkregion-generic.c gdkregion-generic.h gdkrgb.c gdkscreen.c \ +- gdkselection.c gdkvisual.c gdkwindow.c gdkwindowimpl.c \ +- gdkenumtypes.c gdkmarshalers.c gdkmarshalers.h +-@USE_MEDIALIB_TRUE@am__objects_1 = gdkmedialib.lo +-@USE_MEDIALIB_FALSE@am__objects_1 = +-am__objects_2 = $(am__objects_1) gdk.lo gdkapplaunchcontext.lo \ +- gdkcairo.lo gdkcolor.lo gdkcursor.lo gdkdisplay.lo \ +- gdkdisplaymanager.lo gdkdnd.lo gdkdraw.lo gdkevents.lo \ +- gdkfont.lo gdkgc.lo gdkglobals.lo gdkimage.lo gdkkeys.lo \ +- gdkkeyuni.lo gdkoffscreenwindow.lo gdkpango.lo \ +- gdkpixbuf-drawable.lo gdkpixbuf-render.lo gdkpixmap.lo \ +- gdkpolyreg-generic.lo gdkrectangle.lo gdkregion-generic.lo \ +- gdkrgb.lo gdkscreen.lo gdkselection.lo gdkvisual.lo \ +- gdkwindow.lo gdkwindowimpl.lo +-am__objects_3 = $(am__objects_2) gdkenumtypes.lo gdkmarshalers.lo +-am_libgdk_directfb_2_0_la_OBJECTS = $(am__objects_3) +-libgdk_directfb_2_0_la_OBJECTS = $(am_libgdk_directfb_2_0_la_OBJECTS) +-libgdk_quartz_2_0_la_DEPENDENCIES = quartz/libgdk-quartz.la \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-am__libgdk_quartz_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ +- gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ +- gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c gdkevents.c \ +- gdkfont.c gdkgc.c gdkglobals.c gdkimage.c gdkinternals.h \ +- gdkintl.h gdkkeys.c gdkkeyuni.c gdkoffscreenwindow.c gdkpango.c \ +- gdkpixbuf-drawable.c gdkpixbuf-render.c gdkpixmap.c \ +- gdkpoly-generic.h gdkpolyreg-generic.c gdkrectangle.c \ +- gdkregion-generic.c gdkregion-generic.h gdkrgb.c gdkscreen.c \ +- gdkselection.c gdkvisual.c gdkwindow.c gdkwindowimpl.c \ +- gdkenumtypes.c gdkmarshalers.c gdkmarshalers.h gdkkeynames.c +-am_libgdk_quartz_2_0_la_OBJECTS = $(am__objects_3) gdkkeynames.lo +-libgdk_quartz_2_0_la_OBJECTS = $(am_libgdk_quartz_2_0_la_OBJECTS) +-am__libgdk_win32_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ +- gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ +- gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c gdkevents.c \ +- gdkfont.c gdkgc.c gdkglobals.c gdkimage.c gdkinternals.h \ +- gdkintl.h gdkkeys.c gdkkeyuni.c gdkoffscreenwindow.c gdkpango.c \ +- gdkpixbuf-drawable.c gdkpixbuf-render.c gdkpixmap.c \ +- gdkpoly-generic.h gdkpolyreg-generic.c gdkrectangle.c \ +- gdkregion-generic.c gdkregion-generic.h gdkrgb.c gdkscreen.c \ +- gdkselection.c gdkvisual.c gdkwindow.c gdkwindowimpl.c \ +- gdkenumtypes.c gdkmarshalers.c gdkmarshalers.h gdkkeynames.c +-am_libgdk_win32_2_0_la_OBJECTS = $(am__objects_3) gdkkeynames.lo +-libgdk_win32_2_0_la_OBJECTS = $(am_libgdk_win32_2_0_la_OBJECTS) +-libgdk_x11_2_0_la_DEPENDENCIES = x11/libgdk-x11.la \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-am__libgdk_x11_2_0_la_SOURCES_DIST = gdkmedialib.c gdk.c \ +- gdkapplaunchcontext.c gdkcairo.c gdkcolor.c gdkcursor.c \ +- gdkdisplay.c gdkdisplaymanager.c gdkdnd.c gdkdraw.c gdkevents.c \ +- gdkfont.c gdkgc.c gdkglobals.c gdkimage.c gdkinternals.h \ +- gdkintl.h gdkkeys.c gdkkeyuni.c gdkoffscreenwindow.c gdkpango.c \ +- gdkpixbuf-drawable.c gdkpixbuf-render.c gdkpixmap.c \ +- gdkpoly-generic.h gdkpolyreg-generic.c gdkrectangle.c \ +- gdkregion-generic.c gdkregion-generic.h gdkrgb.c gdkscreen.c \ +- gdkselection.c gdkvisual.c gdkwindow.c gdkwindowimpl.c \ +- gdkenumtypes.c gdkmarshalers.c gdkmarshalers.h +-am_libgdk_x11_2_0_la_OBJECTS = $(am__objects_3) +-libgdk_x11_2_0_la_OBJECTS = $(am_libgdk_x11_2_0_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gdk.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkapplaunchcontext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcairo.Plo ./$(DEPDIR)/gdkcolor.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcursor.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplay.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplaymanager.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdnd.Plo ./$(DEPDIR)/gdkdraw.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkenumtypes.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkevents.Plo ./$(DEPDIR)/gdkfont.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgc.Plo ./$(DEPDIR)/gdkglobals.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkimage.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeynames.Plo ./$(DEPDIR)/gdkkeys.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeyuni.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmarshalers.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmedialib.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkoffscreenwindow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpango.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixbuf-drawable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixbuf-render.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixmap.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpolyreg-generic.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkrectangle.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkregion-generic.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkrgb.Plo ./$(DEPDIR)/gdkscreen.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkselection.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkvisual.Plo ./$(DEPDIR)/gdkwindow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindowimpl.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__libgdk_directfb_2_0_la_SOURCES_DIST) \ +- $(am__libgdk_quartz_2_0_la_SOURCES_DIST) \ +- $(am__libgdk_win32_2_0_la_SOURCES_DIST) \ +- $(am__libgdk_x11_2_0_la_SOURCES_DIST) +-DATA = $(noinst_DATA) +- +-HEADERS = $(gdkinclude_HEADERS) +- +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(gdkinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl COPYING Makefile.am +-SOURCES = $(libgdk_directfb_2_0_la_SOURCES) $(libgdk_quartz_2_0_la_SOURCES) $(libgdk_win32_2_0_la_SOURCES) $(libgdk_x11_2_0_la_SOURCES) +- + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-libLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libdir) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ ++ } + + uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + + clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk-directfb-2.0.la: $(libgdk_directfb_2_0_la_OBJECTS) $(libgdk_directfb_2_0_la_DEPENDENCIES) +- $(LINK) $(libgdk_directfb_2_0_la_LDFLAGS) $(libgdk_directfb_2_0_la_OBJECTS) $(libgdk_directfb_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_directfb_2_0_la_LINK) $(libgdk_directfb_2_0_la_OBJECTS) $(libgdk_directfb_2_0_la_LIBADD) $(LIBS) + libgdk-quartz-2.0.la: $(libgdk_quartz_2_0_la_OBJECTS) $(libgdk_quartz_2_0_la_DEPENDENCIES) +- $(LINK) $(libgdk_quartz_2_0_la_LDFLAGS) $(libgdk_quartz_2_0_la_OBJECTS) $(libgdk_quartz_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_quartz_2_0_la_LINK) $(libgdk_quartz_2_0_la_OBJECTS) $(libgdk_quartz_2_0_la_LIBADD) $(LIBS) + libgdk-win32-2.0.la: $(libgdk_win32_2_0_la_OBJECTS) $(libgdk_win32_2_0_la_DEPENDENCIES) +- $(LINK) $(libgdk_win32_2_0_la_LDFLAGS) $(libgdk_win32_2_0_la_OBJECTS) $(libgdk_win32_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_win32_2_0_la_LINK) $(libgdk_win32_2_0_la_OBJECTS) $(libgdk_win32_2_0_la_LIBADD) $(LIBS) + libgdk-x11-2.0.la: $(libgdk_x11_2_0_la_OBJECTS) $(libgdk_x11_2_0_la_DEPENDENCIES) +- $(LINK) $(libgdk_x11_2_0_la_LDFLAGS) $(libgdk_x11_2_0_la_OBJECTS) $(libgdk_x11_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_x11_2_0_la_LINK) $(libgdk_x11_2_0_la_OBJECTS) $(libgdk_x11_2_0_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -845,65 +799,54 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdkwindowimpl.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-gdkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-gdkincludeHEADERS: $(gdkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(gdkincludedir) +- @list='$(gdkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(gdkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(gdkincludedir)" ++ @list='$(gdkinclude_HEADERS)'; test -n "$(gdkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(gdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gdkincludedir)/$$f"; \ +- $(gdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gdkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(gdkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(gdkincludedir)" || exit $$?; \ + done + + uninstall-gdkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(gdkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(gdkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(gdkincludedir)/$$f; \ +- done ++ @list='$(gdkinclude_HEADERS)'; test -n "$(gdkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(gdkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(gdkincludedir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -912,7 +855,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -923,16 +872,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -952,79 +906,79 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +@@ -1032,7 +986,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -1041,108 +996,139 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -1154,8 +1140,9 @@ + all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(gdkincludedir) +- ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(gdkincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-recursive + install-exec: install-exec-recursive +@@ -1176,14 +1163,15 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) ++ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + clean: clean-recursive + + clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ +@@ -1193,26 +1181,47 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-local distclean-tags ++ distclean-local distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: install-data-local install-gdkincludeHEADERS + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: install-exec-local install-libLTLIBRARIES + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-exec-hook ++install-html: install-html-recursive ++ ++install-html-am: + + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -1233,32 +1242,31 @@ + + ps-am: + +-uninstall-am: uninstall-gdkincludeHEADERS uninstall-info-am \ +- uninstall-libLTLIBRARIES uninstall-local +- +-uninstall-info: uninstall-info-recursive ++uninstall-am: uninstall-gdkincludeHEADERS uninstall-libLTLIBRARIES \ ++ uninstall-local + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-TESTS \ +- check-am check-local clean clean-generic clean-libLTLIBRARIES \ +- clean-libtool clean-recursive ctags ctags-recursive distclean \ +- distclean-compile distclean-generic distclean-libtool \ +- distclean-local distclean-recursive distclean-tags distdir dvi \ +- dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-local \ +- install-data-recursive install-exec install-exec-am \ +- install-exec-local install-exec-recursive \ +- install-gdkincludeHEADERS install-info install-info-am \ +- install-info-recursive install-libLTLIBRARIES install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ +- pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ +- tags-recursive uninstall uninstall-am \ +- uninstall-gdkincludeHEADERS uninstall-info-am \ +- uninstall-info-recursive uninstall-libLTLIBRARIES \ +- uninstall-local uninstall-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ++ check-am ctags-recursive install install-am install-exec-am \ ++ install-strip tags-recursive ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-TESTS check-am check-local clean \ ++ clean-generic clean-libLTLIBRARIES clean-libtool ctags \ ++ ctags-recursive distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-local distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-local install-dvi \ ++ install-dvi-am install-exec install-exec-am install-exec-hook \ ++ install-exec-local install-gdkincludeHEADERS install-html \ ++ install-html-am install-info install-info-am \ ++ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am \ ++ uninstall-gdkincludeHEADERS uninstall-libLTLIBRARIES \ ++ uninstall-local + + # call as: $(XVFB_START) && someprogram + +@@ -1406,6 +1414,7 @@ + done + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/quartz/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/quartz/Makefile.in +--- gtk+2.0-2.17.10/gdk/quartz/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/quartz/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,93 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = gdk/quartz ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++LTLIBRARIES = $(noinst_LTLIBRARIES) ++libgdk_quartz_la_LIBADD = ++am_libgdk_quartz_la_OBJECTS = GdkQuartzView.lo GdkQuartzWindow.lo \ ++ gdkapplaunchcontext-quartz.lo gdkcolor-quartz.lo \ ++ gdkcursor-quartz.lo gdkdisplay-quartz.lo gdkdnd-quartz.lo \ ++ gdkdrawable-quartz.lo gdkevents-quartz.lo \ ++ gdkeventloop-quartz.lo gdkfont-quartz.lo gdkgc-quartz.lo \ ++ gdkgeometry-quartz.lo gdkglobals-quartz.lo gdkim-quartz.lo \ ++ gdkimage-quartz.lo gdkinput.lo gdkkeys-quartz.lo \ ++ gdkmain-quartz.lo gdkpixmap-quartz.lo gdkproperty-quartz.lo \ ++ gdkscreen-quartz.lo gdkselection-quartz.lo gdkspawn-quartz.lo \ ++ gdktestutils-quartz.lo gdkvisual-quartz.lo gdkwindow-quartz.lo ++libgdk_quartz_la_OBJECTS = $(am_libgdk_quartz_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_quartz_la_SOURCES) ++DIST_SOURCES = $(libgdk_quartz_la_SOURCES) ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libgdkincludedir)" ++HEADERS = $(libgdkinclude_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +131,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +138,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +160,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +167,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +192,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +211,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +221,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +252,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +268,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +285,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +297,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +339,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +348,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +384,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + libgdkincludedir = $(includedir)/gtk-2.0/gdk +- + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk\" \ + -DGDK_COMPILATION \ +@@ -431,11 +395,8 @@ + $(GDK_DEP_CFLAGS) \ + "-xobjective-c" + +- + LDADDS = $(GDK_DEP_LIBS) +- + noinst_LTLIBRARIES = libgdk-quartz.la +- + libgdk_quartz_la_SOURCES = \ + GdkQuartzView.c \ + GdkQuartzView.h \ +@@ -474,98 +435,57 @@ + gdkwindow-quartz.h \ + xcursors.h + +- + libgdkinclude_HEADERS = \ + gdkquartz.h + +-subdir = gdk/quartz +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(noinst_LTLIBRARIES) +- +-libgdk_quartz_la_LDFLAGS = +-libgdk_quartz_la_LIBADD = +-am_libgdk_quartz_la_OBJECTS = GdkQuartzView.lo GdkQuartzWindow.lo \ +- gdkapplaunchcontext-quartz.lo gdkcolor-quartz.lo \ +- gdkcursor-quartz.lo gdkdisplay-quartz.lo gdkdnd-quartz.lo \ +- gdkdrawable-quartz.lo gdkevents-quartz.lo \ +- gdkeventloop-quartz.lo gdkfont-quartz.lo gdkgc-quartz.lo \ +- gdkgeometry-quartz.lo gdkglobals-quartz.lo gdkim-quartz.lo \ +- gdkimage-quartz.lo gdkinput.lo gdkkeys-quartz.lo \ +- gdkmain-quartz.lo gdkpixmap-quartz.lo gdkproperty-quartz.lo \ +- gdkscreen-quartz.lo gdkselection-quartz.lo gdkspawn-quartz.lo \ +- gdktestutils-quartz.lo gdkvisual-quartz.lo gdkwindow-quartz.lo +-libgdk_quartz_la_OBJECTS = $(am_libgdk_quartz_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/GdkQuartzView.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/GdkQuartzWindow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkapplaunchcontext-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcolor-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcursor-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplay-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdnd-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdrawable-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkeventloop-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkevents-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkfont-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgc-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgeometry-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkglobals-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkim-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkimage-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeys-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmain-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixmap-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkproperty-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkscreen-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkselection-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkspawn-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdktestutils-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkvisual-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindow-quartz.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgdk_quartz_la_SOURCES) +-HEADERS = $(libgdkinclude_HEADERS) +- +-DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libgdk_quartz_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/quartz/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/quartz/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/quartz/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk-quartz.la: $(libgdk_quartz_la_OBJECTS) $(libgdk_quartz_la_DEPENDENCIES) +- $(LINK) $(libgdk_quartz_la_LDFLAGS) $(libgdk_quartz_la_OBJECTS) $(libgdk_quartz_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(libgdk_quartz_la_OBJECTS) $(libgdk_quartz_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -599,149 +519,134 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdkwindow-quartz.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgdkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgdkincludeHEADERS: $(libgdkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdkincludedir)" ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdkincludedir)" || exit $$?; \ + done + + uninstall-libgdkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdkincludedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdkincludedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -749,9 +654,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) ++ for dir in "$(DESTDIR)$(libgdkincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -771,7 +677,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -785,24 +692,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-libgdkincludeHEADERS + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -823,19 +752,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libgdkincludeHEADERS ++uninstall-am: uninstall-libgdkincludeHEADERS ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am \ +- install-libgdkincludeHEADERS install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-info-am \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-libgdkincludeHEADERS install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ++ pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-libgdkincludeHEADERS + + # call as: $(XVFB_START) && someprogram +@@ -893,6 +826,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/tests/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/tests/Makefile.in +--- gtk+2.0-2.17.10/gdk/tests/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/tests/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,37 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++check_PROGRAMS = ++TESTS = $(am__EXEEXT_1) ++subdir = gdk/tests ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++am__EXEEXT_1 = ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +73,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +80,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +102,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +109,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +134,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +153,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +163,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +194,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +210,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +227,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +239,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +281,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +290,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,21 +326,14 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + NULL = +- +-# check_PROGRAMS=check-gdk-cairo +-check_PROGRAMS = +-TESTS = $(check_PROGRAMS) + TESTS_ENVIRONMENT = GDK_PIXBUF_MODULE_FILE=$(top_builddir)/gdk-pixbuf/gdk-pixbuf.loaders +- + AM_CPPFLAGS = \ + $(GDK_DEP_CFLAGS) \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ + $(NULL) + +- + check_gdk_cairo_SOURCES = \ + check-gdk-cairo.c \ + $(NULL) +@@ -443,45 +344,58 @@ + $(top_builddir)/gdk/libgdk-$(gdktarget)-$(GTK_API_VERSION).la \ + $(NULL) + +- + CLEANFILES = \ + cairosurface.png \ + gdksurface.png + +-subdir = gdk/tests +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-check_PROGRAMS = +-DIST_SOURCES = +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/tests/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/tests/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/tests/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-checkPROGRAMS: +- @list='$(check_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + +@@ -492,7 +406,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -501,96 +416,112 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -599,7 +530,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local + check: check-am + all-am: Makefile +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -621,35 +551,59 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + clean: clean-am + +-clean-am: clean-checkPROGRAMS clean-generic clean-libtool mostlyclean-am ++clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ ++ mostlyclean-am + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -668,17 +622,21 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-TESTS check-am check-local clean \ + clean-checkPROGRAMS clean-generic clean-libtool distclean \ +- distclean-generic distclean-libtool distdir dvi dvi-am info \ +- info-am install install-am install-data install-data-am \ +- install-exec install-exec-am install-info install-info-am \ +- install-man install-strip installcheck installcheck-am \ +- installdirs maintainer-clean maintainer-clean-generic \ +- mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ +- ps ps-am uninstall uninstall-am uninstall-info-am ++ distclean-generic distclean-libtool distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -735,6 +693,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/win32/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/win32/Makefile.in +--- gtk+2.0-2.17.10/gdk/win32/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/win32/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,131 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = gdk/win32 ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++LTLIBRARIES = $(noinst_LTLIBRARIES) ++libgdk_win32_la_LIBADD = ++am_libgdk_win32_la_OBJECTS = gdkapplaunchcontext-win32.lo \ ++ gdkcolor-win32.lo gdkcursor-win32.lo gdkdisplay-win32.lo \ ++ gdkdnd-win32.lo gdkdrawable-win32.lo gdkevents-win32.lo \ ++ gdkfont-win32.lo gdkgc-win32.lo gdkgeometry-win32.lo \ ++ gdkglobals-win32.lo gdkim-win32.lo gdkimage-win32.lo \ ++ gdkinput.lo gdkinput-win32.lo gdkkeys-win32.lo \ ++ gdkmain-win32.lo gdkpixmap-win32.lo gdkproperty-win32.lo \ ++ gdkscreen-win32.lo gdkselection-win32.lo gdkspawn-win32.lo \ ++ gdktestutils-win32.lo gdkvisual-win32.lo gdkwin32id.lo \ ++ gdkwindow-win32.lo ++libgdk_win32_la_OBJECTS = $(am_libgdk_win32_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_win32_la_SOURCES) ++DIST_SOURCES = $(libgdk_win32_la_SOURCES) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libgdkincludedir)" ++HEADERS = $(libgdkinclude_HEADERS) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +169,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +176,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +198,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +205,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +230,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +249,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +259,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +290,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +306,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +323,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +335,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +377,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,17 +386,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- bdfcursor.c \ +- makefile.msc +- ++EXTRA_DIST = bdfcursor.c makefile.msc + TEST_PROGS = + + ### testing rules +@@ -421,9 +422,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + libgdkincludedir = $(includedir)/gtk-2.0/gdk +- + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk\" \ + -DINSIDE_GDK_WIN32 \ +@@ -435,13 +434,9 @@ + $(GDK_WIN32_EXTRA_CFLAGS)\ + -DGDK_COMPILATION + +- + LDADDS = $(GDK_DEP_LIBS) +- + noinst_LTLIBRARIES = libgdk-win32.la +- + SUBDIRS = rc +- + libgdk_win32_la_SOURCES = \ + xcursors.h \ + gdkapplaunchcontext-win32.c \ +@@ -479,103 +474,57 @@ + wintab.h \ + pktdef.h + +- + libgdkinclude_HEADERS = \ + gdkwin32.h + +-subdir = gdk/win32 +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(noinst_LTLIBRARIES) +- +-libgdk_win32_la_LDFLAGS = +-libgdk_win32_la_LIBADD = +-am_libgdk_win32_la_OBJECTS = gdkapplaunchcontext-win32.lo \ +- gdkcolor-win32.lo gdkcursor-win32.lo gdkdisplay-win32.lo \ +- gdkdnd-win32.lo gdkdrawable-win32.lo gdkevents-win32.lo \ +- gdkfont-win32.lo gdkgc-win32.lo gdkgeometry-win32.lo \ +- gdkglobals-win32.lo gdkim-win32.lo gdkimage-win32.lo \ +- gdkinput.lo gdkinput-win32.lo gdkkeys-win32.lo gdkmain-win32.lo \ +- gdkpixmap-win32.lo gdkproperty-win32.lo gdkscreen-win32.lo \ +- gdkselection-win32.lo gdkspawn-win32.lo gdktestutils-win32.lo \ +- gdkvisual-win32.lo gdkwin32id.lo gdkwindow-win32.lo +-libgdk_win32_la_OBJECTS = $(am_libgdk_win32_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gdkapplaunchcontext-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcolor-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcursor-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplay-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdnd-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdrawable-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkevents-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkfont-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgc-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgeometry-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkglobals-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkim-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkimage-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeys-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmain-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixmap-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkproperty-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkscreen-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkselection-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkspawn-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdktestutils-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkvisual-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwin32id.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindow-win32.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgdk_win32_la_SOURCES) +-HEADERS = $(libgdkinclude_HEADERS) +- +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) +-SOURCES = $(libgdk_win32_la_SOURCES) +- + all: all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/win32/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/win32/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/win32/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk-win32.la: $(libgdk_win32_la_OBJECTS) $(libgdk_win32_la_DEPENDENCIES) +- $(LINK) $(libgdk_win32_la_LDFLAGS) $(libgdk_win32_la_OBJECTS) $(libgdk_win32_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(libgdk_win32_la_OBJECTS) $(libgdk_win32_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -608,65 +557,54 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdkwindow-win32.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgdkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgdkincludeHEADERS: $(libgdkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdkincludedir)" ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdkincludedir)" || exit $$?; \ + done + + uninstall-libgdkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdkincludedir)/$$f; \ +- done ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdkincludedir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -675,7 +613,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -686,16 +630,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -715,124 +664,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -843,8 +805,9 @@ + all-am: Makefile $(LTLIBRARIES) $(HEADERS) + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) +- ++ for dir in "$(DESTDIR)$(libgdkincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -864,7 +827,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -878,24 +842,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: install-libgdkincludeHEADERS + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -916,28 +902,26 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libgdkincludeHEADERS ++uninstall-am: uninstall-libgdkincludeHEADERS + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool \ +- clean-noinstLTLIBRARIES clean-recursive ctags ctags-recursive \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-recursive distclean-tags distdir dvi dvi-am \ +- dvi-recursive info info-am info-recursive install install-am \ +- install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive \ +- install-libgdkincludeHEADERS install-man install-recursive \ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool clean-noinstLTLIBRARIES ctags ctags-recursive \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-libgdkincludeHEADERS install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ +- installdirs-am installdirs-recursive maintainer-clean \ +- maintainer-clean-generic maintainer-clean-recursive mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ +- mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ +- ps-recursive tags tags-recursive uninstall uninstall-am \ +- uninstall-info-am uninstall-info-recursive \ +- uninstall-libgdkincludeHEADERS uninstall-recursive ++ installdirs-am maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ ++ uninstall uninstall-am uninstall-libgdkincludeHEADERS + + # call as: $(XVFB_START) && someprogram + +@@ -994,6 +978,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/win32/rc/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/win32/rc/Makefile.in +--- gtk+2.0-2.17.10/gdk/win32/rc/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/win32/rc/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,33 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/gdk.rc.in $(top_srcdir)/Makefile.decl ++subdir = gdk/win32/rc ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = gdk.rc ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++DATA = $(noinst_DATA) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +70,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +77,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +99,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +106,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +131,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +150,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +160,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +191,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +207,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +224,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +236,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +278,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,18 +287,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- gdk.rc \ +- gdk.rc.in \ +- gtk.ico +- ++EXTRA_DIST = gdk.rc gdk.rc.in gtk.ico + TEST_PROGS = + + ### testing rules +@@ -422,27 +323,41 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @USE_WIN32_TRUE@noinst_DATA = gdk-win32-res.o +-subdir = gdk/win32/rc +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = gdk.rc +-DIST_SOURCES = +-DATA = $(noinst_DATA) +- +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am gdk.rc.in + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/win32/rc/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-gdk.rc: $(top_builddir)/config.status gdk.rc.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/win32/rc/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/win32/rc/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++gdk.rc: $(top_builddir)/config.status $(srcdir)/gdk.rc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + + mostlyclean-libtool: +@@ -450,46 +365,40 @@ + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -497,7 +406,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(DATA) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -518,7 +426,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -529,24 +438,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -565,17 +496,21 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-am check-local clean clean-generic \ + clean-libtool distclean distclean-generic distclean-libtool \ +- distdir dvi dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am ++ distdir dvi dvi-am html html-am info info-am install \ ++ install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip installcheck installcheck-am installdirs \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -635,6 +570,7 @@ + $(WINDRES) gdk.rc $@ + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk/x11/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk/x11/Makefile.in +--- gtk+2.0-2.17.10/gdk/x11/Makefile.in 2009-09-01 06:02:57.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk/x11/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,14 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,13 +36,122 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl + @XINPUT_XFREE_TRUE@am__append_1 = gdkinput-x11.c gdkinput-xfree.c + @XINPUT_XFREE_FALSE@am__append_2 = gdkinput-none.c ++noinst_PROGRAMS = checksettings$(EXEEXT) ++TESTS = checksettings$(EXEEXT) ++subdir = gdk/x11 ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++LTLIBRARIES = $(noinst_LTLIBRARIES) ++libgdk_x11_la_LIBADD = ++am__libgdk_x11_la_SOURCES_DIST = MwmUtil.h gdkapplaunchcontext-x11.c \ ++ gdkasync.c gdkasync.h gdkcolor-x11.c gdkcursor-x11.c \ ++ gdkdisplay-x11.c gdkdisplay-x11.h gdkdnd-x11.c \ ++ gdkdrawable-x11.c gdkdrawable-x11.h gdkevents-x11.c \ ++ gdkfont-x11.c gdkgc-x11.c gdkgeometry-x11.c gdkglobals-x11.c \ ++ gdkim-x11.c gdkimage-x11.c gdkinput.c gdkkeys-x11.c \ ++ gdkmain-x11.c gdkpixmap-x11.c gdkpixmap-x11.h \ ++ gdkproperty-x11.c gdkscreen-x11.c gdkscreen-x11.h \ ++ gdkselection-x11.c gdkspawn-x11.c gdktestutils-x11.c \ ++ gdkvisual-x11.c gdkwindow-x11.c gdkwindow-x11.h \ ++ gdkxftdefaults.c gdkxid.c gdkx.h gdkprivate-x11.h \ ++ gdkinputprivate.h xsettings-client.h xsettings-client.c \ ++ xsettings-common.h xsettings-common.c gdkinput-x11.c \ ++ gdkinput-xfree.c gdkinput-none.c ++@XINPUT_XFREE_TRUE@am__objects_1 = gdkinput-x11.lo gdkinput-xfree.lo ++@XINPUT_XFREE_FALSE@am__objects_2 = gdkinput-none.lo ++am_libgdk_x11_la_OBJECTS = gdkapplaunchcontext-x11.lo gdkasync.lo \ ++ gdkcolor-x11.lo gdkcursor-x11.lo gdkdisplay-x11.lo \ ++ gdkdnd-x11.lo gdkdrawable-x11.lo gdkevents-x11.lo \ ++ gdkfont-x11.lo gdkgc-x11.lo gdkgeometry-x11.lo \ ++ gdkglobals-x11.lo gdkim-x11.lo gdkimage-x11.lo gdkinput.lo \ ++ gdkkeys-x11.lo gdkmain-x11.lo gdkpixmap-x11.lo \ ++ gdkproperty-x11.lo gdkscreen-x11.lo gdkselection-x11.lo \ ++ gdkspawn-x11.lo gdktestutils-x11.lo gdkvisual-x11.lo \ ++ gdkwindow-x11.lo gdkxftdefaults.lo gdkxid.lo \ ++ xsettings-client.lo xsettings-common.lo $(am__objects_1) \ ++ $(am__objects_2) ++libgdk_x11_la_OBJECTS = $(am_libgdk_x11_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++PROGRAMS = $(noinst_PROGRAMS) ++checksettings_SOURCES = checksettings.c ++checksettings_OBJECTS = checksettings.$(OBJEXT) ++am__DEPENDENCIES_1 = ++checksettings_DEPENDENCIES = libgdk-x11.la $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_x11_la_SOURCES) checksettings.c ++DIST_SOURCES = $(am__libgdk_x11_la_SOURCES_DIST) checksettings.c ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libgdkincludedir)" ++HEADERS = $(libgdkinclude_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -53,10 +161,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -64,13 +168,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -87,8 +190,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -96,10 +197,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -125,6 +222,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -143,8 +241,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -155,95 +251,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -267,24 +282,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -292,13 +298,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -310,28 +315,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -340,22 +327,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -379,6 +369,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -387,9 +378,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -397,12 +391,8 @@ + + # We need to include all these C files here since the conditionals + # don't seem to be correctly expanded for the dist files. +-EXTRA_DIST = \ +- gdkinput-x11.c \ +- gdkinput-xfree.c \ +- gdkinput-none.c \ ++EXTRA_DIST = gdkinput-x11.c gdkinput-xfree.c gdkinput-none.c \ + gdksettings.c +- + TEST_PROGS = + + ### testing rules +@@ -428,9 +418,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + libgdkincludedir = $(includedir)/gtk-2.0/gdk +- + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk\" \ + -DGDK_COMPILATION \ +@@ -440,191 +428,85 @@ + $(GTK_DEBUG_FLAGS) \ + $(GDK_DEP_CFLAGS) + +- + LDADDS = $(GDK_DEP_LIBS) +- + noinst_LTLIBRARIES = libgdk-x11.la +- +-libgdk_x11_la_SOURCES = \ +- MwmUtil.h \ +- gdkapplaunchcontext-x11.c \ +- gdkasync.c \ +- gdkasync.h \ +- gdkcolor-x11.c \ +- gdkcursor-x11.c \ +- gdkdisplay-x11.c \ +- gdkdisplay-x11.h \ +- gdkdnd-x11.c \ +- gdkdrawable-x11.c \ +- gdkdrawable-x11.h \ +- gdkevents-x11.c \ +- gdkfont-x11.c \ +- gdkgc-x11.c \ +- gdkgeometry-x11.c \ +- gdkglobals-x11.c \ +- gdkim-x11.c \ +- gdkimage-x11.c \ +- gdkinput.c \ +- gdkkeys-x11.c \ +- gdkmain-x11.c \ +- gdkpixmap-x11.c \ +- gdkpixmap-x11.h \ +- gdkproperty-x11.c \ +- gdkscreen-x11.c \ +- gdkscreen-x11.h \ +- gdkselection-x11.c \ +- gdkspawn-x11.c \ +- gdktestutils-x11.c \ +- gdkvisual-x11.c \ +- gdkwindow-x11.c \ +- gdkwindow-x11.h \ +- gdkxftdefaults.c \ +- gdkxid.c \ +- gdkx.h \ +- gdkprivate-x11.h \ +- gdkinputprivate.h \ +- xsettings-client.h \ +- xsettings-client.c \ +- xsettings-common.h \ +- xsettings-common.c\ +-$(am__append_1) $(am__append_2) +- ++libgdk_x11_la_SOURCES = MwmUtil.h gdkapplaunchcontext-x11.c gdkasync.c \ ++ gdkasync.h gdkcolor-x11.c gdkcursor-x11.c gdkdisplay-x11.c \ ++ gdkdisplay-x11.h gdkdnd-x11.c gdkdrawable-x11.c \ ++ gdkdrawable-x11.h gdkevents-x11.c gdkfont-x11.c gdkgc-x11.c \ ++ gdkgeometry-x11.c gdkglobals-x11.c gdkim-x11.c gdkimage-x11.c \ ++ gdkinput.c gdkkeys-x11.c gdkmain-x11.c gdkpixmap-x11.c \ ++ gdkpixmap-x11.h gdkproperty-x11.c gdkscreen-x11.c \ ++ gdkscreen-x11.h gdkselection-x11.c gdkspawn-x11.c \ ++ gdktestutils-x11.c gdkvisual-x11.c gdkwindow-x11.c \ ++ gdkwindow-x11.h gdkxftdefaults.c gdkxid.c gdkx.h \ ++ gdkprivate-x11.h gdkinputprivate.h xsettings-client.h \ ++ xsettings-client.c xsettings-common.h xsettings-common.c \ ++ $(am__append_1) $(am__append_2) + libgdkinclude_HEADERS = \ + gdkx.h + +- +-noinst_PROGRAMS = checksettings + checksettings_LDADD = libgdk-x11.la $(GLIB_LIBS) $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +- +-TESTS = checksettings +-subdir = gdk/x11 +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(noinst_LTLIBRARIES) +- +-libgdk_x11_la_LDFLAGS = +-libgdk_x11_la_LIBADD = +-am__libgdk_x11_la_SOURCES_DIST = MwmUtil.h gdkapplaunchcontext-x11.c \ +- gdkasync.c gdkasync.h gdkcolor-x11.c gdkcursor-x11.c \ +- gdkdisplay-x11.c gdkdisplay-x11.h gdkdnd-x11.c \ +- gdkdrawable-x11.c gdkdrawable-x11.h gdkevents-x11.c \ +- gdkfont-x11.c gdkgc-x11.c gdkgeometry-x11.c gdkglobals-x11.c \ +- gdkim-x11.c gdkimage-x11.c gdkinput.c gdkkeys-x11.c \ +- gdkmain-x11.c gdkpixmap-x11.c gdkpixmap-x11.h gdkproperty-x11.c \ +- gdkscreen-x11.c gdkscreen-x11.h gdkselection-x11.c \ +- gdkspawn-x11.c gdktestutils-x11.c gdkvisual-x11.c \ +- gdkwindow-x11.c gdkwindow-x11.h gdkxftdefaults.c gdkxid.c \ +- gdkx.h gdkprivate-x11.h gdkinputprivate.h xsettings-client.h \ +- xsettings-client.c xsettings-common.h xsettings-common.c \ +- gdkinput-x11.c gdkinput-xfree.c gdkinput-none.c +-@XINPUT_XFREE_TRUE@am__objects_1 = gdkinput-x11.lo gdkinput-xfree.lo +-@XINPUT_XFREE_FALSE@am__objects_2 = gdkinput-none.lo +-am_libgdk_x11_la_OBJECTS = gdkapplaunchcontext-x11.lo gdkasync.lo \ +- gdkcolor-x11.lo gdkcursor-x11.lo gdkdisplay-x11.lo \ +- gdkdnd-x11.lo gdkdrawable-x11.lo gdkevents-x11.lo \ +- gdkfont-x11.lo gdkgc-x11.lo gdkgeometry-x11.lo \ +- gdkglobals-x11.lo gdkim-x11.lo gdkimage-x11.lo gdkinput.lo \ +- gdkkeys-x11.lo gdkmain-x11.lo gdkpixmap-x11.lo \ +- gdkproperty-x11.lo gdkscreen-x11.lo gdkselection-x11.lo \ +- gdkspawn-x11.lo gdktestutils-x11.lo gdkvisual-x11.lo \ +- gdkwindow-x11.lo gdkxftdefaults.lo gdkxid.lo \ +- xsettings-client.lo xsettings-common.lo $(am__objects_1) \ +- $(am__objects_2) +-libgdk_x11_la_OBJECTS = $(am_libgdk_x11_la_OBJECTS) +-noinst_PROGRAMS = checksettings$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-checksettings_SOURCES = checksettings.c +-checksettings_OBJECTS = checksettings.$(OBJEXT) +-checksettings_DEPENDENCIES = libgdk-x11.la \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-checksettings_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/checksettings.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkapplaunchcontext-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkasync.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcolor-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkcursor-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdisplay-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdnd-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkdrawable-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkevents-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkfont-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgc-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkgeometry-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkglobals-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkim-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkimage-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput-none.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput-xfree.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkinput.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkkeys-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkmain-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkpixmap-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkproperty-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkscreen-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkselection-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkspawn-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdktestutils-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkvisual-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkwindow-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkxftdefaults.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdkxid.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/xsettings-client.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/xsettings-common.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__libgdk_x11_la_SOURCES_DIST) checksettings.c +-HEADERS = $(libgdkinclude_HEADERS) +- +-DIST_COMMON = $(libgdkinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libgdk_x11_la_SOURCES) checksettings.c +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk/x11/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk/x11/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk/x11/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk-x11.la: $(libgdk_x11_la_OBJECTS) $(libgdk_x11_la_DEPENDENCIES) +- $(LINK) $(libgdk_x11_la_LDFLAGS) $(libgdk_x11_la_OBJECTS) $(libgdk_x11_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(libgdk_x11_la_OBJECTS) $(libgdk_x11_la_LIBADD) $(LIBS) + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + checksettings$(EXEEXT): $(checksettings_OBJECTS) $(checksettings_DEPENDENCIES) + @rm -f checksettings$(EXEEXT) +- $(LINK) $(checksettings_LDFLAGS) $(checksettings_OBJECTS) $(checksettings_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(checksettings_OBJECTS) $(checksettings_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -664,116 +546,103 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xsettings-common.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgdkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgdkincludeHEADERS: $(libgdkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdkincludedir)" ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- $(libgdkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdkincludedir)" || exit $$?; \ + done + + uninstall-libgdkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdkincludedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(libgdkinclude_HEADERS)'; test -n "$(libgdkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdkincludedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +@@ -781,7 +650,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -790,96 +660,112 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -887,9 +773,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(libgdkincludedir) ++ for dir in "$(DESTDIR)$(libgdkincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -909,7 +796,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -923,24 +811,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-libgdkincludeHEADERS + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -961,20 +871,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libgdkincludeHEADERS ++uninstall-am: uninstall-libgdkincludeHEADERS ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \ + clean clean-generic clean-libtool clean-noinstLTLIBRARIES \ + clean-noinstPROGRAMS ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-libgdkincludeHEADERS install-man \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am \ +- uninstall-libgdkincludeHEADERS ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-libgdkincludeHEADERS \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-libgdkincludeHEADERS + + # call as: $(XVFB_START) && someprogram + +@@ -1031,6 +945,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk-pixbuf/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk-pixbuf/Makefile.in +--- gtk+2.0-2.17.10/gdk-pixbuf/Makefile.in 2009-09-01 06:02:56.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk-pixbuf/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,15 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,424 +37,931 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ +-ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ +-AMTAR = @AMTAR@ +-AR = @AR@ +-AS = @AS@ +-ATK_PREFIX = @ATK_PREFIX@ +-AUTOCONF = @AUTOCONF@ +-AUTOHEADER = @AUTOHEADER@ +-AUTOMAKE = @AUTOMAKE@ +-AWK = @AWK@ +-BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ +-BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ +-CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ +-CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ +-CAIRO_PREFIX = @CAIRO_PREFIX@ +-CATALOGS = @CATALOGS@ +-CATOBJEXT = @CATOBJEXT@ +-CC = @CC@ +-CCAS = @CCAS@ +-CCASFLAGS = @CCASFLAGS@ +-CCDEPMODE = @CCDEPMODE@ +-CFLAGS = @CFLAGS@ +-CPP = @CPP@ +-CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ +-CUPS_API_MAJOR = @CUPS_API_MAJOR@ +-CUPS_API_MINOR = @CUPS_API_MINOR@ +-CUPS_CFLAGS = @CUPS_CFLAGS@ +-CUPS_CONFIG = @CUPS_CONFIG@ +-CUPS_LIBS = @CUPS_LIBS@ +-CXX = @CXX@ +-CXXCPP = @CXXCPP@ +-CXXDEPMODE = @CXXDEPMODE@ +-CXXFLAGS = @CXXFLAGS@ +-CYGPATH_W = @CYGPATH_W@ +-DATADIRNAME = @DATADIRNAME@ +-DB2HTML = @DB2HTML@ +-DEFS = @DEFS@ +-DEPDIR = @DEPDIR@ +-DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ +-DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ +-DLLTOOL = @DLLTOOL@ +-DSYMUTIL = @DSYMUTIL@ +-DUMPBIN = @DUMPBIN@ +-ECHO_C = @ECHO_C@ +-ECHO_N = @ECHO_N@ +-ECHO_T = @ECHO_T@ +-EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ +-EXEEXT = @EXEEXT@ +-FGREP = @FGREP@ +-GAIL_INET_LIBS = @GAIL_INET_LIBS@ +-GAIL_LT_CURRENT_MINUS_AGE = @GAIL_LT_CURRENT_MINUS_AGE@ +-GAIL_LT_VERSION_INFO = @GAIL_LT_VERSION_INFO@ +-GDK_DEP_CFLAGS = @GDK_DEP_CFLAGS@ +-GDK_DEP_LIBS = @GDK_DEP_LIBS@ +-GDK_EXTRA_CFLAGS = @GDK_EXTRA_CFLAGS@ +-GDK_EXTRA_LIBS = @GDK_EXTRA_LIBS@ +-GDK_PACKAGES = @GDK_PACKAGES@ +-GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ +-GDK_PIXBUF_DEP_CFLAGS = @GDK_PIXBUF_DEP_CFLAGS@ +-GDK_PIXBUF_DEP_LIBS = @GDK_PIXBUF_DEP_LIBS@ +-GDK_PIXBUF_EXTRA_CFLAGS = @GDK_PIXBUF_EXTRA_CFLAGS@ +-GDK_PIXBUF_EXTRA_LIBS = @GDK_PIXBUF_EXTRA_LIBS@ +-GDK_PIXBUF_MAJOR = @GDK_PIXBUF_MAJOR@ +-GDK_PIXBUF_MICRO = @GDK_PIXBUF_MICRO@ +-GDK_PIXBUF_MINOR = @GDK_PIXBUF_MINOR@ +-GDK_PIXBUF_PACKAGES = @GDK_PIXBUF_PACKAGES@ +-GDK_PIXBUF_VERSION = @GDK_PIXBUF_VERSION@ +-GDK_PIXBUF_XLIB_DEP_CFLAGS = @GDK_PIXBUF_XLIB_DEP_CFLAGS@ +-GDK_PIXBUF_XLIB_DEP_LIBS = @GDK_PIXBUF_XLIB_DEP_LIBS@ +-GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ +-GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ +-GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ +-GDK_WLIBS = @GDK_WLIBS@ +-GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +-GLIB_CFLAGS = @GLIB_CFLAGS@ +-GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +-GLIB_LIBS = @GLIB_LIBS@ +-GLIB_MKENUMS = @GLIB_MKENUMS@ +-GLIB_PREFIX = @GLIB_PREFIX@ +-GMOFILES = @GMOFILES@ +-GMSGFMT = @GMSGFMT@ +-GOBJECT_QUERY = @GOBJECT_QUERY@ +-GREP = @GREP@ +-GTKDOC_CHECK = @GTKDOC_CHECK@ +-GTK_API_VERSION = @GTK_API_VERSION@ +-GTK_BINARY_AGE = @GTK_BINARY_AGE@ +-GTK_BINARY_VERSION = @GTK_BINARY_VERSION@ +-GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ +-GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ +-GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +-GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ +-GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ +-GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +-GTK_MAJOR_VERSION = @GTK_MAJOR_VERSION@ +-GTK_MICRO_VERSION = @GTK_MICRO_VERSION@ +-GTK_MINOR_VERSION = @GTK_MINOR_VERSION@ +-GTK_PACKAGES = @GTK_PACKAGES@ +-GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ +-GTK_VERSION = @GTK_VERSION@ +-GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ +-HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ +-HTML_DIR = @HTML_DIR@ +-INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ +-INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ +-INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ +-INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ +-INDENT = @INDENT@ +-INSTALL_DATA = @INSTALL_DATA@ +-INSTALL_PROGRAM = @INSTALL_PROGRAM@ +-INSTALL_SCRIPT = @INSTALL_SCRIPT@ +-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +-INSTOBJEXT = @INSTOBJEXT@ +-INTLLIBS = @INTLLIBS@ +-LD = @LD@ +-LDFLAGS = @LDFLAGS@ +-LIBJASPER = @LIBJASPER@ +-LIBJPEG = @LIBJPEG@ +-LIBOBJS = @LIBOBJS@ +-LIBPNG = @LIBPNG@ +-LIBS = @LIBS@ +-LIBTIFF = @LIBTIFF@ +-LIBTOOL = @LIBTOOL@ +-LIBTOOL_EXPORT_OPTIONS = @LIBTOOL_EXPORT_OPTIONS@ +-LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +-LIPO = @LIPO@ +-LN_S = @LN_S@ +-LTLIBOBJS = @LTLIBOBJS@ +-LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +-LT_VERSION_INFO = @LT_VERSION_INFO@ +-MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +-MAKEINFO = @MAKEINFO@ +-MKINSTALLDIRS = @MKINSTALLDIRS@ +-MSGFMT = @MSGFMT@ +-MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ +-NM = @NM@ +-NMEDIT = @NMEDIT@ +-OBJDUMP = @OBJDUMP@ +-OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ +-OTOOL = @OTOOL@ +-OTOOL64 = @OTOOL64@ +-PACKAGE = @PACKAGE@ +-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +-PACKAGE_NAME = @PACKAGE_NAME@ +-PACKAGE_STRING = @PACKAGE_STRING@ +-PACKAGE_TARNAME = @PACKAGE_TARNAME@ +-PACKAGE_VERSION = @PACKAGE_VERSION@ +-PANGO_PREFIX = @PANGO_PREFIX@ +-PATH_SEPARATOR = @PATH_SEPARATOR@ +-PERL = @PERL@ +-PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ +-POFILES = @POFILES@ +-POSUB = @POSUB@ +-PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +-PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +-RANLIB = @RANLIB@ +-REBUILD = @REBUILD@ +-REBUILD_PNGS = @REBUILD_PNGS@ +-SED = @SED@ +-SET_MAKE = @SET_MAKE@ +-SHELL = @SHELL@ +-STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ +-USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ +-VERSION = @VERSION@ +-WINDRES = @WINDRES@ +-XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ +-XMKMF = @XMKMF@ +-XMLCATALOG = @XMLCATALOG@ +-XML_CATALOG_FILE = @XML_CATALOG_FILE@ +-XSLTPROC = @XSLTPROC@ +-X_CFLAGS = @X_CFLAGS@ +-X_EXTRA_LIBS = @X_EXTRA_LIBS@ +-X_LIBS = @X_LIBS@ +-X_PRE_LIBS = @X_PRE_LIBS@ +-ac_ct_CC = @ac_ct_CC@ +-ac_ct_CXX = @ac_ct_CXX@ +-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +-am__include = @am__include@ +-am__leading_dot = @am__leading_dot@ +-am__quote = @am__quote@ +-bindir = @bindir@ +-build = @build@ +-build_alias = @build_alias@ +-build_cpu = @build_cpu@ +-build_os = @build_os@ +-build_vendor = @build_vendor@ +-datadir = @datadir@ +-datarootdir = @datarootdir@ +-docdir = @docdir@ +-dvidir = @dvidir@ +-exec_prefix = @exec_prefix@ +-gdktarget = @gdktarget@ +-gdktargetlib = @gdktargetlib@ +-gtktargetlib = @gtktargetlib@ +-host = @host@ +-host_alias = @host_alias@ +-host_cpu = @host_cpu@ +-host_os = @host_os@ +-host_vendor = @host_vendor@ +-htmldir = @htmldir@ +-includedir = @includedir@ +-infodir = @infodir@ +-install_sh = @install_sh@ +-libdir = @libdir@ +-libexecdir = @libexecdir@ +-localedir = @localedir@ +-localstatedir = @localstatedir@ +-lt_ECHO = @lt_ECHO@ +-mandir = @mandir@ +-ms_librarian = @ms_librarian@ +-oldincludedir = @oldincludedir@ +-pdfdir = @pdfdir@ +-prefix = @prefix@ +-program_transform_name = @program_transform_name@ +-psdir = @psdir@ +-sbindir = @sbindir@ +-sharedstatedir = @sharedstatedir@ +-sysconfdir = @sysconfdir@ +-target_alias = @target_alias@ +- +-GTESTER = gtester # in $PATH for non-GLIB packages +-GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages +- +-# initialize variables for unconditional += appending +-EXTRA_DIST = \ +- gdk-pixbuf-csource.1 \ +- makefile.msc \ +- gdk-pixbuf.symbols \ +- makegdkpixbufalias.pl \ +- abicheck.sh \ +- pltcheck.sh \ +- gdk_pixbuf.def \ +- gdk_pixbuf.rc \ +- gdk-pixbuf-marshal.c \ +- gdk-pixbuf-marshal.list \ +- gdk-pixbuf-enum-types.c.template \ +- gdk-pixbuf-enum-types.h.template \ +- gen-color-table.pl +- +-TEST_PROGS = +- +-### testing rules +- +-# Xvfb based test rules +-XVFB = Xvfb -ac -noreset -screen 0 800x600x16 +-XIDS = 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 \ +- 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 \ +- 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 \ +- 1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 \ +- 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 \ +- 9995 9996 9997 9998 9999 +- +-SKIP_GDKTARGET = \ +- test "$(gdktarget)" != "x11" \ +- && echo "Gtk+Tests:INFO: Skipping GUI tests for non-X11 target." +- +-XVFB_START = \ +- ${XVFB} -help 2>/dev/null 1>&2 \ +- && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \ +- && { ${XVFB} :$$XID -screen 0 800x600x16 -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \ +- trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \ +- || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ +- && DISPLAY=:$$XID && export DISPLAY ++DIST_COMMON = $(libgdk_pixbufinclude_HEADERS) $(noinst_HEADERS) \ ++ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(srcdir)/gdk-pixbuf-features.h.in $(srcdir)/gdk_pixbuf.rc.in \ ++ $(top_srcdir)/Makefile.decl ChangeLog ++noinst_PROGRAMS = test-gdk-pixbuf$(EXEEXT) ++bin_PROGRAMS = gdk-pixbuf-csource$(EXEEXT) \ ++ gdk-pixbuf-query-loaders$(EXEEXT) ++subdir = gdk-pixbuf ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = gdk_pixbuf.rc gdk-pixbuf-features.h ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(loaderdir)" \ ++ "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libgdk_pixbufincludedir)" ++LTLIBRARIES = $(lib_LTLIBRARIES) $(loader_LTLIBRARIES) \ ++ $(noinst_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am_libgdk_pixbuf_2_0_la_OBJECTS = gdk-pixbuf.lo \ ++ gdk-pixbuf-animation.lo gdk-pixbuf-data.lo gdk-pixbuf-io.lo \ ++ gdk-pixbuf-loader.lo gdk-pixbuf-scale.lo \ ++ gdk-pixbuf-simple-anim.lo gdk-pixbuf-scaled-anim.lo \ ++ gdk-pixbuf-util.lo gdk-pixdata.lo gdk-pixbuf-enum-types.lo ++libgdk_pixbuf_2_0_la_OBJECTS = $(am_libgdk_pixbuf_2_0_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgdk_pixbuf_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgdk_pixbuf_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++am__DEPENDENCIES_2 = libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(am__DEPENDENCIES_1) ++libpixbufloader_ani_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_ani_la_OBJECTS = io-ani.lo io-ani-animation.lo ++libpixbufloader_ani_la_OBJECTS = $(am_libpixbufloader_ani_la_OBJECTS) ++libpixbufloader_ani_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_ani_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ANI_FALSE@am_libpixbufloader_ani_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ANI_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ANI_FALSE@ $(loaderdir) ++libpixbufloader_bmp_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_bmp_la_OBJECTS = io-bmp.lo ++libpixbufloader_bmp_la_OBJECTS = $(am_libpixbufloader_bmp_la_OBJECTS) ++libpixbufloader_bmp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_bmp_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_FALSE@am_libpixbufloader_bmp_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_bmp_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-bmp.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_bmp_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-bmp.lo ++libpixbufloader_gdip_bmp_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_bmp_la_OBJECTS) ++libpixbufloader_gdip_bmp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_bmp_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_bmp_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_emf_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_emf_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-emf.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_emf_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-emf.lo ++libpixbufloader_gdip_emf_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_emf_la_OBJECTS) ++libpixbufloader_gdip_emf_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_emf_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_emf_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_gif_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-gif.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_gif_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-gif.lo ++libpixbufloader_gdip_gif_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_gif_la_OBJECTS) ++libpixbufloader_gdip_gif_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_gif_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_gif_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_ico_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_ico_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-ico.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_ico_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-ico.lo ++libpixbufloader_gdip_ico_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_ico_la_OBJECTS) ++libpixbufloader_gdip_ico_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_ico_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_ico_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_jpeg_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-jpeg.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_jpeg_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-jpeg.lo ++libpixbufloader_gdip_jpeg_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_jpeg_la_OBJECTS) ++libpixbufloader_gdip_jpeg_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_jpeg_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_jpeg_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_tiff_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-tiff.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_tiff_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-tiff.lo ++libpixbufloader_gdip_tiff_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_tiff_la_OBJECTS) ++libpixbufloader_gdip_tiff_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_tiff_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_tiff_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(am__DEPENDENCIES_1) ++am__libpixbufloader_gdip_wmf_la_SOURCES_DIST = io-gdip-native.h \ ++ io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ ++ io-gdip-animation.c io-gdip-animation.h io-gdip-wmf.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_wmf_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-wmf.lo ++libpixbufloader_gdip_wmf_la_OBJECTS = \ ++ $(am_libpixbufloader_gdip_wmf_la_OBJECTS) ++libpixbufloader_gdip_wmf_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gdip_wmf_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_wmf_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ $(loaderdir) ++libpixbufloader_gif_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_gif_la_OBJECTS = io-gif.lo io-gif-animation.lo ++libpixbufloader_gif_la_OBJECTS = $(am_libpixbufloader_gif_la_OBJECTS) ++libpixbufloader_gif_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_gif_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_FALSE@am_libpixbufloader_gif_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_FALSE@ $(loaderdir) ++libpixbufloader_icns_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_icns_la_OBJECTS = io-icns.lo ++libpixbufloader_icns_la_OBJECTS = \ ++ $(am_libpixbufloader_icns_la_OBJECTS) ++libpixbufloader_icns_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_icns_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ICNS_FALSE@am_libpixbufloader_icns_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ICNS_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_ICNS_FALSE@ $(loaderdir) ++libpixbufloader_ico_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_ico_la_OBJECTS = io-ico.lo ++libpixbufloader_ico_la_OBJECTS = $(am_libpixbufloader_ico_la_OBJECTS) ++libpixbufloader_ico_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_ico_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_FALSE@am_libpixbufloader_ico_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_FALSE@ $(loaderdir) ++libpixbufloader_jasper_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_2) ++am_libpixbufloader_jasper_la_OBJECTS = io-jasper.lo ++libpixbufloader_jasper_la_OBJECTS = \ ++ $(am_libpixbufloader_jasper_la_OBJECTS) ++libpixbufloader_jasper_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_jasper_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_JASPER_TRUE@@INCLUDE_JASPER_FALSE@am_libpixbufloader_jasper_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_JASPER_TRUE@@INCLUDE_JASPER_FALSE@ $(loaderdir) ++libpixbufloader_jpeg_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_2) ++am_libpixbufloader_jpeg_la_OBJECTS = io-jpeg.lo ++libpixbufloader_jpeg_la_OBJECTS = \ ++ $(am_libpixbufloader_jpeg_la_OBJECTS) ++libpixbufloader_jpeg_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_jpeg_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_FALSE@am_libpixbufloader_jpeg_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_FALSE@ $(loaderdir) ++libpixbufloader_pcx_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_pcx_la_OBJECTS = io-pcx.lo ++libpixbufloader_pcx_la_OBJECTS = $(am_libpixbufloader_pcx_la_OBJECTS) ++libpixbufloader_pcx_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_pcx_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PCX_FALSE@am_libpixbufloader_pcx_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PCX_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PCX_FALSE@ $(loaderdir) ++libpixbufloader_png_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_2) ++am_libpixbufloader_png_la_OBJECTS = io-png.lo ++libpixbufloader_png_la_OBJECTS = $(am_libpixbufloader_png_la_OBJECTS) ++libpixbufloader_png_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_png_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_PNG_TRUE@@INCLUDE_PNG_FALSE@am_libpixbufloader_png_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_PNG_TRUE@@INCLUDE_PNG_FALSE@ $(loaderdir) ++libpixbufloader_pnm_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_pnm_la_OBJECTS = io-pnm.lo ++libpixbufloader_pnm_la_OBJECTS = $(am_libpixbufloader_pnm_la_OBJECTS) ++libpixbufloader_pnm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_pnm_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PNM_FALSE@am_libpixbufloader_pnm_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PNM_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_PNM_FALSE@ $(loaderdir) ++libpixbufloader_ras_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_ras_la_OBJECTS = io-ras.lo ++libpixbufloader_ras_la_OBJECTS = $(am_libpixbufloader_ras_la_OBJECTS) ++libpixbufloader_ras_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_ras_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_RAS_FALSE@am_libpixbufloader_ras_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_RAS_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_RAS_FALSE@ $(loaderdir) ++libpixbufloader_tga_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_tga_la_OBJECTS = io-tga.lo ++libpixbufloader_tga_la_OBJECTS = $(am_libpixbufloader_tga_la_OBJECTS) ++libpixbufloader_tga_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_tga_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_TGA_FALSE@am_libpixbufloader_tga_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_TGA_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_TGA_FALSE@ $(loaderdir) ++libpixbufloader_tiff_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_2) ++am_libpixbufloader_tiff_la_OBJECTS = io-tiff.lo ++libpixbufloader_tiff_la_OBJECTS = \ ++ $(am_libpixbufloader_tiff_la_OBJECTS) ++libpixbufloader_tiff_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_tiff_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_FALSE@am_libpixbufloader_tiff_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_FALSE@ $(loaderdir) ++libpixbufloader_wbmp_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_wbmp_la_OBJECTS = io-wbmp.lo ++libpixbufloader_wbmp_la_OBJECTS = \ ++ $(am_libpixbufloader_wbmp_la_OBJECTS) ++libpixbufloader_wbmp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_wbmp_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_WBMP_FALSE@am_libpixbufloader_wbmp_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_WBMP_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_WBMP_FALSE@ $(loaderdir) ++libpixbufloader_xbm_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_xbm_la_OBJECTS = io-xbm.lo ++libpixbufloader_xbm_la_OBJECTS = $(am_libpixbufloader_xbm_la_OBJECTS) ++libpixbufloader_xbm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_xbm_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XBM_FALSE@am_libpixbufloader_xbm_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XBM_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XBM_FALSE@ $(loaderdir) ++libpixbufloader_xpm_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixbufloader_xpm_la_OBJECTS = io-xpm.lo ++libpixbufloader_xpm_la_OBJECTS = $(am_libpixbufloader_xpm_la_OBJECTS) ++libpixbufloader_xpm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libpixbufloader_xpm_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XPM_FALSE@am_libpixbufloader_xpm_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XPM_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_XPM_FALSE@ $(loaderdir) ++libstatic_pixbufloader_ani_la_LIBADD = ++am_libstatic_pixbufloader_ani_la_OBJECTS = io-ani.lo \ ++ io-ani-animation.lo ++libstatic_pixbufloader_ani_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_ani_la_OBJECTS) ++@INCLUDE_ANI_TRUE@am_libstatic_pixbufloader_ani_la_rpath = ++libstatic_pixbufloader_bmp_la_LIBADD = ++am_libstatic_pixbufloader_bmp_la_OBJECTS = io-bmp.lo ++libstatic_pixbufloader_bmp_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_bmp_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_TRUE@am_libstatic_pixbufloader_bmp_la_rpath = ++libstatic_pixbufloader_gdip_bmp_la_LIBADD = ++am__libstatic_pixbufloader_gdip_bmp_la_SOURCES_DIST = io-gdip-bmp.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_bmp_la_OBJECTS = io-gdip-bmp.lo ++libstatic_pixbufloader_gdip_bmp_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_bmp_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_bmp_la_rpath = ++libstatic_pixbufloader_gdip_emf_la_LIBADD = ++am__libstatic_pixbufloader_gdip_emf_la_SOURCES_DIST = io-gdip-emf.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_emf_la_OBJECTS = io-gdip-emf.lo ++libstatic_pixbufloader_gdip_emf_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_emf_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_emf_la_rpath = ++libstatic_pixbufloader_gdip_gif_la_LIBADD = ++am__libstatic_pixbufloader_gdip_gif_la_SOURCES_DIST = io-gdip-gif.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_gif_la_OBJECTS = io-gdip-gif.lo ++libstatic_pixbufloader_gdip_gif_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_gif_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_gif_la_rpath = ++libstatic_pixbufloader_gdip_ico_la_LIBADD = ++am__libstatic_pixbufloader_gdip_ico_la_SOURCES_DIST = \ ++ io-gdip-native.h io-gdip-propertytags.h io-gdip-utils.h \ ++ io-gdip-utils.c io-gdip-animation.c io-gdip-animation.h \ ++ io-gdip-ico.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_ico_la_OBJECTS = io-gdip-utils.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-animation.lo \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-ico.lo ++libstatic_pixbufloader_gdip_ico_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_ico_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_ico_la_rpath = ++libstatic_pixbufloader_gdip_jpeg_la_LIBADD = ++am__libstatic_pixbufloader_gdip_jpeg_la_SOURCES_DIST = io-gdip-jpeg.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_jpeg_la_OBJECTS = io-gdip-jpeg.lo ++libstatic_pixbufloader_gdip_jpeg_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_jpeg_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_jpeg_la_rpath = ++libstatic_pixbufloader_gdip_tiff_la_LIBADD = ++am__libstatic_pixbufloader_gdip_tiff_la_SOURCES_DIST = io-gdip-tiff.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_tiff_la_OBJECTS = io-gdip-tiff.lo ++libstatic_pixbufloader_gdip_tiff_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_tiff_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_tiff_la_rpath = ++libstatic_pixbufloader_gdip_wmf_la_LIBADD = ++am__libstatic_pixbufloader_gdip_wmf_la_SOURCES_DIST = io-gdip-wmf.c ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_wmf_la_OBJECTS = io-gdip-wmf.lo ++libstatic_pixbufloader_gdip_wmf_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gdip_wmf_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_wmf_la_rpath = ++libstatic_pixbufloader_gif_la_LIBADD = ++am_libstatic_pixbufloader_gif_la_OBJECTS = io-gif.lo \ ++ io-gif-animation.lo ++libstatic_pixbufloader_gif_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_gif_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_TRUE@am_libstatic_pixbufloader_gif_la_rpath = ++libstatic_pixbufloader_icns_la_LIBADD = ++am_libstatic_pixbufloader_icns_la_OBJECTS = io-icns.lo ++libstatic_pixbufloader_icns_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_icns_la_OBJECTS) ++@INCLUDE_ICNS_TRUE@am_libstatic_pixbufloader_icns_la_rpath = ++libstatic_pixbufloader_ico_la_LIBADD = ++am_libstatic_pixbufloader_ico_la_OBJECTS = io-ico.lo ++libstatic_pixbufloader_ico_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_ico_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_TRUE@am_libstatic_pixbufloader_ico_la_rpath = ++libstatic_pixbufloader_jasper_la_LIBADD = ++am_libstatic_pixbufloader_jasper_la_OBJECTS = io-jasper.lo ++libstatic_pixbufloader_jasper_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_jasper_la_OBJECTS) ++@HAVE_JASPER_TRUE@@INCLUDE_JASPER_TRUE@am_libstatic_pixbufloader_jasper_la_rpath = ++libstatic_pixbufloader_jpeg_la_LIBADD = ++am_libstatic_pixbufloader_jpeg_la_OBJECTS = io-jpeg.lo ++libstatic_pixbufloader_jpeg_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_jpeg_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_TRUE@am_libstatic_pixbufloader_jpeg_la_rpath = ++libstatic_pixbufloader_pcx_la_LIBADD = ++am_libstatic_pixbufloader_pcx_la_OBJECTS = io-pcx.lo ++libstatic_pixbufloader_pcx_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_pcx_la_OBJECTS) ++@INCLUDE_PCX_TRUE@am_libstatic_pixbufloader_pcx_la_rpath = ++libstatic_pixbufloader_png_la_LIBADD = ++am_libstatic_pixbufloader_png_la_OBJECTS = io-png.lo ++libstatic_pixbufloader_png_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_png_la_OBJECTS) ++@HAVE_PNG_TRUE@@INCLUDE_PNG_TRUE@am_libstatic_pixbufloader_png_la_rpath = ++libstatic_pixbufloader_pnm_la_LIBADD = ++am_libstatic_pixbufloader_pnm_la_OBJECTS = io-pnm.lo ++libstatic_pixbufloader_pnm_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_pnm_la_OBJECTS) ++@INCLUDE_PNM_TRUE@am_libstatic_pixbufloader_pnm_la_rpath = ++libstatic_pixbufloader_ras_la_LIBADD = ++am_libstatic_pixbufloader_ras_la_OBJECTS = io-ras.lo ++libstatic_pixbufloader_ras_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_ras_la_OBJECTS) ++@INCLUDE_RAS_TRUE@am_libstatic_pixbufloader_ras_la_rpath = ++libstatic_pixbufloader_tga_la_LIBADD = ++am_libstatic_pixbufloader_tga_la_OBJECTS = io-tga.lo ++libstatic_pixbufloader_tga_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_tga_la_OBJECTS) ++@INCLUDE_TGA_TRUE@am_libstatic_pixbufloader_tga_la_rpath = ++libstatic_pixbufloader_tiff_la_LIBADD = ++am_libstatic_pixbufloader_tiff_la_OBJECTS = io-tiff.lo ++libstatic_pixbufloader_tiff_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_tiff_la_OBJECTS) ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_TRUE@am_libstatic_pixbufloader_tiff_la_rpath = ++libstatic_pixbufloader_wbmp_la_LIBADD = ++am_libstatic_pixbufloader_wbmp_la_OBJECTS = io-wbmp.lo ++libstatic_pixbufloader_wbmp_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_wbmp_la_OBJECTS) ++@INCLUDE_WBMP_TRUE@am_libstatic_pixbufloader_wbmp_la_rpath = ++libstatic_pixbufloader_xbm_la_LIBADD = ++am_libstatic_pixbufloader_xbm_la_OBJECTS = io-xbm.lo ++libstatic_pixbufloader_xbm_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_xbm_la_OBJECTS) ++@INCLUDE_XBM_TRUE@am_libstatic_pixbufloader_xbm_la_rpath = ++libstatic_pixbufloader_xpm_la_LIBADD = ++am_libstatic_pixbufloader_xpm_la_OBJECTS = io-xpm.lo ++libstatic_pixbufloader_xpm_la_OBJECTS = \ ++ $(am_libstatic_pixbufloader_xpm_la_OBJECTS) ++@INCLUDE_XPM_TRUE@am_libstatic_pixbufloader_xpm_la_rpath = ++PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) ++am_gdk_pixbuf_csource_OBJECTS = gdk-pixbuf-csource.$(OBJEXT) ++gdk_pixbuf_csource_OBJECTS = $(am_gdk_pixbuf_csource_OBJECTS) ++gdk_pixbuf_csource_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_gdk_pixbuf_query_loaders_OBJECTS = queryloaders.$(OBJEXT) ++gdk_pixbuf_query_loaders_OBJECTS = \ ++ $(am_gdk_pixbuf_query_loaders_OBJECTS) ++test_gdk_pixbuf_SOURCES = test-gdk-pixbuf.c ++test_gdk_pixbuf_OBJECTS = test-gdk-pixbuf.$(OBJEXT) ++test_gdk_pixbuf_DEPENDENCIES = $(am__DEPENDENCIES_2) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgdk_pixbuf_2_0_la_SOURCES) \ ++ $(libpixbufloader_ani_la_SOURCES) \ ++ $(libpixbufloader_bmp_la_SOURCES) \ ++ $(libpixbufloader_gdip_bmp_la_SOURCES) \ ++ $(libpixbufloader_gdip_emf_la_SOURCES) \ ++ $(libpixbufloader_gdip_gif_la_SOURCES) \ ++ $(libpixbufloader_gdip_ico_la_SOURCES) \ ++ $(libpixbufloader_gdip_jpeg_la_SOURCES) \ ++ $(libpixbufloader_gdip_tiff_la_SOURCES) \ ++ $(libpixbufloader_gdip_wmf_la_SOURCES) \ ++ $(libpixbufloader_gif_la_SOURCES) \ ++ $(libpixbufloader_icns_la_SOURCES) \ ++ $(libpixbufloader_ico_la_SOURCES) \ ++ $(libpixbufloader_jasper_la_SOURCES) \ ++ $(libpixbufloader_jpeg_la_SOURCES) \ ++ $(libpixbufloader_pcx_la_SOURCES) \ ++ $(libpixbufloader_png_la_SOURCES) \ ++ $(libpixbufloader_pnm_la_SOURCES) \ ++ $(libpixbufloader_ras_la_SOURCES) \ ++ $(libpixbufloader_tga_la_SOURCES) \ ++ $(libpixbufloader_tiff_la_SOURCES) \ ++ $(libpixbufloader_wbmp_la_SOURCES) \ ++ $(libpixbufloader_xbm_la_SOURCES) \ ++ $(libpixbufloader_xpm_la_SOURCES) \ ++ $(libstatic_pixbufloader_ani_la_SOURCES) \ ++ $(libstatic_pixbufloader_bmp_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_bmp_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_emf_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_gif_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_ico_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_jpeg_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_tiff_la_SOURCES) \ ++ $(libstatic_pixbufloader_gdip_wmf_la_SOURCES) \ ++ $(libstatic_pixbufloader_gif_la_SOURCES) \ ++ $(libstatic_pixbufloader_icns_la_SOURCES) \ ++ $(libstatic_pixbufloader_ico_la_SOURCES) \ ++ $(libstatic_pixbufloader_jasper_la_SOURCES) \ ++ $(libstatic_pixbufloader_jpeg_la_SOURCES) \ ++ $(libstatic_pixbufloader_pcx_la_SOURCES) \ ++ $(libstatic_pixbufloader_png_la_SOURCES) \ ++ $(libstatic_pixbufloader_pnm_la_SOURCES) \ ++ $(libstatic_pixbufloader_ras_la_SOURCES) \ ++ $(libstatic_pixbufloader_tga_la_SOURCES) \ ++ $(libstatic_pixbufloader_tiff_la_SOURCES) \ ++ $(libstatic_pixbufloader_wbmp_la_SOURCES) \ ++ $(libstatic_pixbufloader_xbm_la_SOURCES) \ ++ $(libstatic_pixbufloader_xpm_la_SOURCES) \ ++ $(gdk_pixbuf_csource_SOURCES) \ ++ $(gdk_pixbuf_query_loaders_SOURCES) test-gdk-pixbuf.c ++DIST_SOURCES = $(libgdk_pixbuf_2_0_la_SOURCES) \ ++ $(libpixbufloader_ani_la_SOURCES) \ ++ $(libpixbufloader_bmp_la_SOURCES) \ ++ $(am__libpixbufloader_gdip_bmp_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_emf_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_gif_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_ico_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_jpeg_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_tiff_la_SOURCES_DIST) \ ++ $(am__libpixbufloader_gdip_wmf_la_SOURCES_DIST) \ ++ $(libpixbufloader_gif_la_SOURCES) \ ++ $(libpixbufloader_icns_la_SOURCES) \ ++ $(libpixbufloader_ico_la_SOURCES) \ ++ $(libpixbufloader_jasper_la_SOURCES) \ ++ $(libpixbufloader_jpeg_la_SOURCES) \ ++ $(libpixbufloader_pcx_la_SOURCES) \ ++ $(libpixbufloader_png_la_SOURCES) \ ++ $(libpixbufloader_pnm_la_SOURCES) \ ++ $(libpixbufloader_ras_la_SOURCES) \ ++ $(libpixbufloader_tga_la_SOURCES) \ ++ $(libpixbufloader_tiff_la_SOURCES) \ ++ $(libpixbufloader_wbmp_la_SOURCES) \ ++ $(libpixbufloader_xbm_la_SOURCES) \ ++ $(libpixbufloader_xpm_la_SOURCES) \ ++ $(libstatic_pixbufloader_ani_la_SOURCES) \ ++ $(libstatic_pixbufloader_bmp_la_SOURCES) \ ++ $(am__libstatic_pixbufloader_gdip_bmp_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_emf_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_gif_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_ico_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_jpeg_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_tiff_la_SOURCES_DIST) \ ++ $(am__libstatic_pixbufloader_gdip_wmf_la_SOURCES_DIST) \ ++ $(libstatic_pixbufloader_gif_la_SOURCES) \ ++ $(libstatic_pixbufloader_icns_la_SOURCES) \ ++ $(libstatic_pixbufloader_ico_la_SOURCES) \ ++ $(libstatic_pixbufloader_jasper_la_SOURCES) \ ++ $(libstatic_pixbufloader_jpeg_la_SOURCES) \ ++ $(libstatic_pixbufloader_pcx_la_SOURCES) \ ++ $(libstatic_pixbufloader_png_la_SOURCES) \ ++ $(libstatic_pixbufloader_pnm_la_SOURCES) \ ++ $(libstatic_pixbufloader_ras_la_SOURCES) \ ++ $(libstatic_pixbufloader_tga_la_SOURCES) \ ++ $(libstatic_pixbufloader_tiff_la_SOURCES) \ ++ $(libstatic_pixbufloader_wbmp_la_SOURCES) \ ++ $(libstatic_pixbufloader_xbm_la_SOURCES) \ ++ $(libstatic_pixbufloader_xpm_la_SOURCES) \ ++ $(gdk_pixbuf_csource_SOURCES) \ ++ $(gdk_pixbuf_query_loaders_SOURCES) test-gdk-pixbuf.c ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++DATA = $(noinst_DATA) ++HEADERS = $(libgdk_pixbufinclude_HEADERS) $(noinst_HEADERS) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" ++ACLOCAL = @ACLOCAL@ ++AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ ++AR = @AR@ ++AS = @AS@ ++ATK_PREFIX = @ATK_PREFIX@ ++AUTOCONF = @AUTOCONF@ ++AUTOHEADER = @AUTOHEADER@ ++AUTOMAKE = @AUTOMAKE@ ++AWK = @AWK@ ++BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ ++BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ ++CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ ++CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ ++CAIRO_PREFIX = @CAIRO_PREFIX@ ++CATALOGS = @CATALOGS@ ++CATOBJEXT = @CATOBJEXT@ ++CC = @CC@ ++CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ ++CCASFLAGS = @CCASFLAGS@ ++CCDEPMODE = @CCDEPMODE@ ++CFLAGS = @CFLAGS@ ++CPP = @CPP@ ++CPPFLAGS = @CPPFLAGS@ ++CUPS_API_MAJOR = @CUPS_API_MAJOR@ ++CUPS_API_MINOR = @CUPS_API_MINOR@ ++CUPS_CFLAGS = @CUPS_CFLAGS@ ++CUPS_CONFIG = @CUPS_CONFIG@ ++CUPS_LIBS = @CUPS_LIBS@ ++CXX = @CXX@ ++CXXCPP = @CXXCPP@ ++CXXDEPMODE = @CXXDEPMODE@ ++CXXFLAGS = @CXXFLAGS@ ++CYGPATH_W = @CYGPATH_W@ ++DATADIRNAME = @DATADIRNAME@ ++DB2HTML = @DB2HTML@ ++DEFS = @DEFS@ ++DEPDIR = @DEPDIR@ ++DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ ++DIRECTFB_LIBS = @DIRECTFB_LIBS@ ++DLLTOOL = @DLLTOOL@ ++DSYMUTIL = @DSYMUTIL@ ++DUMPBIN = @DUMPBIN@ ++ECHO_C = @ECHO_C@ ++ECHO_N = @ECHO_N@ ++ECHO_T = @ECHO_T@ ++EGREP = @EGREP@ ++EXEEXT = @EXEEXT@ ++FGREP = @FGREP@ ++GAIL_INET_LIBS = @GAIL_INET_LIBS@ ++GAIL_LT_CURRENT_MINUS_AGE = @GAIL_LT_CURRENT_MINUS_AGE@ ++GAIL_LT_VERSION_INFO = @GAIL_LT_VERSION_INFO@ ++GDK_DEP_CFLAGS = @GDK_DEP_CFLAGS@ ++GDK_DEP_LIBS = @GDK_DEP_LIBS@ ++GDK_EXTRA_CFLAGS = @GDK_EXTRA_CFLAGS@ ++GDK_EXTRA_LIBS = @GDK_EXTRA_LIBS@ ++GDK_PACKAGES = @GDK_PACKAGES@ ++GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ ++GDK_PIXBUF_DEP_CFLAGS = @GDK_PIXBUF_DEP_CFLAGS@ ++GDK_PIXBUF_DEP_LIBS = @GDK_PIXBUF_DEP_LIBS@ ++GDK_PIXBUF_EXTRA_CFLAGS = @GDK_PIXBUF_EXTRA_CFLAGS@ ++GDK_PIXBUF_EXTRA_LIBS = @GDK_PIXBUF_EXTRA_LIBS@ ++GDK_PIXBUF_MAJOR = @GDK_PIXBUF_MAJOR@ ++GDK_PIXBUF_MICRO = @GDK_PIXBUF_MICRO@ ++GDK_PIXBUF_MINOR = @GDK_PIXBUF_MINOR@ ++GDK_PIXBUF_PACKAGES = @GDK_PIXBUF_PACKAGES@ ++GDK_PIXBUF_VERSION = @GDK_PIXBUF_VERSION@ ++GDK_PIXBUF_XLIB_DEP_CFLAGS = @GDK_PIXBUF_XLIB_DEP_CFLAGS@ ++GDK_PIXBUF_XLIB_DEP_LIBS = @GDK_PIXBUF_XLIB_DEP_LIBS@ ++GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ ++GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ ++GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ ++GDK_WLIBS = @GDK_WLIBS@ ++GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ ++GLIB_CFLAGS = @GLIB_CFLAGS@ ++GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ ++GLIB_LIBS = @GLIB_LIBS@ ++GLIB_MKENUMS = @GLIB_MKENUMS@ ++GLIB_PREFIX = @GLIB_PREFIX@ ++GMOFILES = @GMOFILES@ ++GMSGFMT = @GMSGFMT@ ++GOBJECT_QUERY = @GOBJECT_QUERY@ ++GREP = @GREP@ ++GTKDOC_CHECK = @GTKDOC_CHECK@ ++GTK_API_VERSION = @GTK_API_VERSION@ ++GTK_BINARY_AGE = @GTK_BINARY_AGE@ ++GTK_BINARY_VERSION = @GTK_BINARY_VERSION@ ++GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ ++GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ ++GTK_DEP_LIBS = @GTK_DEP_LIBS@ ++GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ ++GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ ++GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ ++GTK_MAJOR_VERSION = @GTK_MAJOR_VERSION@ ++GTK_MICRO_VERSION = @GTK_MICRO_VERSION@ ++GTK_MINOR_VERSION = @GTK_MINOR_VERSION@ ++GTK_PACKAGES = @GTK_PACKAGES@ ++GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ ++GTK_VERSION = @GTK_VERSION@ ++GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ ++HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ ++HTML_DIR = @HTML_DIR@ ++INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ ++INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ ++INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ ++INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ ++INDENT = @INDENT@ ++INSTALL = @INSTALL@ ++INSTALL_DATA = @INSTALL_DATA@ ++INSTALL_PROGRAM = @INSTALL_PROGRAM@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ ++INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ ++INSTOBJEXT = @INSTOBJEXT@ ++INTLLIBS = @INTLLIBS@ ++LD = @LD@ ++LDFLAGS = @LDFLAGS@ ++LIBJASPER = @LIBJASPER@ ++LIBJPEG = @LIBJPEG@ ++LIBOBJS = @LIBOBJS@ ++LIBPNG = @LIBPNG@ ++LIBS = @LIBS@ ++LIBTIFF = @LIBTIFF@ ++LIBTOOL = @LIBTOOL@ ++LIBTOOL_EXPORT_OPTIONS = @LIBTOOL_EXPORT_OPTIONS@ ++LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ ++LIPO = @LIPO@ ++LN_S = @LN_S@ ++LTLIBOBJS = @LTLIBOBJS@ ++LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ ++LT_VERSION_INFO = @LT_VERSION_INFO@ ++MAINT = @MAINT@ ++MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ ++MKINSTALLDIRS = @MKINSTALLDIRS@ ++MSGFMT = @MSGFMT@ ++MSGFMT_OPTS = @MSGFMT_OPTS@ ++NM = @NM@ ++NMEDIT = @NMEDIT@ ++OBJDUMP = @OBJDUMP@ ++OBJEXT = @OBJEXT@ ++OTOOL = @OTOOL@ ++OTOOL64 = @OTOOL64@ ++PACKAGE = @PACKAGE@ ++PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ ++PACKAGE_NAME = @PACKAGE_NAME@ ++PACKAGE_STRING = @PACKAGE_STRING@ ++PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ ++PACKAGE_VERSION = @PACKAGE_VERSION@ ++PANGO_PREFIX = @PANGO_PREFIX@ ++PATH_SEPARATOR = @PATH_SEPARATOR@ ++PERL = @PERL@ ++PKG_CONFIG = @PKG_CONFIG@ ++POFILES = @POFILES@ ++POSUB = @POSUB@ ++PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ ++PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ ++RANLIB = @RANLIB@ ++REBUILD = @REBUILD@ ++REBUILD_PNGS = @REBUILD_PNGS@ ++SED = @SED@ ++SET_MAKE = @SET_MAKE@ ++SHELL = @SHELL@ ++STRIP = @STRIP@ ++USE_NLS = @USE_NLS@ ++VERSION = @VERSION@ ++WINDRES = @WINDRES@ ++XGETTEXT = @XGETTEXT@ ++XMKMF = @XMKMF@ ++XMLCATALOG = @XMLCATALOG@ ++XML_CATALOG_FILE = @XML_CATALOG_FILE@ ++XSLTPROC = @XSLTPROC@ ++X_CFLAGS = @X_CFLAGS@ ++X_EXTRA_LIBS = @X_EXTRA_LIBS@ ++X_LIBS = @X_LIBS@ ++X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ ++ac_ct_CC = @ac_ct_CC@ ++ac_ct_CXX = @ac_ct_CXX@ ++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ++am__include = @am__include@ ++am__leading_dot = @am__leading_dot@ ++am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ ++bindir = @bindir@ ++build = @build@ ++build_alias = @build_alias@ ++build_cpu = @build_cpu@ ++build_os = @build_os@ ++build_vendor = @build_vendor@ ++builddir = @builddir@ ++datadir = @datadir@ ++datarootdir = @datarootdir@ ++docdir = @docdir@ ++dvidir = @dvidir@ ++exec_prefix = @exec_prefix@ ++gdktarget = @gdktarget@ ++gdktargetlib = @gdktargetlib@ ++gtktargetlib = @gtktargetlib@ ++host = @host@ ++host_alias = @host_alias@ ++host_cpu = @host_cpu@ ++host_os = @host_os@ ++host_vendor = @host_vendor@ ++htmldir = @htmldir@ ++includedir = @includedir@ ++infodir = @infodir@ ++install_sh = @install_sh@ ++libdir = @libdir@ ++libexecdir = @libexecdir@ ++localedir = @localedir@ ++localstatedir = @localstatedir@ ++lt_ECHO = @lt_ECHO@ ++mandir = @mandir@ ++mkdir_p = @mkdir_p@ ++ms_librarian = @ms_librarian@ ++oldincludedir = @oldincludedir@ ++pdfdir = @pdfdir@ ++prefix = @prefix@ ++program_transform_name = @program_transform_name@ ++psdir = @psdir@ ++sbindir = @sbindir@ ++sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ ++sysconfdir = @sysconfdir@ ++target_alias = @target_alias@ ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ ++GTESTER = gtester # in $PATH for non-GLIB packages ++GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages ++ ++# initialize variables for unconditional += appending ++EXTRA_DIST = gdk-pixbuf-csource.1 makefile.msc gdk-pixbuf.symbols \ ++ makegdkpixbufalias.pl abicheck.sh pltcheck.sh gdk_pixbuf.def \ ++ gdk_pixbuf.rc gdk-pixbuf-marshal.c gdk-pixbuf-marshal.list \ ++ gdk-pixbuf-enum-types.c.template \ ++ gdk-pixbuf-enum-types.h.template gen-color-table.pl ++TEST_PROGS = ++ ++### testing rules + ++# Xvfb based test rules ++XVFB = Xvfb -ac -noreset -screen 0 800x600x16 ++XIDS = 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 \ ++ 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 \ ++ 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 \ ++ 1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 \ ++ 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 \ ++ 9995 9996 9997 9998 9999 ++ ++SKIP_GDKTARGET = \ ++ test "$(gdktarget)" != "x11" \ ++ && echo "Gtk+Tests:INFO: Skipping GUI tests for non-X11 target." ++ ++XVFB_START = \ ++ ${XVFB} -help 2>/dev/null 1>&2 \ ++ && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \ ++ && { ${XVFB} :$$XID -screen 0 800x600x16 -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \ ++ trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \ ++ || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ ++ && DISPLAY=:$$XID && export DISPLAY + + SUBDIRS = pixops +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + @OS_WIN32_TRUE@gdk_pixbuf_def = gdk_pixbuf.def + @OS_WIN32_TRUE@gdk_pixbuf_symbols = -export-symbols $(srcdir)/gdk_pixbuf.def +- + @OS_WIN32_TRUE@gdk_pixbuf_win32_res = gdk_pixbuf-win32-res.o + @OS_WIN32_TRUE@gdk_pixbuf_win32_res_ldflag = -Wl,gdk_pixbuf-win32-res.o +- + @OS_WIN32_TRUE@libole32 = -lole32 +- + @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gdk_pixbuf-$(GTK_API_VERSION).lib +- + @OS_LINUX_TRUE@TESTS = abicheck.sh pltcheck.sh +- + lib_LTLIBRARIES = \ + libgdk_pixbuf-2.0.la + +- + loaderdir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/loaders +- ++loaderfilesdir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/loader-files.d + module_libs = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS) + + # +@@ -585,7 +1092,6 @@ + libpixbufloader_jasper_la_LDFLAGS = -avoid-version -module $(no_undefined) + libpixbufloader_jasper_la_LIBADD = $(LIBJASPER) $(module_libs) + +- + # When building the GDI+ loader statically, we put the "common" objects + # only in one of the archives to avoid duplicate definitions + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@STATIC_GDIPLUS_LIBS = \ +@@ -597,7 +1103,6 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ libstatic-pixbufloader-gdip-jpeg.la \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ libstatic-pixbufloader-gdip-tiff.la + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_ico_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-native.h \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-propertytags.h \ +@@ -607,35 +1112,27 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-animation.h \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-ico.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_wmf_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-wmf.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_emf_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-emf.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_bmp_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-bmp.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_gif_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-gif.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_jpeg_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-jpeg.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_png_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-png.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@libstatic_pixbufloader_gdip_tiff_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-tiff.c + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@GDIPLUS_LIBS = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ libpixbufloader-gdip-ico.la \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ libpixbufloader-gdip-wmf.la \ +@@ -645,7 +1142,6 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ libpixbufloader-gdip-jpeg.la \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ libpixbufloader-gdip-tiff.la + +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_ico_la_LDFLAGS = -avoid-version -module -no-undefined + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_ico_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +@@ -657,7 +1153,6 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-ico.c + + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_ico_la_LIBADD = $(module_libs) $(libole32) +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_wmf_la_LDFLAGS = -avoid-version -module -no-undefined + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_wmf_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +@@ -669,7 +1164,6 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-wmf.c + + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_wmf_la_LIBADD = $(module_libs) $(libole32) +- + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_emf_la_LDFLAGS = -avoid-version -module -no-undefined + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_emf_la_SOURCES = \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +@@ -678,811 +1172,327 @@ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ + @BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-emf.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_emf_la_LIBADD = $(module_libs) $(libole32) +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_LDFLAGS = -avoid-version -module -no-undefined +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_SOURCES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-bmp.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_LIBADD = $(module_libs) $(libole32) +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_LDFLAGS = -avoid-version -module -no-undefined +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_SOURCES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-gif.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_LIBADD = $(module_libs) $(libole32) +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_LDFLAGS = -avoid-version -module -no-undefined +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_SOURCES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-jpeg.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_LIBADD = $(module_libs) $(libole32) +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_LDFLAGS = -avoid-version -module -no-undefined +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_SOURCES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-png.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_LIBADD = $(module_libs) $(libole32) +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_LDFLAGS = -avoid-version -module -no-undefined +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_SOURCES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-tiff.c +- +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_LIBADD = $(module_libs) $(libole32) +- +- +-# Loaders that aren't built if we build the GDI+ loader +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_TRUE@STATIC_BMP_LIB = libstatic-pixbufloader-bmp.la +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_FALSE@BMP_LIB = libpixbufloader-bmp.la +- +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_TRUE@STATIC_GIF_LIB = libstatic-pixbufloader-gif.la +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_FALSE@GIF_LIB = libpixbufloader-gif.la +- +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_TRUE@STATIC_ICO_LIB = libstatic-pixbufloader-ico.la +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_FALSE@ICO_LIB = libpixbufloader-ico.la +- +-@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_TRUE@STATIC_JPEG_LIB = libstatic-pixbufloader-jpeg.la +-@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_FALSE@JPEG_LIB = libpixbufloader-jpeg.la +- +-@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_TRUE@STATIC_TIFF_LIB = libstatic-pixbufloader-tiff.la +-@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_FALSE@TIFF_LIB = libpixbufloader-tiff.la +- +- +-# End of loaders not built if building GDI+ loader +-@HAVE_PNG_TRUE@@INCLUDE_PNG_TRUE@STATIC_PNG_LIB = libstatic-pixbufloader-png.la +-@HAVE_PNG_TRUE@@INCLUDE_PNG_FALSE@PNG_LIB = libpixbufloader-png.la +- +-@INCLUDE_WBMP_TRUE@STATIC_WBMP_LIB = libstatic-pixbufloader-wbmp.la +-@INCLUDE_WBMP_FALSE@WBMP_LIB = libpixbufloader-wbmp.la +- +-@INCLUDE_ANI_TRUE@STATIC_ANI_LIB = libstatic-pixbufloader-ani.la +-@INCLUDE_ANI_FALSE@ANI_LIB = libpixbufloader-ani.la +- +-@INCLUDE_PNM_TRUE@STATIC_PNM_LIB = libstatic-pixbufloader-pnm.la +-@INCLUDE_PNM_FALSE@PNM_LIB = libpixbufloader-pnm.la +- +-@INCLUDE_RAS_TRUE@STATIC_RAS_LIB = libstatic-pixbufloader-ras.la +-@INCLUDE_RAS_FALSE@RAS_LIB = libpixbufloader-ras.la +- +-@INCLUDE_XPM_TRUE@STATIC_XPM_LIB = libstatic-pixbufloader-xpm.la +-@INCLUDE_XPM_FALSE@XPM_LIB = libpixbufloader-xpm.la +- +-@INCLUDE_XBM_TRUE@STATIC_XBM_LIB = libstatic-pixbufloader-xbm.la +-@INCLUDE_XBM_FALSE@XBM_LIB = libpixbufloader-xbm.la +- +-@INCLUDE_TGA_TRUE@STATIC_TGA_LIB = libstatic-pixbufloader-tga.la +-@INCLUDE_TGA_FALSE@TGA_LIB = libpixbufloader-tga.la +- +-@INCLUDE_PCX_TRUE@STATIC_PCX_LIB = libstatic-pixbufloader-pcx.la +-@INCLUDE_PCX_FALSE@PCX_LIB = libpixbufloader-pcx.la +- +-@INCLUDE_ICNS_TRUE@STATIC_ICNS_LIB = libstatic-pixbufloader-icns.la +-@INCLUDE_ICNS_FALSE@ICNS_LIB = libpixbufloader-icns.la +- +-@HAVE_JASPER_TRUE@@INCLUDE_JASPER_TRUE@STATIC_JASPER_LIB = libstatic-pixbufloader-jasper.la +-@HAVE_JASPER_TRUE@@INCLUDE_JASPER_FALSE@JASPER_LIB = libpixbufloader-jasper.la +- +-@BUILD_DYNAMIC_MODULES_TRUE@loader_LTLIBRARIES = \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(PNG_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(BMP_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(WBMP_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(GIF_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(ICO_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(ANI_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(JPEG_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(PNM_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(RAS_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(TIFF_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(XPM_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(XBM_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(TGA_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(ICNS_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(PCX_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(JASPER_LIB) \ +-@BUILD_DYNAMIC_MODULES_TRUE@ $(GDIPLUS_LIBS) +- +- +-noinst_LTLIBRARIES = \ +- $(STATIC_PNG_LIB) \ +- $(STATIC_BMP_LIB) \ +- $(STATIC_WBMP_LIB) \ +- $(STATIC_GIF_LIB) \ +- $(STATIC_ICO_LIB) \ +- $(STATIC_ANI_LIB) \ +- $(STATIC_JPEG_LIB) \ +- $(STATIC_PNM_LIB) \ +- $(STATIC_RAS_LIB) \ +- $(STATIC_TIFF_LIB) \ +- $(STATIC_XPM_LIB) \ +- $(STATIC_XBM_LIB) \ +- $(STATIC_TGA_LIB) \ +- $(STATIC_ICNS_LIB) \ +- $(STATIC_PCX_LIB) \ +- $(STATIC_JASPER_LIB) \ +- $(STATIC_GDIPLUS_LIBS) +- +- +-builtin_objs = @INCLUDED_LOADER_OBJ@ +- +-DEPS = libgdk_pixbuf-$(GTK_API_VERSION).la +-INCLUDES = \ +- -DG_LOG_DOMAIN=\"GdkPixbuf\" \ +- -DGDK_PIXBUF_COMPILATION \ +- -I$(top_srcdir) -I$(top_builddir) \ +- -I$(top_srcdir)/gdk-pixbuf \ +- -I$(top_builddir)/gdk-pixbuf \ +- -DGTK_SYSCONFDIR=\"$(sysconfdir)\" \ +- -DGTK_VERSION=\"$(GTK_VERSION)\" \ +- -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \ +- -DGTK_PREFIX=\"$(prefix)\" \ +- $(INCLUDED_LOADER_DEFINE) \ +- $(GTK_DEBUG_FLAGS) \ +- $(GDK_PIXBUF_DEP_CFLAGS) \ +- -DGDK_PIXBUF_ENABLE_BACKEND +- +- +-AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\"" +-LDADDS = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS) +- +-noinst_PROGRAMS = test-gdk-pixbuf +-test_gdk_pixbuf_LDADD = $(LDADDS) +- +-bin_PROGRAMS = gdk-pixbuf-csource gdk-pixbuf-query-loaders +-gdk_pixbuf_csource_SOURCES = gdk-pixbuf-csource.c +-gdk_pixbuf_csource_LDADD = $(LDADDS) +- +-gdk_pixbuf_query_loaders_DEPENDENCIES = $(DEPS) +-gdk_pixbuf_query_loaders_LDADD = $(LDADDS) +- +-gdk_pixbuf_query_loaders_SOURCES = queryloaders.c +- +-# +-# The GdkPixBuf library +-# +-libgdk_pixbufincludedir = $(includedir)/gtk-2.0/gdk-pixbuf +-libgdk_pixbuf_2_0_la_SOURCES = \ +- gdk-pixbuf-i18n.h \ +- gdk-pixbuf.c \ +- gdk-pixbuf-animation.c \ +- gdk-pixbuf-data.c \ +- gdk-pixbuf-io.c \ +- gdk-pixbuf-loader.c \ +- gdk-pixbuf-scale.c \ +- gdk-pixbuf-simple-anim.c \ +- gdk-pixbuf-scaled-anim.c \ +- gdk-pixbuf-util.c \ +- gdk-pixdata.c \ +- gdk-pixbuf-enum-types.c +- +- +-libgdk_pixbuf_2_0_la_LDFLAGS = \ +- $(gdk_pixbuf_win32_res_ldflag) \ +- -version-info $(LT_VERSION_INFO) \ +- $(LIBTOOL_EXPORT_OPTIONS) \ +- $(no_undefined) \ +- $(gdk_pixbuf_symbols) +- +- +-libgdk_pixbuf_2_0_la_LIBADD = pixops/libpixops.la $(builtin_objs) $(GDK_PIXBUF_DEP_LIBS) $(libole32) +-libgdk_pixbuf_2_0_la_DEPENDENCIES = pixops/libpixops.la $(builtin_objs) $(gdk_pixbuf_def) $(gdk_pixbuf_win32_res) +- +-gdk_pixbuf_headers = \ +- gdk-pixbuf.h \ +- gdk-pixbuf-core.h \ +- gdk-pixbuf-transform.h \ +- gdk-pixbuf-io.h \ +- gdk-pixbuf-animation.h \ +- gdk-pixbuf-simple-anim.h \ +- gdk-pixbuf-loader.h +- +- +-libgdk_pixbufinclude_HEADERS = \ +- $(gdk_pixbuf_headers) \ +- gdk-pixbuf-enum-types.h \ +- gdk-pixbuf-marshal.h \ +- gdk-pixbuf-features.h \ +- gdk-pixdata.h ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-emf.c + ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_emf_la_LIBADD = $(module_libs) $(libole32) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_LDFLAGS = -avoid-version -module -no-undefined ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_SOURCES = \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-bmp.c + +-noinst_HEADERS = \ +- gdk-pixbuf-alias.h \ +- gdk-pixbuf-private.h \ +- gdk-pixbuf-scaled-anim.h \ +- xpm-color-table.h ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_bmp_la_LIBADD = $(module_libs) $(libole32) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_LDFLAGS = -avoid-version -module -no-undefined ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_SOURCES = \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-gif.c + ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_gif_la_LIBADD = $(module_libs) $(libole32) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_LDFLAGS = -avoid-version -module -no-undefined ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_SOURCES = \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-jpeg.c + +-BUILT_SOURCES = \ +- gdk-pixbuf-alias.h \ +- gdk-pixbuf-aliasdef.c \ +- gdk-pixbuf-enum-types.h \ +- gdk-pixbuf-enum-types.c \ +- gdk-pixbuf-marshal.h \ +- gdk-pixbuf-marshal.c \ +- gdk-pixbuf-features.h ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_jpeg_la_LIBADD = $(module_libs) $(libole32) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_LDFLAGS = -avoid-version -module -no-undefined ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_SOURCES = \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-png.c + ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_png_la_LIBADD = $(module_libs) $(libole32) ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_LDFLAGS = -avoid-version -module -no-undefined ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_SOURCES = \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-native.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-propertytags.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.c \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.h \ ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-tiff.c + +-CLEANFILES = tmp-gdk-pixbuf-enum-types.h xgen-gmh xgen-gmc +-MAINTAINERCLEANFILES = \ +- gdk-pixbuf-aliasdef.c \ +- gdk-pixbuf-enum-types.h \ +- gdk-pixbuf-enum-types.c \ +- gdk-pixbuf-marshal.h \ +- gdk-pixbuf-marshal.c \ +- gdk-pixbuf.loaders\ +-s-enum-types-h stamp-gdk-pixbuf-marshal.h ++@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@libpixbufloader_gdip_tiff_la_LIBADD = $(module_libs) $(libole32) + +-@CROSS_COMPILING_TRUE@RUN_QUERY_LOADER_TEST = false +-@CROSS_COMPILING_FALSE@RUN_QUERY_LOADER_TEST = test -z "$(DESTDIR)" +-subdir = gdk-pixbuf +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = gdk_pixbuf.rc gdk-pixbuf-features.h +-LTLIBRARIES = $(lib_LTLIBRARIES) $(loader_LTLIBRARIES) \ +- $(noinst_LTLIBRARIES) ++# Loaders that aren't built if we build the GDI+ loader ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_TRUE@STATIC_BMP_LIB = libstatic-pixbufloader-bmp.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_BMP_FALSE@BMP_LIB = libpixbufloader-bmp.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_TRUE@STATIC_GIF_LIB = libstatic-pixbufloader-gif.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GIF_FALSE@GIF_LIB = libpixbufloader-gif.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_TRUE@STATIC_ICO_LIB = libstatic-pixbufloader-ico.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_ICO_FALSE@ICO_LIB = libpixbufloader-ico.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_TRUE@STATIC_JPEG_LIB = libstatic-pixbufloader-jpeg.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_JPEG_TRUE@@INCLUDE_JPEG_FALSE@JPEG_LIB = libpixbufloader-jpeg.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_TRUE@STATIC_TIFF_LIB = libstatic-pixbufloader-tiff.la ++@BUILD_GDIPLUS_LOADERS_FALSE@@HAVE_TIFF_TRUE@@INCLUDE_TIFF_FALSE@TIFF_LIB = libpixbufloader-tiff.la + +-am_libgdk_pixbuf_2_0_la_OBJECTS = gdk-pixbuf.lo gdk-pixbuf-animation.lo \ +- gdk-pixbuf-data.lo gdk-pixbuf-io.lo gdk-pixbuf-loader.lo \ +- gdk-pixbuf-scale.lo gdk-pixbuf-simple-anim.lo \ +- gdk-pixbuf-scaled-anim.lo gdk-pixbuf-util.lo gdk-pixdata.lo \ +- gdk-pixbuf-enum-types.lo +-libgdk_pixbuf_2_0_la_OBJECTS = $(am_libgdk_pixbuf_2_0_la_OBJECTS) +-libpixbufloader_ani_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_ani_la_OBJECTS = io-ani.lo io-ani-animation.lo +-libpixbufloader_ani_la_OBJECTS = $(am_libpixbufloader_ani_la_OBJECTS) +-libpixbufloader_bmp_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_bmp_la_OBJECTS = io-bmp.lo +-libpixbufloader_bmp_la_OBJECTS = $(am_libpixbufloader_bmp_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_bmp_la_DEPENDENCIES = +-am__libpixbufloader_gdip_bmp_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-bmp.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_bmp_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-bmp.lo +-libpixbufloader_gdip_bmp_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_bmp_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_emf_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_emf_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_emf_la_DEPENDENCIES = +-am__libpixbufloader_gdip_emf_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-emf.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_emf_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-emf.lo +-libpixbufloader_gdip_emf_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_emf_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_gif_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_gif_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_gif_la_DEPENDENCIES = +-am__libpixbufloader_gdip_gif_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-gif.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_gif_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-gif.lo +-libpixbufloader_gdip_gif_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_gif_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_ico_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_ico_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_ico_la_DEPENDENCIES = +-am__libpixbufloader_gdip_ico_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-ico.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_ico_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-ico.lo +-libpixbufloader_gdip_ico_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_ico_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_jpeg_la_DEPENDENCIES = +-am__libpixbufloader_gdip_jpeg_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-jpeg.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_jpeg_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-jpeg.lo +-libpixbufloader_gdip_jpeg_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_jpeg_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_tiff_la_DEPENDENCIES = +-am__libpixbufloader_gdip_tiff_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-tiff.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_tiff_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-tiff.lo +-libpixbufloader_gdip_tiff_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_tiff_la_OBJECTS) +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_FALSE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_TRUE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@@OS_WIN32_FALSE@ libgdk_pixbuf-$(GTK_API_VERSION).la +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_TRUE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@@OS_WIN32_FALSE@libpixbufloader_gdip_wmf_la_DEPENDENCIES = +-am__libpixbufloader_gdip_wmf_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-wmf.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@am_libpixbufloader_gdip_wmf_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_FALSE@ io-gdip-wmf.lo +-libpixbufloader_gdip_wmf_la_OBJECTS = \ +- $(am_libpixbufloader_gdip_wmf_la_OBJECTS) +-libpixbufloader_gif_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_gif_la_OBJECTS = io-gif.lo io-gif-animation.lo +-libpixbufloader_gif_la_OBJECTS = $(am_libpixbufloader_gif_la_OBJECTS) +-libpixbufloader_icns_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_icns_la_OBJECTS = io-icns.lo +-libpixbufloader_icns_la_OBJECTS = $(am_libpixbufloader_icns_la_OBJECTS) +-libpixbufloader_ico_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_ico_la_OBJECTS = io-ico.lo +-libpixbufloader_ico_la_OBJECTS = $(am_libpixbufloader_ico_la_OBJECTS) +-libpixbufloader_jasper_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_jasper_la_OBJECTS = io-jasper.lo +-libpixbufloader_jasper_la_OBJECTS = \ +- $(am_libpixbufloader_jasper_la_OBJECTS) +-libpixbufloader_jpeg_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_jpeg_la_OBJECTS = io-jpeg.lo +-libpixbufloader_jpeg_la_OBJECTS = $(am_libpixbufloader_jpeg_la_OBJECTS) +-libpixbufloader_pcx_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_pcx_la_OBJECTS = io-pcx.lo +-libpixbufloader_pcx_la_OBJECTS = $(am_libpixbufloader_pcx_la_OBJECTS) +-libpixbufloader_png_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_png_la_OBJECTS = io-png.lo +-libpixbufloader_png_la_OBJECTS = $(am_libpixbufloader_png_la_OBJECTS) +-libpixbufloader_pnm_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_pnm_la_OBJECTS = io-pnm.lo +-libpixbufloader_pnm_la_OBJECTS = $(am_libpixbufloader_pnm_la_OBJECTS) +-libpixbufloader_ras_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_ras_la_OBJECTS = io-ras.lo +-libpixbufloader_ras_la_OBJECTS = $(am_libpixbufloader_ras_la_OBJECTS) +-libpixbufloader_tga_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_tga_la_OBJECTS = io-tga.lo +-libpixbufloader_tga_la_OBJECTS = $(am_libpixbufloader_tga_la_OBJECTS) +-libpixbufloader_tiff_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_tiff_la_OBJECTS = io-tiff.lo +-libpixbufloader_tiff_la_OBJECTS = $(am_libpixbufloader_tiff_la_OBJECTS) +-libpixbufloader_wbmp_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_wbmp_la_OBJECTS = io-wbmp.lo +-libpixbufloader_wbmp_la_OBJECTS = $(am_libpixbufloader_wbmp_la_OBJECTS) +-libpixbufloader_xbm_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_xbm_la_OBJECTS = io-xbm.lo +-libpixbufloader_xbm_la_OBJECTS = $(am_libpixbufloader_xbm_la_OBJECTS) +-libpixbufloader_xpm_la_DEPENDENCIES = \ +- libgdk_pixbuf-$(GTK_API_VERSION).la +-am_libpixbufloader_xpm_la_OBJECTS = io-xpm.lo +-libpixbufloader_xpm_la_OBJECTS = $(am_libpixbufloader_xpm_la_OBJECTS) +-libstatic_pixbufloader_ani_la_LDFLAGS = +-libstatic_pixbufloader_ani_la_LIBADD = +-am_libstatic_pixbufloader_ani_la_OBJECTS = io-ani.lo io-ani-animation.lo +-libstatic_pixbufloader_ani_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_ani_la_OBJECTS) +-libstatic_pixbufloader_bmp_la_LDFLAGS = +-libstatic_pixbufloader_bmp_la_LIBADD = +-am_libstatic_pixbufloader_bmp_la_OBJECTS = io-bmp.lo +-libstatic_pixbufloader_bmp_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_bmp_la_OBJECTS) +-libstatic_pixbufloader_gdip_bmp_la_LDFLAGS = +-libstatic_pixbufloader_gdip_bmp_la_LIBADD = +-am__libstatic_pixbufloader_gdip_bmp_la_SOURCES_DIST = io-gdip-bmp.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_bmp_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-bmp.lo +-libstatic_pixbufloader_gdip_bmp_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_bmp_la_OBJECTS) +-libstatic_pixbufloader_gdip_emf_la_LDFLAGS = +-libstatic_pixbufloader_gdip_emf_la_LIBADD = +-am__libstatic_pixbufloader_gdip_emf_la_SOURCES_DIST = io-gdip-emf.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_emf_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-emf.lo +-libstatic_pixbufloader_gdip_emf_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_emf_la_OBJECTS) +-libstatic_pixbufloader_gdip_gif_la_LDFLAGS = +-libstatic_pixbufloader_gdip_gif_la_LIBADD = +-am__libstatic_pixbufloader_gdip_gif_la_SOURCES_DIST = io-gdip-gif.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_gif_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-gif.lo +-libstatic_pixbufloader_gdip_gif_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_gif_la_OBJECTS) +-libstatic_pixbufloader_gdip_ico_la_LDFLAGS = +-libstatic_pixbufloader_gdip_ico_la_LIBADD = +-am__libstatic_pixbufloader_gdip_ico_la_SOURCES_DIST = io-gdip-native.h \ +- io-gdip-propertytags.h io-gdip-utils.h io-gdip-utils.c \ +- io-gdip-animation.c io-gdip-animation.h io-gdip-ico.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_ico_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-utils.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-animation.lo \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-ico.lo +-libstatic_pixbufloader_gdip_ico_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_ico_la_OBJECTS) +-libstatic_pixbufloader_gdip_jpeg_la_LDFLAGS = +-libstatic_pixbufloader_gdip_jpeg_la_LIBADD = +-am__libstatic_pixbufloader_gdip_jpeg_la_SOURCES_DIST = io-gdip-jpeg.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_jpeg_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-jpeg.lo +-libstatic_pixbufloader_gdip_jpeg_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_jpeg_la_OBJECTS) +-libstatic_pixbufloader_gdip_tiff_la_LDFLAGS = +-libstatic_pixbufloader_gdip_tiff_la_LIBADD = +-am__libstatic_pixbufloader_gdip_tiff_la_SOURCES_DIST = io-gdip-tiff.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_tiff_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-tiff.lo +-libstatic_pixbufloader_gdip_tiff_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_tiff_la_OBJECTS) +-libstatic_pixbufloader_gdip_wmf_la_LDFLAGS = +-libstatic_pixbufloader_gdip_wmf_la_LIBADD = +-am__libstatic_pixbufloader_gdip_wmf_la_SOURCES_DIST = io-gdip-wmf.c +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@am_libstatic_pixbufloader_gdip_wmf_la_OBJECTS = \ +-@BUILD_GDIPLUS_LOADERS_TRUE@@INCLUDE_GDIPLUS_TRUE@ io-gdip-wmf.lo +-libstatic_pixbufloader_gdip_wmf_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gdip_wmf_la_OBJECTS) +-libstatic_pixbufloader_gif_la_LDFLAGS = +-libstatic_pixbufloader_gif_la_LIBADD = +-am_libstatic_pixbufloader_gif_la_OBJECTS = io-gif.lo io-gif-animation.lo +-libstatic_pixbufloader_gif_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_gif_la_OBJECTS) +-libstatic_pixbufloader_icns_la_LDFLAGS = +-libstatic_pixbufloader_icns_la_LIBADD = +-am_libstatic_pixbufloader_icns_la_OBJECTS = io-icns.lo +-libstatic_pixbufloader_icns_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_icns_la_OBJECTS) +-libstatic_pixbufloader_ico_la_LDFLAGS = +-libstatic_pixbufloader_ico_la_LIBADD = +-am_libstatic_pixbufloader_ico_la_OBJECTS = io-ico.lo +-libstatic_pixbufloader_ico_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_ico_la_OBJECTS) +-libstatic_pixbufloader_jasper_la_LDFLAGS = +-libstatic_pixbufloader_jasper_la_LIBADD = +-am_libstatic_pixbufloader_jasper_la_OBJECTS = io-jasper.lo +-libstatic_pixbufloader_jasper_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_jasper_la_OBJECTS) +-libstatic_pixbufloader_jpeg_la_LDFLAGS = +-libstatic_pixbufloader_jpeg_la_LIBADD = +-am_libstatic_pixbufloader_jpeg_la_OBJECTS = io-jpeg.lo +-libstatic_pixbufloader_jpeg_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_jpeg_la_OBJECTS) +-libstatic_pixbufloader_pcx_la_LDFLAGS = +-libstatic_pixbufloader_pcx_la_LIBADD = +-am_libstatic_pixbufloader_pcx_la_OBJECTS = io-pcx.lo +-libstatic_pixbufloader_pcx_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_pcx_la_OBJECTS) +-libstatic_pixbufloader_png_la_LDFLAGS = +-libstatic_pixbufloader_png_la_LIBADD = +-am_libstatic_pixbufloader_png_la_OBJECTS = io-png.lo +-libstatic_pixbufloader_png_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_png_la_OBJECTS) +-libstatic_pixbufloader_pnm_la_LDFLAGS = +-libstatic_pixbufloader_pnm_la_LIBADD = +-am_libstatic_pixbufloader_pnm_la_OBJECTS = io-pnm.lo +-libstatic_pixbufloader_pnm_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_pnm_la_OBJECTS) +-libstatic_pixbufloader_ras_la_LDFLAGS = +-libstatic_pixbufloader_ras_la_LIBADD = +-am_libstatic_pixbufloader_ras_la_OBJECTS = io-ras.lo +-libstatic_pixbufloader_ras_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_ras_la_OBJECTS) +-libstatic_pixbufloader_tga_la_LDFLAGS = +-libstatic_pixbufloader_tga_la_LIBADD = +-am_libstatic_pixbufloader_tga_la_OBJECTS = io-tga.lo +-libstatic_pixbufloader_tga_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_tga_la_OBJECTS) +-libstatic_pixbufloader_tiff_la_LDFLAGS = +-libstatic_pixbufloader_tiff_la_LIBADD = +-am_libstatic_pixbufloader_tiff_la_OBJECTS = io-tiff.lo +-libstatic_pixbufloader_tiff_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_tiff_la_OBJECTS) +-libstatic_pixbufloader_wbmp_la_LDFLAGS = +-libstatic_pixbufloader_wbmp_la_LIBADD = +-am_libstatic_pixbufloader_wbmp_la_OBJECTS = io-wbmp.lo +-libstatic_pixbufloader_wbmp_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_wbmp_la_OBJECTS) +-libstatic_pixbufloader_xbm_la_LDFLAGS = +-libstatic_pixbufloader_xbm_la_LIBADD = +-am_libstatic_pixbufloader_xbm_la_OBJECTS = io-xbm.lo +-libstatic_pixbufloader_xbm_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_xbm_la_OBJECTS) +-libstatic_pixbufloader_xpm_la_LDFLAGS = +-libstatic_pixbufloader_xpm_la_LIBADD = +-am_libstatic_pixbufloader_xpm_la_OBJECTS = io-xpm.lo +-libstatic_pixbufloader_xpm_la_OBJECTS = \ +- $(am_libstatic_pixbufloader_xpm_la_OBJECTS) +-bin_PROGRAMS = gdk-pixbuf-csource$(EXEEXT) \ +- gdk-pixbuf-query-loaders$(EXEEXT) +-noinst_PROGRAMS = test-gdk-pixbuf$(EXEEXT) +-PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) ++# End of loaders not built if building GDI+ loader ++@HAVE_PNG_TRUE@@INCLUDE_PNG_TRUE@STATIC_PNG_LIB = libstatic-pixbufloader-png.la ++@HAVE_PNG_TRUE@@INCLUDE_PNG_FALSE@PNG_LIB = libpixbufloader-png.la ++@INCLUDE_WBMP_TRUE@STATIC_WBMP_LIB = libstatic-pixbufloader-wbmp.la ++@INCLUDE_WBMP_FALSE@WBMP_LIB = libpixbufloader-wbmp.la ++@INCLUDE_ANI_TRUE@STATIC_ANI_LIB = libstatic-pixbufloader-ani.la ++@INCLUDE_ANI_FALSE@ANI_LIB = libpixbufloader-ani.la ++@INCLUDE_PNM_TRUE@STATIC_PNM_LIB = libstatic-pixbufloader-pnm.la ++@INCLUDE_PNM_FALSE@PNM_LIB = libpixbufloader-pnm.la ++@INCLUDE_RAS_TRUE@STATIC_RAS_LIB = libstatic-pixbufloader-ras.la ++@INCLUDE_RAS_FALSE@RAS_LIB = libpixbufloader-ras.la ++@INCLUDE_XPM_TRUE@STATIC_XPM_LIB = libstatic-pixbufloader-xpm.la ++@INCLUDE_XPM_FALSE@XPM_LIB = libpixbufloader-xpm.la ++@INCLUDE_XBM_TRUE@STATIC_XBM_LIB = libstatic-pixbufloader-xbm.la ++@INCLUDE_XBM_FALSE@XBM_LIB = libpixbufloader-xbm.la ++@INCLUDE_TGA_TRUE@STATIC_TGA_LIB = libstatic-pixbufloader-tga.la ++@INCLUDE_TGA_FALSE@TGA_LIB = libpixbufloader-tga.la ++@INCLUDE_PCX_TRUE@STATIC_PCX_LIB = libstatic-pixbufloader-pcx.la ++@INCLUDE_PCX_FALSE@PCX_LIB = libpixbufloader-pcx.la ++@INCLUDE_ICNS_TRUE@STATIC_ICNS_LIB = libstatic-pixbufloader-icns.la ++@INCLUDE_ICNS_FALSE@ICNS_LIB = libpixbufloader-icns.la ++@HAVE_JASPER_TRUE@@INCLUDE_JASPER_TRUE@STATIC_JASPER_LIB = libstatic-pixbufloader-jasper.la ++@HAVE_JASPER_TRUE@@INCLUDE_JASPER_FALSE@JASPER_LIB = libpixbufloader-jasper.la ++@BUILD_DYNAMIC_MODULES_TRUE@loader_LTLIBRARIES = \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(PNG_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(BMP_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(WBMP_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(GIF_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(ICO_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(ANI_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(JPEG_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(PNM_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(RAS_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(TIFF_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(XPM_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(XBM_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(TGA_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(ICNS_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(PCX_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(JASPER_LIB) \ ++@BUILD_DYNAMIC_MODULES_TRUE@ $(GDIPLUS_LIBS) + +-am_gdk_pixbuf_csource_OBJECTS = gdk-pixbuf-csource.$(OBJEXT) +-gdk_pixbuf_csource_OBJECTS = $(am_gdk_pixbuf_csource_OBJECTS) +-gdk_pixbuf_csource_DEPENDENCIES = libgdk_pixbuf-$(GTK_API_VERSION).la +-gdk_pixbuf_csource_LDFLAGS = +-am_gdk_pixbuf_query_loaders_OBJECTS = queryloaders.$(OBJEXT) +-gdk_pixbuf_query_loaders_OBJECTS = \ +- $(am_gdk_pixbuf_query_loaders_OBJECTS) +-gdk_pixbuf_query_loaders_LDFLAGS = +-test_gdk_pixbuf_SOURCES = test-gdk-pixbuf.c +-test_gdk_pixbuf_OBJECTS = test-gdk-pixbuf.$(OBJEXT) +-test_gdk_pixbuf_DEPENDENCIES = libgdk_pixbuf-$(GTK_API_VERSION).la +-test_gdk_pixbuf_LDFLAGS = ++noinst_LTLIBRARIES = \ ++ $(STATIC_PNG_LIB) \ ++ $(STATIC_BMP_LIB) \ ++ $(STATIC_WBMP_LIB) \ ++ $(STATIC_GIF_LIB) \ ++ $(STATIC_ICO_LIB) \ ++ $(STATIC_ANI_LIB) \ ++ $(STATIC_JPEG_LIB) \ ++ $(STATIC_PNM_LIB) \ ++ $(STATIC_RAS_LIB) \ ++ $(STATIC_TIFF_LIB) \ ++ $(STATIC_XPM_LIB) \ ++ $(STATIC_XBM_LIB) \ ++ $(STATIC_TGA_LIB) \ ++ $(STATIC_ICNS_LIB) \ ++ $(STATIC_PCX_LIB) \ ++ $(STATIC_JASPER_LIB) \ ++ $(STATIC_GDIPLUS_LIBS) + +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gdk-pixbuf-animation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-csource.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-data.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-enum-types.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-io.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-loader.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-scale.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-scaled-anim.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-simple-anim.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf-util.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixbuf.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gdk-pixdata.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-ani-animation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-ani.Plo ./$(DEPDIR)/io-bmp.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-animation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-bmp.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-emf.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-gif.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-ico.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-jpeg.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-tiff.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-utils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gdip-wmf.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gif-animation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-gif.Plo ./$(DEPDIR)/io-icns.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-ico.Plo ./$(DEPDIR)/io-jasper.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-jpeg.Plo ./$(DEPDIR)/io-pcx.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-png.Plo ./$(DEPDIR)/io-pnm.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-ras.Plo ./$(DEPDIR)/io-tga.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-tiff.Plo ./$(DEPDIR)/io-wbmp.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/io-xbm.Plo ./$(DEPDIR)/io-xpm.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/queryloaders.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/test-gdk-pixbuf.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgdk_pixbuf_2_0_la_SOURCES) \ +- $(libpixbufloader_ani_la_SOURCES) \ +- $(libpixbufloader_bmp_la_SOURCES) \ +- $(am__libpixbufloader_gdip_bmp_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_emf_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_gif_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_ico_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_jpeg_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_tiff_la_SOURCES_DIST) \ +- $(am__libpixbufloader_gdip_wmf_la_SOURCES_DIST) \ +- $(libpixbufloader_gif_la_SOURCES) \ +- $(libpixbufloader_icns_la_SOURCES) \ +- $(libpixbufloader_ico_la_SOURCES) \ +- $(libpixbufloader_jasper_la_SOURCES) \ +- $(libpixbufloader_jpeg_la_SOURCES) \ +- $(libpixbufloader_pcx_la_SOURCES) \ +- $(libpixbufloader_png_la_SOURCES) \ +- $(libpixbufloader_pnm_la_SOURCES) \ +- $(libpixbufloader_ras_la_SOURCES) \ +- $(libpixbufloader_tga_la_SOURCES) \ +- $(libpixbufloader_tiff_la_SOURCES) \ +- $(libpixbufloader_wbmp_la_SOURCES) \ +- $(libpixbufloader_xbm_la_SOURCES) \ +- $(libpixbufloader_xpm_la_SOURCES) \ +- $(libstatic_pixbufloader_ani_la_SOURCES) \ +- $(libstatic_pixbufloader_bmp_la_SOURCES) \ +- $(am__libstatic_pixbufloader_gdip_bmp_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_emf_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_gif_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_ico_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_jpeg_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_tiff_la_SOURCES_DIST) \ +- $(am__libstatic_pixbufloader_gdip_wmf_la_SOURCES_DIST) \ +- $(libstatic_pixbufloader_gif_la_SOURCES) \ +- $(libstatic_pixbufloader_icns_la_SOURCES) \ +- $(libstatic_pixbufloader_ico_la_SOURCES) \ +- $(libstatic_pixbufloader_jasper_la_SOURCES) \ +- $(libstatic_pixbufloader_jpeg_la_SOURCES) \ +- $(libstatic_pixbufloader_pcx_la_SOURCES) \ +- $(libstatic_pixbufloader_png_la_SOURCES) \ +- $(libstatic_pixbufloader_pnm_la_SOURCES) \ +- $(libstatic_pixbufloader_ras_la_SOURCES) \ +- $(libstatic_pixbufloader_tga_la_SOURCES) \ +- $(libstatic_pixbufloader_tiff_la_SOURCES) \ +- $(libstatic_pixbufloader_wbmp_la_SOURCES) \ +- $(libstatic_pixbufloader_xbm_la_SOURCES) \ +- $(libstatic_pixbufloader_xpm_la_SOURCES) \ +- $(gdk_pixbuf_csource_SOURCES) \ +- $(gdk_pixbuf_query_loaders_SOURCES) test-gdk-pixbuf.c +-DATA = $(noinst_DATA) ++builtin_objs = @INCLUDED_LOADER_OBJ@ ++DEPS = libgdk_pixbuf-$(GTK_API_VERSION).la ++INCLUDES = \ ++ -DG_LOG_DOMAIN=\"GdkPixbuf\" \ ++ -DGDK_PIXBUF_COMPILATION \ ++ -I$(top_srcdir) -I$(top_builddir) \ ++ -I$(top_srcdir)/gdk-pixbuf \ ++ -I$(top_builddir)/gdk-pixbuf \ ++ -DGTK_SYSCONFDIR=\"$(sysconfdir)\" \ ++ -DGTK_VERSION=\"$(GTK_VERSION)\" \ ++ -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \ ++ -DGTK_PREFIX=\"$(prefix)\" \ ++ $(INCLUDED_LOADER_DEFINE) \ ++ $(GTK_DEBUG_FLAGS) \ ++ $(GDK_PIXBUF_DEP_CFLAGS) \ ++ -DGDK_PIXBUF_ENABLE_BACKEND + +-HEADERS = $(libgdk_pixbufinclude_HEADERS) $(noinst_HEADERS) ++AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DPIXBUF_FILES_LIBDIR=\"$(loaderfilesdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\"" ++LDADDS = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS) ++test_gdk_pixbuf_LDADD = $(LDADDS) ++gdk_pixbuf_csource_SOURCES = gdk-pixbuf-csource.c ++gdk_pixbuf_csource_LDADD = $(LDADDS) ++gdk_pixbuf_query_loaders_DEPENDENCIES = $(DEPS) ++gdk_pixbuf_query_loaders_LDADD = $(LDADDS) ++gdk_pixbuf_query_loaders_SOURCES = queryloaders.c ++ ++# ++# The GdkPixBuf library ++# ++libgdk_pixbufincludedir = $(includedir)/gtk-2.0/gdk-pixbuf ++libgdk_pixbuf_2_0_la_SOURCES = \ ++ gdk-pixbuf-i18n.h \ ++ gdk-pixbuf.c \ ++ gdk-pixbuf-animation.c \ ++ gdk-pixbuf-data.c \ ++ gdk-pixbuf-io.c \ ++ gdk-pixbuf-loader.c \ ++ gdk-pixbuf-scale.c \ ++ gdk-pixbuf-simple-anim.c \ ++ gdk-pixbuf-scaled-anim.c \ ++ gdk-pixbuf-util.c \ ++ gdk-pixdata.c \ ++ gdk-pixbuf-enum-types.c + ++libgdk_pixbuf_2_0_la_LDFLAGS = \ ++ $(gdk_pixbuf_win32_res_ldflag) \ ++ -version-info $(LT_VERSION_INFO) \ ++ $(LIBTOOL_EXPORT_OPTIONS) \ ++ $(no_undefined) \ ++ $(gdk_pixbuf_symbols) + +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(libgdk_pixbufinclude_HEADERS) $(noinst_HEADERS) \ +- $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ChangeLog \ +- Makefile.am gdk-pixbuf-features.h.in gdk_pixbuf.rc.in +-DIST_SUBDIRS = $(SUBDIRS) +-SOURCES = $(libgdk_pixbuf_2_0_la_SOURCES) $(libpixbufloader_ani_la_SOURCES) $(libpixbufloader_bmp_la_SOURCES) $(libpixbufloader_gdip_bmp_la_SOURCES) $(libpixbufloader_gdip_emf_la_SOURCES) $(libpixbufloader_gdip_gif_la_SOURCES) $(libpixbufloader_gdip_ico_la_SOURCES) $(libpixbufloader_gdip_jpeg_la_SOURCES) $(libpixbufloader_gdip_tiff_la_SOURCES) $(libpixbufloader_gdip_wmf_la_SOURCES) $(libpixbufloader_gif_la_SOURCES) $(libpixbufloader_icns_la_SOURCES) $(libpixbufloader_ico_la_SOURCES) $(libpixbufloader_jasper_la_SOURCES) $(libpixbufloader_jpeg_la_SOURCES) $(libpixbufloader_pcx_la_SOURCES) $(libpixbufloader_png_la_SOURCES) $(libpixbufloader_pnm_la_SOURCES) $(libpixbufloader_ras_la_SOURCES) $(libpixbufloader_tga_la_SOURCES) $(libpixbufloader_tiff_la_SOURCES) $(libpixbufloader_wbmp_la_SOURCES) $(libpixbufloader_xbm_la_SOURCES) $(libpixbufloader_xpm_la_SOURCES) $(libstatic_pixbufloader_ani_la_SOURCES) $(libstatic_pixbufloader_bmp_la_SOURCES) $(libstatic_pixbufloader_gdip_bmp_la_SOURCES) $(libstatic_pixbufloader_gdip_emf_la_SOURCES) $(libstatic_pixbufloader_gdip_gif_la_SOURCES) $(libstatic_pixbufloader_gdip_ico_la_SOURCES) $(libstatic_pixbufloader_gdip_jpeg_la_SOURCES) $(libstatic_pixbufloader_gdip_tiff_la_SOURCES) $(libstatic_pixbufloader_gdip_wmf_la_SOURCES) $(libstatic_pixbufloader_gif_la_SOURCES) $(libstatic_pixbufloader_icns_la_SOURCES) $(libstatic_pixbufloader_ico_la_SOURCES) $(libstatic_pixbufloader_jasper_la_SOURCES) $(libstatic_pixbufloader_jpeg_la_SOURCES) $(libstatic_pixbufloader_pcx_la_SOURCES) $(libstatic_pixbufloader_png_la_SOURCES) $(libstatic_pixbufloader_pnm_la_SOURCES) $(libstatic_pixbufloader_ras_la_SOURCES) $(libstatic_pixbufloader_tga_la_SOURCES) $(libstatic_pixbufloader_tiff_la_SOURCES) $(libstatic_pixbufloader_wbmp_la_SOURCES) $(libstatic_pixbufloader_xbm_la_SOURCES) $(libstatic_pixbufloader_xpm_la_SOURCES) $(gdk_pixbuf_csource_SOURCES) $(gdk_pixbuf_query_loaders_SOURCES) test-gdk-pixbuf.c ++libgdk_pixbuf_2_0_la_LIBADD = pixops/libpixops.la $(builtin_objs) $(GDK_PIXBUF_DEP_LIBS) $(libole32) ++libgdk_pixbuf_2_0_la_DEPENDENCIES = pixops/libpixops.la $(builtin_objs) $(gdk_pixbuf_def) $(gdk_pixbuf_win32_res) ++gdk_pixbuf_headers = \ ++ gdk-pixbuf.h \ ++ gdk-pixbuf-core.h \ ++ gdk-pixbuf-transform.h \ ++ gdk-pixbuf-io.h \ ++ gdk-pixbuf-animation.h \ ++ gdk-pixbuf-simple-anim.h \ ++ gdk-pixbuf-loader.h + ++libgdk_pixbufinclude_HEADERS = \ ++ $(gdk_pixbuf_headers) \ ++ gdk-pixbuf-enum-types.h \ ++ gdk-pixbuf-marshal.h \ ++ gdk-pixbuf-features.h \ ++ gdk-pixdata.h ++ ++noinst_HEADERS = \ ++ gdk-pixbuf-alias.h \ ++ gdk-pixbuf-private.h \ ++ gdk-pixbuf-scaled-anim.h \ ++ xpm-color-table.h ++ ++BUILT_SOURCES = \ ++ gdk-pixbuf-alias.h \ ++ gdk-pixbuf-aliasdef.c \ ++ gdk-pixbuf-enum-types.h \ ++ gdk-pixbuf-enum-types.c \ ++ gdk-pixbuf-marshal.h \ ++ gdk-pixbuf-marshal.c \ ++ gdk-pixbuf-features.h ++ ++CLEANFILES = tmp-gdk-pixbuf-enum-types.h xgen-gmh xgen-gmc ++MAINTAINERCLEANFILES = gdk-pixbuf-aliasdef.c gdk-pixbuf-enum-types.h \ ++ gdk-pixbuf-enum-types.c gdk-pixbuf-marshal.h \ ++ gdk-pixbuf-marshal.c gdk-pixbuf.loaders s-enum-types-h \ ++ stamp-gdk-pixbuf-marshal.h ++@CROSS_COMPILING_FALSE@RUN_QUERY_LOADER_TEST = test -z "$(DESTDIR)" ++@CROSS_COMPILING_TRUE@RUN_QUERY_LOADER_TEST = false + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk-pixbuf/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-gdk_pixbuf.rc: $(top_builddir)/config.status gdk_pixbuf.rc.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk-pixbuf/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk-pixbuf/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++gdk_pixbuf.rc: $(top_builddir)/config.status $(srcdir)/gdk_pixbuf.rc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-gdk-pixbuf-features.h: $(top_builddir)/config.status gdk-pixbuf-features.h.in ++gdk-pixbuf-features.h: $(top_builddir)/config.status $(srcdir)/gdk-pixbuf-features.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-libLTLIBRARIES_INSTALL = $(INSTALL) + install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libdir) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ ++ } + + uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + + clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +-loaderLTLIBRARIES_INSTALL = $(INSTALL) + install-loaderLTLIBRARIES: $(loader_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(loaderdir) +- @list='$(loader_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(loaderdir)" || $(MKDIR_P) "$(DESTDIR)$(loaderdir)" ++ @list='$(loader_LTLIBRARIES)'; test -n "$(loaderdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(loaderLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(loaderdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(loaderLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(loaderdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(loaderdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(loaderdir)"; \ ++ } + + uninstall-loaderLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(loader_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(loaderdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(loaderdir)/$$p; \ ++ @list='$(loader_LTLIBRARIES)'; test -n "$(loaderdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(loaderdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(loaderdir)/$$f"; \ + done + + clean-loaderLTLIBRARIES: + -test -z "$(loader_LTLIBRARIES)" || rm -f $(loader_LTLIBRARIES) + @list='$(loader_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +@@ -1491,152 +1501,168 @@ + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgdk_pixbuf-2.0.la: $(libgdk_pixbuf_2_0_la_OBJECTS) $(libgdk_pixbuf_2_0_la_DEPENDENCIES) +- $(LINK) -rpath $(libdir) $(libgdk_pixbuf_2_0_la_LDFLAGS) $(libgdk_pixbuf_2_0_la_OBJECTS) $(libgdk_pixbuf_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgdk_pixbuf_2_0_la_LINK) -rpath $(libdir) $(libgdk_pixbuf_2_0_la_OBJECTS) $(libgdk_pixbuf_2_0_la_LIBADD) $(LIBS) + libpixbufloader-ani.la: $(libpixbufloader_ani_la_OBJECTS) $(libpixbufloader_ani_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_ani_la_LDFLAGS) $(libpixbufloader_ani_la_OBJECTS) $(libpixbufloader_ani_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_ani_la_LINK) $(am_libpixbufloader_ani_la_rpath) $(libpixbufloader_ani_la_OBJECTS) $(libpixbufloader_ani_la_LIBADD) $(LIBS) + libpixbufloader-bmp.la: $(libpixbufloader_bmp_la_OBJECTS) $(libpixbufloader_bmp_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_bmp_la_LDFLAGS) $(libpixbufloader_bmp_la_OBJECTS) $(libpixbufloader_bmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_bmp_la_LINK) $(am_libpixbufloader_bmp_la_rpath) $(libpixbufloader_bmp_la_OBJECTS) $(libpixbufloader_bmp_la_LIBADD) $(LIBS) + libpixbufloader-gdip-bmp.la: $(libpixbufloader_gdip_bmp_la_OBJECTS) $(libpixbufloader_gdip_bmp_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_bmp_la_LDFLAGS) $(libpixbufloader_gdip_bmp_la_OBJECTS) $(libpixbufloader_gdip_bmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_bmp_la_LINK) $(am_libpixbufloader_gdip_bmp_la_rpath) $(libpixbufloader_gdip_bmp_la_OBJECTS) $(libpixbufloader_gdip_bmp_la_LIBADD) $(LIBS) + libpixbufloader-gdip-emf.la: $(libpixbufloader_gdip_emf_la_OBJECTS) $(libpixbufloader_gdip_emf_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_emf_la_LDFLAGS) $(libpixbufloader_gdip_emf_la_OBJECTS) $(libpixbufloader_gdip_emf_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_emf_la_LINK) $(am_libpixbufloader_gdip_emf_la_rpath) $(libpixbufloader_gdip_emf_la_OBJECTS) $(libpixbufloader_gdip_emf_la_LIBADD) $(LIBS) + libpixbufloader-gdip-gif.la: $(libpixbufloader_gdip_gif_la_OBJECTS) $(libpixbufloader_gdip_gif_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_gif_la_LDFLAGS) $(libpixbufloader_gdip_gif_la_OBJECTS) $(libpixbufloader_gdip_gif_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_gif_la_LINK) $(am_libpixbufloader_gdip_gif_la_rpath) $(libpixbufloader_gdip_gif_la_OBJECTS) $(libpixbufloader_gdip_gif_la_LIBADD) $(LIBS) + libpixbufloader-gdip-ico.la: $(libpixbufloader_gdip_ico_la_OBJECTS) $(libpixbufloader_gdip_ico_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_ico_la_LDFLAGS) $(libpixbufloader_gdip_ico_la_OBJECTS) $(libpixbufloader_gdip_ico_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_ico_la_LINK) $(am_libpixbufloader_gdip_ico_la_rpath) $(libpixbufloader_gdip_ico_la_OBJECTS) $(libpixbufloader_gdip_ico_la_LIBADD) $(LIBS) + libpixbufloader-gdip-jpeg.la: $(libpixbufloader_gdip_jpeg_la_OBJECTS) $(libpixbufloader_gdip_jpeg_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_jpeg_la_LDFLAGS) $(libpixbufloader_gdip_jpeg_la_OBJECTS) $(libpixbufloader_gdip_jpeg_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_jpeg_la_LINK) $(am_libpixbufloader_gdip_jpeg_la_rpath) $(libpixbufloader_gdip_jpeg_la_OBJECTS) $(libpixbufloader_gdip_jpeg_la_LIBADD) $(LIBS) + libpixbufloader-gdip-tiff.la: $(libpixbufloader_gdip_tiff_la_OBJECTS) $(libpixbufloader_gdip_tiff_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_tiff_la_LDFLAGS) $(libpixbufloader_gdip_tiff_la_OBJECTS) $(libpixbufloader_gdip_tiff_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_tiff_la_LINK) $(am_libpixbufloader_gdip_tiff_la_rpath) $(libpixbufloader_gdip_tiff_la_OBJECTS) $(libpixbufloader_gdip_tiff_la_LIBADD) $(LIBS) + libpixbufloader-gdip-wmf.la: $(libpixbufloader_gdip_wmf_la_OBJECTS) $(libpixbufloader_gdip_wmf_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gdip_wmf_la_LDFLAGS) $(libpixbufloader_gdip_wmf_la_OBJECTS) $(libpixbufloader_gdip_wmf_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gdip_wmf_la_LINK) $(am_libpixbufloader_gdip_wmf_la_rpath) $(libpixbufloader_gdip_wmf_la_OBJECTS) $(libpixbufloader_gdip_wmf_la_LIBADD) $(LIBS) + libpixbufloader-gif.la: $(libpixbufloader_gif_la_OBJECTS) $(libpixbufloader_gif_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_gif_la_LDFLAGS) $(libpixbufloader_gif_la_OBJECTS) $(libpixbufloader_gif_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_gif_la_LINK) $(am_libpixbufloader_gif_la_rpath) $(libpixbufloader_gif_la_OBJECTS) $(libpixbufloader_gif_la_LIBADD) $(LIBS) + libpixbufloader-icns.la: $(libpixbufloader_icns_la_OBJECTS) $(libpixbufloader_icns_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_icns_la_LDFLAGS) $(libpixbufloader_icns_la_OBJECTS) $(libpixbufloader_icns_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_icns_la_LINK) $(am_libpixbufloader_icns_la_rpath) $(libpixbufloader_icns_la_OBJECTS) $(libpixbufloader_icns_la_LIBADD) $(LIBS) + libpixbufloader-ico.la: $(libpixbufloader_ico_la_OBJECTS) $(libpixbufloader_ico_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_ico_la_LDFLAGS) $(libpixbufloader_ico_la_OBJECTS) $(libpixbufloader_ico_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_ico_la_LINK) $(am_libpixbufloader_ico_la_rpath) $(libpixbufloader_ico_la_OBJECTS) $(libpixbufloader_ico_la_LIBADD) $(LIBS) + libpixbufloader-jasper.la: $(libpixbufloader_jasper_la_OBJECTS) $(libpixbufloader_jasper_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_jasper_la_LDFLAGS) $(libpixbufloader_jasper_la_OBJECTS) $(libpixbufloader_jasper_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_jasper_la_LINK) $(am_libpixbufloader_jasper_la_rpath) $(libpixbufloader_jasper_la_OBJECTS) $(libpixbufloader_jasper_la_LIBADD) $(LIBS) + libpixbufloader-jpeg.la: $(libpixbufloader_jpeg_la_OBJECTS) $(libpixbufloader_jpeg_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_jpeg_la_LDFLAGS) $(libpixbufloader_jpeg_la_OBJECTS) $(libpixbufloader_jpeg_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_jpeg_la_LINK) $(am_libpixbufloader_jpeg_la_rpath) $(libpixbufloader_jpeg_la_OBJECTS) $(libpixbufloader_jpeg_la_LIBADD) $(LIBS) + libpixbufloader-pcx.la: $(libpixbufloader_pcx_la_OBJECTS) $(libpixbufloader_pcx_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_pcx_la_LDFLAGS) $(libpixbufloader_pcx_la_OBJECTS) $(libpixbufloader_pcx_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_pcx_la_LINK) $(am_libpixbufloader_pcx_la_rpath) $(libpixbufloader_pcx_la_OBJECTS) $(libpixbufloader_pcx_la_LIBADD) $(LIBS) + libpixbufloader-png.la: $(libpixbufloader_png_la_OBJECTS) $(libpixbufloader_png_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_png_la_LDFLAGS) $(libpixbufloader_png_la_OBJECTS) $(libpixbufloader_png_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_png_la_LINK) $(am_libpixbufloader_png_la_rpath) $(libpixbufloader_png_la_OBJECTS) $(libpixbufloader_png_la_LIBADD) $(LIBS) + libpixbufloader-pnm.la: $(libpixbufloader_pnm_la_OBJECTS) $(libpixbufloader_pnm_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_pnm_la_LDFLAGS) $(libpixbufloader_pnm_la_OBJECTS) $(libpixbufloader_pnm_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_pnm_la_LINK) $(am_libpixbufloader_pnm_la_rpath) $(libpixbufloader_pnm_la_OBJECTS) $(libpixbufloader_pnm_la_LIBADD) $(LIBS) + libpixbufloader-ras.la: $(libpixbufloader_ras_la_OBJECTS) $(libpixbufloader_ras_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_ras_la_LDFLAGS) $(libpixbufloader_ras_la_OBJECTS) $(libpixbufloader_ras_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_ras_la_LINK) $(am_libpixbufloader_ras_la_rpath) $(libpixbufloader_ras_la_OBJECTS) $(libpixbufloader_ras_la_LIBADD) $(LIBS) + libpixbufloader-tga.la: $(libpixbufloader_tga_la_OBJECTS) $(libpixbufloader_tga_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_tga_la_LDFLAGS) $(libpixbufloader_tga_la_OBJECTS) $(libpixbufloader_tga_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_tga_la_LINK) $(am_libpixbufloader_tga_la_rpath) $(libpixbufloader_tga_la_OBJECTS) $(libpixbufloader_tga_la_LIBADD) $(LIBS) + libpixbufloader-tiff.la: $(libpixbufloader_tiff_la_OBJECTS) $(libpixbufloader_tiff_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_tiff_la_LDFLAGS) $(libpixbufloader_tiff_la_OBJECTS) $(libpixbufloader_tiff_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_tiff_la_LINK) $(am_libpixbufloader_tiff_la_rpath) $(libpixbufloader_tiff_la_OBJECTS) $(libpixbufloader_tiff_la_LIBADD) $(LIBS) + libpixbufloader-wbmp.la: $(libpixbufloader_wbmp_la_OBJECTS) $(libpixbufloader_wbmp_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_wbmp_la_LDFLAGS) $(libpixbufloader_wbmp_la_OBJECTS) $(libpixbufloader_wbmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_wbmp_la_LINK) $(am_libpixbufloader_wbmp_la_rpath) $(libpixbufloader_wbmp_la_OBJECTS) $(libpixbufloader_wbmp_la_LIBADD) $(LIBS) + libpixbufloader-xbm.la: $(libpixbufloader_xbm_la_OBJECTS) $(libpixbufloader_xbm_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_xbm_la_LDFLAGS) $(libpixbufloader_xbm_la_OBJECTS) $(libpixbufloader_xbm_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_xbm_la_LINK) $(am_libpixbufloader_xbm_la_rpath) $(libpixbufloader_xbm_la_OBJECTS) $(libpixbufloader_xbm_la_LIBADD) $(LIBS) + libpixbufloader-xpm.la: $(libpixbufloader_xpm_la_OBJECTS) $(libpixbufloader_xpm_la_DEPENDENCIES) +- $(LINK) -rpath $(loaderdir) $(libpixbufloader_xpm_la_LDFLAGS) $(libpixbufloader_xpm_la_OBJECTS) $(libpixbufloader_xpm_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixbufloader_xpm_la_LINK) $(am_libpixbufloader_xpm_la_rpath) $(libpixbufloader_xpm_la_OBJECTS) $(libpixbufloader_xpm_la_LIBADD) $(LIBS) + libstatic-pixbufloader-ani.la: $(libstatic_pixbufloader_ani_la_OBJECTS) $(libstatic_pixbufloader_ani_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_ani_la_LDFLAGS) $(libstatic_pixbufloader_ani_la_OBJECTS) $(libstatic_pixbufloader_ani_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_ani_la_rpath) $(libstatic_pixbufloader_ani_la_OBJECTS) $(libstatic_pixbufloader_ani_la_LIBADD) $(LIBS) + libstatic-pixbufloader-bmp.la: $(libstatic_pixbufloader_bmp_la_OBJECTS) $(libstatic_pixbufloader_bmp_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_bmp_la_LDFLAGS) $(libstatic_pixbufloader_bmp_la_OBJECTS) $(libstatic_pixbufloader_bmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_bmp_la_rpath) $(libstatic_pixbufloader_bmp_la_OBJECTS) $(libstatic_pixbufloader_bmp_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-bmp.la: $(libstatic_pixbufloader_gdip_bmp_la_OBJECTS) $(libstatic_pixbufloader_gdip_bmp_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_bmp_la_LDFLAGS) $(libstatic_pixbufloader_gdip_bmp_la_OBJECTS) $(libstatic_pixbufloader_gdip_bmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_bmp_la_rpath) $(libstatic_pixbufloader_gdip_bmp_la_OBJECTS) $(libstatic_pixbufloader_gdip_bmp_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-emf.la: $(libstatic_pixbufloader_gdip_emf_la_OBJECTS) $(libstatic_pixbufloader_gdip_emf_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_emf_la_LDFLAGS) $(libstatic_pixbufloader_gdip_emf_la_OBJECTS) $(libstatic_pixbufloader_gdip_emf_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_emf_la_rpath) $(libstatic_pixbufloader_gdip_emf_la_OBJECTS) $(libstatic_pixbufloader_gdip_emf_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-gif.la: $(libstatic_pixbufloader_gdip_gif_la_OBJECTS) $(libstatic_pixbufloader_gdip_gif_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_gif_la_LDFLAGS) $(libstatic_pixbufloader_gdip_gif_la_OBJECTS) $(libstatic_pixbufloader_gdip_gif_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_gif_la_rpath) $(libstatic_pixbufloader_gdip_gif_la_OBJECTS) $(libstatic_pixbufloader_gdip_gif_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-ico.la: $(libstatic_pixbufloader_gdip_ico_la_OBJECTS) $(libstatic_pixbufloader_gdip_ico_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_ico_la_LDFLAGS) $(libstatic_pixbufloader_gdip_ico_la_OBJECTS) $(libstatic_pixbufloader_gdip_ico_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_ico_la_rpath) $(libstatic_pixbufloader_gdip_ico_la_OBJECTS) $(libstatic_pixbufloader_gdip_ico_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-jpeg.la: $(libstatic_pixbufloader_gdip_jpeg_la_OBJECTS) $(libstatic_pixbufloader_gdip_jpeg_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_jpeg_la_LDFLAGS) $(libstatic_pixbufloader_gdip_jpeg_la_OBJECTS) $(libstatic_pixbufloader_gdip_jpeg_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_jpeg_la_rpath) $(libstatic_pixbufloader_gdip_jpeg_la_OBJECTS) $(libstatic_pixbufloader_gdip_jpeg_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-tiff.la: $(libstatic_pixbufloader_gdip_tiff_la_OBJECTS) $(libstatic_pixbufloader_gdip_tiff_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_tiff_la_LDFLAGS) $(libstatic_pixbufloader_gdip_tiff_la_OBJECTS) $(libstatic_pixbufloader_gdip_tiff_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_tiff_la_rpath) $(libstatic_pixbufloader_gdip_tiff_la_OBJECTS) $(libstatic_pixbufloader_gdip_tiff_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gdip-wmf.la: $(libstatic_pixbufloader_gdip_wmf_la_OBJECTS) $(libstatic_pixbufloader_gdip_wmf_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gdip_wmf_la_LDFLAGS) $(libstatic_pixbufloader_gdip_wmf_la_OBJECTS) $(libstatic_pixbufloader_gdip_wmf_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gdip_wmf_la_rpath) $(libstatic_pixbufloader_gdip_wmf_la_OBJECTS) $(libstatic_pixbufloader_gdip_wmf_la_LIBADD) $(LIBS) + libstatic-pixbufloader-gif.la: $(libstatic_pixbufloader_gif_la_OBJECTS) $(libstatic_pixbufloader_gif_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_gif_la_LDFLAGS) $(libstatic_pixbufloader_gif_la_OBJECTS) $(libstatic_pixbufloader_gif_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_gif_la_rpath) $(libstatic_pixbufloader_gif_la_OBJECTS) $(libstatic_pixbufloader_gif_la_LIBADD) $(LIBS) + libstatic-pixbufloader-icns.la: $(libstatic_pixbufloader_icns_la_OBJECTS) $(libstatic_pixbufloader_icns_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_icns_la_LDFLAGS) $(libstatic_pixbufloader_icns_la_OBJECTS) $(libstatic_pixbufloader_icns_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_icns_la_rpath) $(libstatic_pixbufloader_icns_la_OBJECTS) $(libstatic_pixbufloader_icns_la_LIBADD) $(LIBS) + libstatic-pixbufloader-ico.la: $(libstatic_pixbufloader_ico_la_OBJECTS) $(libstatic_pixbufloader_ico_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_ico_la_LDFLAGS) $(libstatic_pixbufloader_ico_la_OBJECTS) $(libstatic_pixbufloader_ico_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_ico_la_rpath) $(libstatic_pixbufloader_ico_la_OBJECTS) $(libstatic_pixbufloader_ico_la_LIBADD) $(LIBS) + libstatic-pixbufloader-jasper.la: $(libstatic_pixbufloader_jasper_la_OBJECTS) $(libstatic_pixbufloader_jasper_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_jasper_la_LDFLAGS) $(libstatic_pixbufloader_jasper_la_OBJECTS) $(libstatic_pixbufloader_jasper_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_jasper_la_rpath) $(libstatic_pixbufloader_jasper_la_OBJECTS) $(libstatic_pixbufloader_jasper_la_LIBADD) $(LIBS) + libstatic-pixbufloader-jpeg.la: $(libstatic_pixbufloader_jpeg_la_OBJECTS) $(libstatic_pixbufloader_jpeg_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_jpeg_la_LDFLAGS) $(libstatic_pixbufloader_jpeg_la_OBJECTS) $(libstatic_pixbufloader_jpeg_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_jpeg_la_rpath) $(libstatic_pixbufloader_jpeg_la_OBJECTS) $(libstatic_pixbufloader_jpeg_la_LIBADD) $(LIBS) + libstatic-pixbufloader-pcx.la: $(libstatic_pixbufloader_pcx_la_OBJECTS) $(libstatic_pixbufloader_pcx_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_pcx_la_LDFLAGS) $(libstatic_pixbufloader_pcx_la_OBJECTS) $(libstatic_pixbufloader_pcx_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_pcx_la_rpath) $(libstatic_pixbufloader_pcx_la_OBJECTS) $(libstatic_pixbufloader_pcx_la_LIBADD) $(LIBS) + libstatic-pixbufloader-png.la: $(libstatic_pixbufloader_png_la_OBJECTS) $(libstatic_pixbufloader_png_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_png_la_LDFLAGS) $(libstatic_pixbufloader_png_la_OBJECTS) $(libstatic_pixbufloader_png_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_png_la_rpath) $(libstatic_pixbufloader_png_la_OBJECTS) $(libstatic_pixbufloader_png_la_LIBADD) $(LIBS) + libstatic-pixbufloader-pnm.la: $(libstatic_pixbufloader_pnm_la_OBJECTS) $(libstatic_pixbufloader_pnm_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_pnm_la_LDFLAGS) $(libstatic_pixbufloader_pnm_la_OBJECTS) $(libstatic_pixbufloader_pnm_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_pnm_la_rpath) $(libstatic_pixbufloader_pnm_la_OBJECTS) $(libstatic_pixbufloader_pnm_la_LIBADD) $(LIBS) + libstatic-pixbufloader-ras.la: $(libstatic_pixbufloader_ras_la_OBJECTS) $(libstatic_pixbufloader_ras_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_ras_la_LDFLAGS) $(libstatic_pixbufloader_ras_la_OBJECTS) $(libstatic_pixbufloader_ras_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_ras_la_rpath) $(libstatic_pixbufloader_ras_la_OBJECTS) $(libstatic_pixbufloader_ras_la_LIBADD) $(LIBS) + libstatic-pixbufloader-tga.la: $(libstatic_pixbufloader_tga_la_OBJECTS) $(libstatic_pixbufloader_tga_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_tga_la_LDFLAGS) $(libstatic_pixbufloader_tga_la_OBJECTS) $(libstatic_pixbufloader_tga_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_tga_la_rpath) $(libstatic_pixbufloader_tga_la_OBJECTS) $(libstatic_pixbufloader_tga_la_LIBADD) $(LIBS) + libstatic-pixbufloader-tiff.la: $(libstatic_pixbufloader_tiff_la_OBJECTS) $(libstatic_pixbufloader_tiff_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_tiff_la_LDFLAGS) $(libstatic_pixbufloader_tiff_la_OBJECTS) $(libstatic_pixbufloader_tiff_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_tiff_la_rpath) $(libstatic_pixbufloader_tiff_la_OBJECTS) $(libstatic_pixbufloader_tiff_la_LIBADD) $(LIBS) + libstatic-pixbufloader-wbmp.la: $(libstatic_pixbufloader_wbmp_la_OBJECTS) $(libstatic_pixbufloader_wbmp_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_wbmp_la_LDFLAGS) $(libstatic_pixbufloader_wbmp_la_OBJECTS) $(libstatic_pixbufloader_wbmp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_wbmp_la_rpath) $(libstatic_pixbufloader_wbmp_la_OBJECTS) $(libstatic_pixbufloader_wbmp_la_LIBADD) $(LIBS) + libstatic-pixbufloader-xbm.la: $(libstatic_pixbufloader_xbm_la_OBJECTS) $(libstatic_pixbufloader_xbm_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_xbm_la_LDFLAGS) $(libstatic_pixbufloader_xbm_la_OBJECTS) $(libstatic_pixbufloader_xbm_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_xbm_la_rpath) $(libstatic_pixbufloader_xbm_la_OBJECTS) $(libstatic_pixbufloader_xbm_la_LIBADD) $(LIBS) + libstatic-pixbufloader-xpm.la: $(libstatic_pixbufloader_xpm_la_OBJECTS) $(libstatic_pixbufloader_xpm_la_DEPENDENCIES) +- $(LINK) $(libstatic_pixbufloader_xpm_la_LDFLAGS) $(libstatic_pixbufloader_xpm_la_OBJECTS) $(libstatic_pixbufloader_xpm_la_LIBADD) $(LIBS) +-binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_pixbufloader_xpm_la_rpath) $(libstatic_pixbufloader_xpm_la_OBJECTS) $(libstatic_pixbufloader_xpm_la_LIBADD) $(LIBS) + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(bindir) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- if test -f $$p \ +- || test -f $$p1 \ +- ; then \ +- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ +- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ +- else :; fi; \ +- done ++ test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed 's/$(EXEEXT)$$//' | \ ++ while read p p1; do if test -f $$p || test -f $$p1; \ ++ then echo "$$p"; echo "$$p"; else :; fi; \ ++ done | \ ++ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ ++ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ ++ sed 'N;N;N;s,\n, ,g' | \ ++ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ ++ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ ++ if ($$2 == $$4) files[d] = files[d] " " $$1; \ ++ else { print "f", $$3 "/" $$4, $$1; } } \ ++ END { for (d in files) print "f", d, files[d] }' | \ ++ while read type dir files; do \ ++ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ ++ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ ++ } \ ++ ; done + + uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ +- rm -f $(DESTDIR)$(bindir)/$$f; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ files=`for p in $$list; do echo "$$p"; done | \ ++ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ ++ -e 's/$$/$(EXEEXT)/' `; \ ++ test -n "$$list" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(bindir)" && rm -f $$files + + clean-binPROGRAMS: +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + gdk-pixbuf-csource$(EXEEXT): $(gdk_pixbuf_csource_OBJECTS) $(gdk_pixbuf_csource_DEPENDENCIES) + @rm -f gdk-pixbuf-csource$(EXEEXT) +- $(LINK) $(gdk_pixbuf_csource_LDFLAGS) $(gdk_pixbuf_csource_OBJECTS) $(gdk_pixbuf_csource_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(gdk_pixbuf_csource_OBJECTS) $(gdk_pixbuf_csource_LDADD) $(LIBS) + gdk-pixbuf-query-loaders$(EXEEXT): $(gdk_pixbuf_query_loaders_OBJECTS) $(gdk_pixbuf_query_loaders_DEPENDENCIES) + @rm -f gdk-pixbuf-query-loaders$(EXEEXT) +- $(LINK) $(gdk_pixbuf_query_loaders_LDFLAGS) $(gdk_pixbuf_query_loaders_OBJECTS) $(gdk_pixbuf_query_loaders_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(gdk_pixbuf_query_loaders_OBJECTS) $(gdk_pixbuf_query_loaders_LDADD) $(LIBS) + test-gdk-pixbuf$(EXEEXT): $(test_gdk_pixbuf_OBJECTS) $(test_gdk_pixbuf_DEPENDENCIES) + @rm -f test-gdk-pixbuf$(EXEEXT) +- $(LINK) $(test_gdk_pixbuf_LDFLAGS) $(test_gdk_pixbuf_OBJECTS) $(test_gdk_pixbuf_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(test_gdk_pixbuf_OBJECTS) $(test_gdk_pixbuf_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -1684,65 +1710,54 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-gdk-pixbuf.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgdk_pixbufincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgdk_pixbufincludeHEADERS: $(libgdk_pixbufinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgdk_pixbufincludedir) +- @list='$(libgdk_pixbufinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgdk_pixbufincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgdk_pixbufincludedir)" ++ @list='$(libgdk_pixbufinclude_HEADERS)'; test -n "$(libgdk_pixbufincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgdk_pixbufincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdk_pixbufincludedir)/$$f"; \ +- $(libgdk_pixbufincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgdk_pixbufincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgdk_pixbufincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgdk_pixbufincludedir)" || exit $$?; \ + done + + uninstall-libgdk_pixbufincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgdk_pixbufinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgdk_pixbufincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgdk_pixbufincludedir)/$$f; \ +- done ++ @list='$(libgdk_pixbufinclude_HEADERS)'; test -n "$(libgdk_pixbufincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgdk_pixbufincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgdk_pixbufincludedir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -1751,7 +1766,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -1762,16 +1783,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -1791,79 +1817,79 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +@@ -1871,7 +1897,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -1880,108 +1907,139 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -1990,13 +2048,16 @@ + $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local + check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-recursive +-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) all-local ++@CROSS_COMPILING_TRUE@all-local: ++all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) \ ++ all-local + install-binPROGRAMS: install-libLTLIBRARIES + + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(loaderdir) $(DESTDIR)$(bindir) $(DESTDIR)$(libgdk_pixbufincludedir) +- ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(loaderdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libgdk_pixbufincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-recursive + install-exec: install-exec-recursive +@@ -2018,13 +2079,14 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) ++ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + clean: clean-recursive + + clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ +@@ -2035,12 +2097,16 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-local distclean-tags ++ distclean-local distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: +@@ -2049,13 +2115,30 @@ + install-loaderLTLIBRARIES + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: + + install-exec-am: install-binPROGRAMS install-libLTLIBRARIES + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -2076,35 +2159,35 @@ + + ps-am: + +-uninstall-am: uninstall-binPROGRAMS uninstall-info-am \ +- uninstall-libLTLIBRARIES uninstall-libgdk_pixbufincludeHEADERS \ ++uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES \ ++ uninstall-libgdk_pixbufincludeHEADERS \ + uninstall-loaderLTLIBRARIES uninstall-local + +-uninstall-info: uninstall-info-recursive +- +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local check \ +- check-TESTS check-am check-local clean clean-binPROGRAMS \ +- clean-generic clean-libLTLIBRARIES clean-libtool \ +- clean-loaderLTLIBRARIES clean-noinstLTLIBRARIES \ +- clean-noinstPROGRAMS clean-recursive ctags ctags-recursive \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-local distclean-recursive distclean-tags distdir dvi \ +- dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-binPROGRAMS install-data install-data-am \ +- install-data-recursive install-exec install-exec-am \ +- install-exec-recursive install-info install-info-am \ +- install-info-recursive install-libLTLIBRARIES \ +- install-libgdk_pixbufincludeHEADERS install-loaderLTLIBRARIES \ +- install-man install-recursive install-strip installcheck \ +- installcheck-am installdirs installdirs-am \ +- installdirs-recursive maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ +- pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ +- tags-recursive uninstall uninstall-am uninstall-binPROGRAMS \ +- uninstall-info-am uninstall-info-recursive \ +- uninstall-libLTLIBRARIES uninstall-libgdk_pixbufincludeHEADERS \ +- uninstall-loaderLTLIBRARIES uninstall-local uninstall-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ++ check-am ctags-recursive install install-am install-data-am \ ++ install-strip tags-recursive ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am all-local check check-TESTS check-am check-local \ ++ clean clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ ++ clean-libtool clean-loaderLTLIBRARIES clean-noinstLTLIBRARIES \ ++ clean-noinstPROGRAMS ctags ctags-recursive distclean \ ++ distclean-compile distclean-generic distclean-libtool \ ++ distclean-local distclean-tags distdir dvi dvi-am html html-am \ ++ info info-am install install-am install-binPROGRAMS \ ++ install-data install-data-am install-data-hook install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am \ ++ install-libLTLIBRARIES install-libgdk_pixbufincludeHEADERS \ ++ install-loaderLTLIBRARIES install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ++ pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ ++ uninstall-binPROGRAMS uninstall-libLTLIBRARIES \ ++ uninstall-libgdk_pixbufincludeHEADERS \ ++ uninstall-loaderLTLIBRARIES uninstall-local + + # call as: $(XVFB_START) && someprogram + +@@ -2279,6 +2362,7 @@ + @BUILD_DYNAMIC_MODULES_FALSE@ touch gdk-pixbuf.loaders; + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gdk-pixbuf/pixops/Makefile.in gtk+2.0-2.17.10.ubuntu/gdk-pixbuf/pixops/Makefile.in +--- gtk+2.0-2.17.10/gdk-pixbuf/pixops/Makefile.in 2009-09-01 06:02:56.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gdk-pixbuf/pixops/Makefile.in 2009-09-01 18:44:01.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,83 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = timescale$(EXEEXT) ++subdir = gdk-pixbuf/pixops ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++LTLIBRARIES = $(noinst_LTLIBRARIES) ++libpixops_la_LIBADD = ++am__libpixops_la_SOURCES_DIST = pixops.c pixops.h pixops-internal.h \ ++ have_mmx.S scale_line_22_33_mmx.S composite_line_22_4a4_mmx.S \ ++ composite_line_color_22_4a4_mmx.S ++@USE_MMX_TRUE@am__objects_1 = have_mmx.lo scale_line_22_33_mmx.lo \ ++@USE_MMX_TRUE@ composite_line_22_4a4_mmx.lo \ ++@USE_MMX_TRUE@ composite_line_color_22_4a4_mmx.lo ++am_libpixops_la_OBJECTS = pixops.lo $(am__objects_1) ++libpixops_la_OBJECTS = $(am_libpixops_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++PROGRAMS = $(noinst_PROGRAMS) ++am_timescale_OBJECTS = timescale.$(OBJEXT) ++timescale_OBJECTS = $(am_timescale_OBJECTS) ++am__DEPENDENCIES_1 = ++timescale_DEPENDENCIES = libpixops.la $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_1) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ++ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) ++LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CCASFLAGS) $(CCASFLAGS) ++AM_V_CPPAS = $(am__v_CPPAS_$(V)) ++am__v_CPPAS_ = $(am__v_CPPAS_$(AM_DEFAULT_VERBOSITY)) ++am__v_CPPAS_0 = @echo " CPPAS " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libpixops_la_SOURCES) $(timescale_SOURCES) ++DIST_SOURCES = $(am__libpixops_la_SOURCES_DIST) $(timescale_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +121,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +128,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +150,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +157,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +182,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +201,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +211,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +242,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +258,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +275,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +287,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +329,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,18 +338,17 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- DETAILS \ +- pixbuf-transform-math.ltx \ +- makefile.msc +- ++EXTRA_DIST = DETAILS pixbuf-transform-math.ltx makefile.msc + TEST_PROGS = + + ### testing rules +@@ -422,158 +374,144 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + noinst_LTLIBRARIES = libpixops.la +- + INCLUDES = \ + -I$(top_srcdir) -I$(top_builddir) \ + $(GTK_DEBUG_FLAGS) \ + $(GDK_PIXBUF_DEP_CFLAGS) + +- +-noinst_PROGRAMS = timescale +- + timescale_SOURCES = timescale.c + timescale_LDADD = libpixops.la $(GLIB_LIBS) $(GDK_PIXBUF_DEP_LIBS) +- + @USE_MMX_TRUE@mmx_sources = \ + @USE_MMX_TRUE@ have_mmx.S \ + @USE_MMX_TRUE@ scale_line_22_33_mmx.S \ + @USE_MMX_TRUE@ composite_line_22_4a4_mmx.S \ + @USE_MMX_TRUE@ composite_line_color_22_4a4_mmx.S + +- + libpixops_la_SOURCES = \ + pixops.c \ + pixops.h \ + pixops-internal.h \ + $(mmx_sources) + +-subdir = gdk-pixbuf/pixops +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(noinst_LTLIBRARIES) +- +-libpixops_la_LDFLAGS = +-libpixops_la_LIBADD = +-am__libpixops_la_SOURCES_DIST = pixops.c pixops.h pixops-internal.h \ +- have_mmx.S scale_line_22_33_mmx.S composite_line_22_4a4_mmx.S \ +- composite_line_color_22_4a4_mmx.S +-@USE_MMX_TRUE@am__objects_1 = have_mmx.lo scale_line_22_33_mmx.lo \ +-@USE_MMX_TRUE@ composite_line_22_4a4_mmx.lo \ +-@USE_MMX_TRUE@ composite_line_color_22_4a4_mmx.lo +-am_libpixops_la_OBJECTS = pixops.lo $(am__objects_1) +-libpixops_la_OBJECTS = $(am_libpixops_la_OBJECTS) +-noinst_PROGRAMS = timescale$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_timescale_OBJECTS = timescale.$(OBJEXT) +-timescale_OBJECTS = $(am_timescale_OBJECTS) +-timescale_DEPENDENCIES = libpixops.la +-timescale_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/pixops.Plo ./$(DEPDIR)/timescale.Po +-CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS) +-LTCCASCOMPILE = $(LIBTOOL) --mode=compile $(CCAS) $(AM_CCASFLAGS) \ +- $(CCASFLAGS) +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__libpixops_la_SOURCES_DIST) $(timescale_SOURCES) +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(libpixops_la_SOURCES) $(timescale_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .S .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gdk-pixbuf/pixops/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gdk-pixbuf/pixops/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gdk-pixbuf/pixops/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libpixops.la: $(libpixops_la_OBJECTS) $(libpixops_la_DEPENDENCIES) +- $(LINK) $(libpixops_la_LDFLAGS) $(libpixops_la_OBJECTS) $(libpixops_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(libpixops_la_OBJECTS) $(libpixops_la_LIBADD) $(LIBS) + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + timescale$(EXEEXT): $(timescale_OBJECTS) $(timescale_DEPENDENCIES) + @rm -f timescale$(EXEEXT) +- $(LINK) $(timescale_LDFLAGS) $(timescale_OBJECTS) $(timescale_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(timescale_OBJECTS) $(timescale_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c + ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/composite_line_22_4a4_mmx.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/composite_line_color_22_4a4_mmx.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/have_mmx.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pixops.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scale_line_22_33_mmx.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timescale.Po@am__quote@ + + .S.o: +- $(CCASCOMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS) @AM_BACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ $< + + .S.obj: +- $(CCASCOMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS) @AM_BACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + + .S.lo: +- $(LTCCASCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS) @AM_BACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCCAS_FALSE@ $(LTCPPASCOMPILE) -c -o $@ $< + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -581,93 +519,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -675,7 +605,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -696,7 +625,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -710,24 +640,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -748,19 +700,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstLTLIBRARIES \ + clean-noinstPROGRAMS ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-info-am ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -817,6 +773,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gtk/Makefile.in gtk+2.0-2.17.10.ubuntu/gtk/Makefile.in +--- gtk+2.0-2.17.10/gtk/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gtk/Makefile.in 2009-09-01 18:44:02.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,16 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,7 +38,13 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(am__gtkunixprintinclude_HEADERS_DIST) \ ++ $(gtkinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(srcdir)/gtk-win32.rc.in \ ++ $(srcdir)/gtkversion.h.in $(srcdir)/makefile.msc.in \ ++ $(top_srcdir)/Makefile.decl + @OS_LINUX_TRUE@am__append_1 = abicheck.sh pltcheck.sh + @HAVE_INCLUDED_IMMMODULES_TRUE@am__append_2 = $(INCLUDED_IMMODULE_OBJ) + @HAVE_INCLUDED_IMMMODULES_TRUE@am__append_3 = $(INCLUDED_IMMODULE_OBJ) +@@ -61,1793 +68,1035 @@ + @USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__append_12 = gtksearchenginequartz.h + @USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__append_13 = $(gtk_use_quartz_c_sources) + @USE_QUARTZ_FALSE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__append_14 = $(gtk_use_stub_c_sources) +-ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ +-AMTAR = @AMTAR@ +-AR = @AR@ +-AS = @AS@ +-ATK_PREFIX = @ATK_PREFIX@ +-AUTOCONF = @AUTOCONF@ +-AUTOHEADER = @AUTOHEADER@ +-AUTOMAKE = @AUTOMAKE@ +-AWK = @AWK@ +-BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ +-BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ +-CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ +-CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ +-CAIRO_PREFIX = @CAIRO_PREFIX@ +-CATALOGS = @CATALOGS@ +-CATOBJEXT = @CATOBJEXT@ +-CC = @CC@ +-CCAS = @CCAS@ +-CCASFLAGS = @CCASFLAGS@ +-CCDEPMODE = @CCDEPMODE@ +-CFLAGS = @CFLAGS@ +-CPP = @CPP@ +-CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ +-CUPS_API_MAJOR = @CUPS_API_MAJOR@ +-CUPS_API_MINOR = @CUPS_API_MINOR@ +-CUPS_CFLAGS = @CUPS_CFLAGS@ +-CUPS_CONFIG = @CUPS_CONFIG@ +-CUPS_LIBS = @CUPS_LIBS@ +-CXX = @CXX@ +-CXXCPP = @CXXCPP@ +-CXXDEPMODE = @CXXDEPMODE@ +-CXXFLAGS = @CXXFLAGS@ +-CYGPATH_W = @CYGPATH_W@ +-DATADIRNAME = @DATADIRNAME@ +-DB2HTML = @DB2HTML@ +-DEFS = @DEFS@ +-DEPDIR = @DEPDIR@ +-DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ +-DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ +-DLLTOOL = @DLLTOOL@ +-DSYMUTIL = @DSYMUTIL@ +-DUMPBIN = @DUMPBIN@ +-ECHO_C = @ECHO_C@ +-ECHO_N = @ECHO_N@ +-ECHO_T = @ECHO_T@ +-EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ +-EXEEXT = @EXEEXT@ +-FGREP = @FGREP@ +-GAIL_INET_LIBS = @GAIL_INET_LIBS@ +-GAIL_LT_CURRENT_MINUS_AGE = @GAIL_LT_CURRENT_MINUS_AGE@ +-GAIL_LT_VERSION_INFO = @GAIL_LT_VERSION_INFO@ +-GDK_DEP_CFLAGS = @GDK_DEP_CFLAGS@ +-GDK_DEP_LIBS = @GDK_DEP_LIBS@ +-GDK_EXTRA_CFLAGS = @GDK_EXTRA_CFLAGS@ +-GDK_EXTRA_LIBS = @GDK_EXTRA_LIBS@ +-GDK_PACKAGES = @GDK_PACKAGES@ +-GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ +-GDK_PIXBUF_DEP_CFLAGS = @GDK_PIXBUF_DEP_CFLAGS@ +-GDK_PIXBUF_DEP_LIBS = @GDK_PIXBUF_DEP_LIBS@ +-GDK_PIXBUF_EXTRA_CFLAGS = @GDK_PIXBUF_EXTRA_CFLAGS@ +-GDK_PIXBUF_EXTRA_LIBS = @GDK_PIXBUF_EXTRA_LIBS@ +-GDK_PIXBUF_MAJOR = @GDK_PIXBUF_MAJOR@ +-GDK_PIXBUF_MICRO = @GDK_PIXBUF_MICRO@ +-GDK_PIXBUF_MINOR = @GDK_PIXBUF_MINOR@ +-GDK_PIXBUF_PACKAGES = @GDK_PIXBUF_PACKAGES@ +-GDK_PIXBUF_VERSION = @GDK_PIXBUF_VERSION@ +-GDK_PIXBUF_XLIB_DEP_CFLAGS = @GDK_PIXBUF_XLIB_DEP_CFLAGS@ +-GDK_PIXBUF_XLIB_DEP_LIBS = @GDK_PIXBUF_XLIB_DEP_LIBS@ +-GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ +-GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ +-GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ +-GDK_WLIBS = @GDK_WLIBS@ +-GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +-GLIB_CFLAGS = @GLIB_CFLAGS@ +-GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +-GLIB_LIBS = @GLIB_LIBS@ +-GLIB_MKENUMS = @GLIB_MKENUMS@ +-GLIB_PREFIX = @GLIB_PREFIX@ +-GMOFILES = @GMOFILES@ +-GMSGFMT = @GMSGFMT@ +-GOBJECT_QUERY = @GOBJECT_QUERY@ +-GREP = @GREP@ +-GTKDOC_CHECK = @GTKDOC_CHECK@ +-GTK_API_VERSION = @GTK_API_VERSION@ +-GTK_BINARY_AGE = @GTK_BINARY_AGE@ +-GTK_BINARY_VERSION = @GTK_BINARY_VERSION@ +-GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ +-GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ +-GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +-GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ +-GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ +-GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +-GTK_MAJOR_VERSION = @GTK_MAJOR_VERSION@ +-GTK_MICRO_VERSION = @GTK_MICRO_VERSION@ +-GTK_MINOR_VERSION = @GTK_MINOR_VERSION@ +-GTK_PACKAGES = @GTK_PACKAGES@ +-GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ +-GTK_VERSION = @GTK_VERSION@ +-GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ +-HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ +-HTML_DIR = @HTML_DIR@ +-INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ +-INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ +-INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ +-INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ +-INDENT = @INDENT@ +-INSTALL_DATA = @INSTALL_DATA@ +-INSTALL_PROGRAM = @INSTALL_PROGRAM@ +-INSTALL_SCRIPT = @INSTALL_SCRIPT@ +-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +-INSTOBJEXT = @INSTOBJEXT@ +-INTLLIBS = @INTLLIBS@ +-LD = @LD@ +-LDFLAGS = @LDFLAGS@ +-LIBJASPER = @LIBJASPER@ +-LIBJPEG = @LIBJPEG@ +-LIBOBJS = @LIBOBJS@ +-LIBPNG = @LIBPNG@ +-LIBS = @LIBS@ +-LIBTIFF = @LIBTIFF@ +-LIBTOOL = @LIBTOOL@ +-LIBTOOL_EXPORT_OPTIONS = @LIBTOOL_EXPORT_OPTIONS@ +-LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ +-LIPO = @LIPO@ +-LN_S = @LN_S@ +-LTLIBOBJS = @LTLIBOBJS@ +-LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +-LT_VERSION_INFO = @LT_VERSION_INFO@ +-MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +-MAKEINFO = @MAKEINFO@ +-MKINSTALLDIRS = @MKINSTALLDIRS@ +-MSGFMT = @MSGFMT@ +-MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ +-NM = @NM@ +-NMEDIT = @NMEDIT@ +-OBJDUMP = @OBJDUMP@ +-OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ +-OTOOL = @OTOOL@ +-OTOOL64 = @OTOOL64@ +-PACKAGE = @PACKAGE@ +-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +-PACKAGE_NAME = @PACKAGE_NAME@ +-PACKAGE_STRING = @PACKAGE_STRING@ +-PACKAGE_TARNAME = @PACKAGE_TARNAME@ +-PACKAGE_VERSION = @PACKAGE_VERSION@ +-PANGO_PREFIX = @PANGO_PREFIX@ +-PATH_SEPARATOR = @PATH_SEPARATOR@ +-PERL = @PERL@ +-PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ +-POFILES = @POFILES@ +-POSUB = @POSUB@ +-PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +-PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +-RANLIB = @RANLIB@ +-REBUILD = @REBUILD@ +-REBUILD_PNGS = @REBUILD_PNGS@ +-SED = @SED@ +-SET_MAKE = @SET_MAKE@ +-SHELL = @SHELL@ +-STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ +-USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ +-VERSION = @VERSION@ +-WINDRES = @WINDRES@ +-XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ +-XMKMF = @XMKMF@ +-XMLCATALOG = @XMLCATALOG@ +-XML_CATALOG_FILE = @XML_CATALOG_FILE@ +-XSLTPROC = @XSLTPROC@ +-X_CFLAGS = @X_CFLAGS@ +-X_EXTRA_LIBS = @X_EXTRA_LIBS@ +-X_LIBS = @X_LIBS@ +-X_PRE_LIBS = @X_PRE_LIBS@ +-ac_ct_CC = @ac_ct_CC@ +-ac_ct_CXX = @ac_ct_CXX@ +-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +-am__include = @am__include@ +-am__leading_dot = @am__leading_dot@ +-am__quote = @am__quote@ +-bindir = @bindir@ +-build = @build@ +-build_alias = @build_alias@ +-build_cpu = @build_cpu@ +-build_os = @build_os@ +-build_vendor = @build_vendor@ +-datadir = @datadir@ +-datarootdir = @datarootdir@ +-docdir = @docdir@ +-dvidir = @dvidir@ +-exec_prefix = @exec_prefix@ +-gdktarget = @gdktarget@ +-gdktargetlib = @gdktargetlib@ +-gtktargetlib = @gtktargetlib@ +-host = @host@ +-host_alias = @host_alias@ +-host_cpu = @host_cpu@ +-host_os = @host_os@ +-host_vendor = @host_vendor@ +-htmldir = @htmldir@ +-includedir = @includedir@ +-infodir = @infodir@ +-install_sh = @install_sh@ +-libdir = @libdir@ +-libexecdir = @libexecdir@ +-localedir = @localedir@ +-localstatedir = @localstatedir@ +-lt_ECHO = @lt_ECHO@ +-mandir = @mandir@ +-ms_librarian = @ms_librarian@ +-oldincludedir = @oldincludedir@ +-pdfdir = @pdfdir@ +-prefix = @prefix@ +-program_transform_name = @program_transform_name@ +-psdir = @psdir@ +-sbindir = @sbindir@ +-sharedstatedir = @sharedstatedir@ +-sysconfdir = @sysconfdir@ +-target_alias = @target_alias@ +- +-GTESTER = gtester # in $PATH for non-GLIB packages +-GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages +- +-# initialize variables for unconditional += appending +-EXTRA_DIST = gtkquartz.h $(gtk_private_h_sources) $(gtk_extra_sources) $(gtk_built_sources) $(STOCK_ICONS) \ +- $(STOCK_ICONS) \ +- $(GENERATED_ICONS) \ +- line-arrow.xbm \ +- line-wrap.xbm \ +- tree_plus.xbm \ +- tree_minus.xbm \ +- tree_minus.xpm \ +- tree_plus.xpm \ +- gtk.def \ +- gtk-builder-convert \ +- gtk-win32.rc \ +- gtk-win32.rc.in \ +- gtkwin32embed.h \ +- gtkwin32embedwidget.h \ +- gtkwin32embedwidget.c \ +- gtkprint-win32.h \ +- gtkprint-win32.c \ +- gtksearchenginequartz.h \ +- gtkrc.default \ +- gtkrc.key.default \ +- gtkrc.key.emacs \ +- makefile.msc \ +- makefile.msc.in \ +- makegtkalias.pl \ +- aliasfilescheck.sh \ +- abicheck.sh \ +- pltcheck.sh \ +- gtktypebuiltins.c.template \ +- gtktypebuiltins.h.template +- +-TEST_PROGS = +- +-### testing rules +- +-# Xvfb based test rules +-XVFB = Xvfb -ac -noreset -screen 0 800x600x16 +-XIDS = 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 \ +- 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 \ +- 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 \ +- 1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 \ +- 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 \ +- 9995 9996 9997 9998 9999 +- +-SKIP_GDKTARGET = \ +- test "$(gdktarget)" != "x11" \ +- && echo "Gtk+Tests:INFO: Skipping GUI tests for non-X11 target." +- +-XVFB_START = \ +- ${XVFB} -help 2>/dev/null 1>&2 \ +- && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \ +- && { ${XVFB} :$$XID -screen 0 800x600x16 -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \ +- trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \ +- || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ +- && DISPLAY=:$$XID && export DISPLAY +- +- +- +-# Makefile.am for gtk+/gtk +-@USE_QUARTZ_TRUE@GTK_PRINT_PREVIEW_COMMAND = "open -a /Applications/Preview.app %f" +-@USE_QUARTZ_FALSE@GTK_PRINT_PREVIEW_COMMAND = "evince --unlink-tempfile --preview --print-settings %s %f" +- +-SUBDIRS = theme-bits . tests +-DIST_SUBDIRS = theme-bits tests +-@HAVE_CUPS_FALSE@@HAVE_PAPI_CUPS_FALSE@@HAVE_PAPI_TRUE@GTK_PRINT_BACKENDS = file,papi +-@HAVE_CUPS_FALSE@@HAVE_PAPI_CUPS_FALSE@@HAVE_PAPI_FALSE@GTK_PRINT_BACKENDS = file,lpr +-@HAVE_CUPS_TRUE@@HAVE_PAPI_CUPS_FALSE@GTK_PRINT_BACKENDS = file,cups +- +-@HAVE_PAPI_CUPS_TRUE@GTK_PRINT_BACKENDS = file,papi,cups +- +-INCLUDES = \ +- -DG_LOG_DOMAIN=\"Gtk\" \ +- -DGTK_LIBDIR=\"$(libdir)\" \ +- -DGTK_DATADIR=\"$(datadir)\" \ +- -DGTK_DATA_PREFIX=\"$(prefix)\" \ +- -DGTK_SYSCONFDIR=\"$(sysconfdir)\" \ +- -DGTK_VERSION=\"$(GTK_VERSION)\" \ +- -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \ +- -DGTK_HOST=\"$(host)\" \ +- -DGTK_COMPILATION \ +- -DGTK_PRINT_BACKENDS=\"$(GTK_PRINT_BACKENDS)\" \ +- -DGTK_PRINT_PREVIEW_COMMAND=\"$(GTK_PRINT_PREVIEW_COMMAND)\" \ +- -I$(top_builddir) \ +- -I$(top_builddir)/gtk \ +- -I$(top_srcdir) -I../gdk \ +- -I$(top_srcdir)/gdk \ +- -I$(top_srcdir)/gdk-pixbuf -I../gdk-pixbuf \ +- -DGDK_DISABLE_DEPRECATED \ +- -DGTK_DISABLE_DEPRECATED \ +- -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED \ +- -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ +- $(GTK_DEBUG_FLAGS) \ +- $(GTK_DEP_CFLAGS) \ +- $(gtk_clipboard_dnd_c_sources_CFLAGS) \ +- $(INCLUDED_IMMODULE_DEFINE) +- +- +-gtarget = $(gdktarget) +- +-@PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- +-@OS_WIN32_TRUE@gtk_def = gtk.def +-@OS_WIN32_TRUE@gtk_win32_symbols = -export-symbols $(srcdir)/gtk.def +- +-@OS_WIN32_TRUE@gtk_win32_res = gtk-win32-res.o +-@OS_WIN32_TRUE@gtk_win32_res_ldflag = -Wl,gtk-win32-res.o +- +-@MS_LIB_AVAILABLE_TRUE@noinst_DATA = gtk-win32-$(GTK_API_VERSION).lib +- +-TESTS_ENVIRONMENT = srcdir="$(srcdir)" gtk_all_c_sources="$(gtk_all_c_sources)" +-TESTS = aliasfilescheck.sh $(am__append_1) +- +-libgtkincludedir = $(includedir)/gtk-2.0/gtk +-libadd = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(GTK_DEP_LIBS)\ +-$(am__append_2) +-deps = $(am__append_3) +- +-# libtool stuff: set version and export symbols for resolving +-# since automake doesn't support conditionalized libsomething_la_LDFLAGS +-# we use the general approach here +-libtool_opts = \ +- -version-info $(LT_VERSION_INFO) \ +- -export-dynamic $(no_undefined) $(LIBTOOL_EXPORT_OPTIONS) \ +- -rpath $(libdir) $(libgtk_target_ldflags) +- +- +-# +-# setup source file variables +-# +- +-# GTK+ header files for public installation (non-generated, or generated +-# by configure) +- +-# Broken +- +-# Deprecated +-gtk_public_h_sources = \ +- gtk.h \ +- gtkaboutdialog.h \ +- gtkaccelgroup.h \ +- gtkaccellabel.h \ +- gtkaccelmap.h \ +- gtkaccessible.h \ +- gtkaction.h \ +- gtkactiongroup.h \ +- gtkactivatable.h \ +- gtkadjustment.h \ +- gtkalignment.h \ +- gtkarrow.h \ +- gtkaspectframe.h \ +- gtkassistant.h \ +- gtkbbox.h \ +- gtkbin.h \ +- gtkbindings.h \ +- gtkbox.h \ +- gtkbuilder.h \ +- gtkbuildable.h \ +- gtkbutton.h \ +- gtkcalendar.h \ +- gtkcelleditable.h \ +- gtkcelllayout.h \ +- gtkcellrenderer.h \ +- gtkcellrendereraccel.h \ +- gtkcellrenderercombo.h \ +- gtkcellrendererpixbuf.h \ +- gtkcellrendererprogress.h \ +- gtkcellrendererspin.h \ +- gtkcellrenderertext.h \ +- gtkcellrenderertoggle.h \ +- gtkcellview.h \ +- gtkcheckbutton.h \ +- gtkcheckmenuitem.h \ +- gtkclipboard.h \ +- gtkcolorbutton.h \ +- gtkcolorsel.h \ +- gtkcolorseldialog.h \ +- gtkcombobox.h \ +- gtkcomboboxentry.h \ +- gtkcontainer.h \ +- gtkcurve.h \ +- gtkdebug.h \ +- gtkdialog.h \ +- gtkdnd.h \ +- gtkdrawingarea.h \ +- gtkeditable.h \ +- gtkentry.h \ +- gtkentrybuffer.h \ +- gtkentrycompletion.h \ +- gtkenums.h \ +- gtkeventbox.h \ +- gtkexpander.h \ +- gtkfilechooser.h \ +- gtkfilechooserbutton.h \ +- gtkfilechooserdialog.h \ +- gtkfilechooserwidget.h \ +- gtkfilefilter.h \ +- gtkfixed.h \ +- gtkfontbutton.h \ +- gtkfontsel.h \ +- gtkframe.h \ +- gtkgamma.h \ +- gtkgc.h \ +- gtkhandlebox.h \ +- gtkhbbox.h \ +- gtkhbox.h \ +- gtkhpaned.h \ +- gtkhruler.h \ +- gtkhscale.h \ +- gtkhscrollbar.h \ +- gtkhseparator.h \ +- gtkhsv.h \ +- gtkiconfactory.h \ +- gtkicontheme.h \ +- gtkiconview.h \ +- gtkimage.h \ +- gtkimagemenuitem.h \ +- gtkimcontext.h \ +- gtkimcontextsimple.h \ +- gtkimmodule.h \ +- gtkimmulticontext.h \ +- gtkinfobar.h \ +- gtkinputdialog.h \ +- gtkinvisible.h \ +- gtkitem.h \ +- gtklabel.h \ +- gtklayout.h \ +- gtklinkbutton.h \ +- gtkliststore.h \ +- gtkmain.h \ +- gtkmenu.h \ +- gtkmenubar.h \ +- gtkmenuitem.h \ +- gtkmenushell.h \ +- gtkmenutoolbutton.h \ +- gtkmessagedialog.h \ +- gtkmisc.h \ +- gtkmodules.h \ +- gtkmountoperation.h \ +- gtknotebook.h \ +- gtkobject.h \ +- gtkorientable.h \ +- gtkpagesetup.h \ +- gtkpaned.h \ +- gtkpapersize.h \ +- gtkplug.h \ +- gtkprintcontext.h \ +- gtkprintoperation.h \ +- gtkprintoperationpreview.h \ +- gtkprintsettings.h \ +- gtkprivate.h \ +- gtkprogressbar.h \ +- gtkradioaction.h \ +- gtkradiobutton.h \ +- gtkradiomenuitem.h \ +- gtkradiotoolbutton.h \ +- gtkrange.h \ +- gtkrc.h \ +- gtkrecentaction.h \ +- gtkrecentchooser.h \ +- gtkrecentchooserdialog.h \ +- gtkrecentchoosermenu.h \ +- gtkrecentchooserwidget.h \ +- gtkrecentfilter.h \ +- gtkrecentmanager.h \ +- gtkruler.h \ +- gtkscale.h \ +- gtkscalebutton.h \ +- gtkscrollbar.h \ +- gtkscrolledwindow.h \ +- gtkselection.h \ +- gtkseparator.h \ +- gtkseparatormenuitem.h \ +- gtkseparatortoolitem.h \ +- gtkshow.h \ +- gtksettings.h \ +- gtksizegroup.h \ +- gtksocket.h \ +- gtkspinbutton.h \ +- gtkstatusbar.h \ +- gtkstatusicon.h \ +- gtkstock.h \ +- gtkstyle.h \ +- gtktable.h \ +- gtktearoffmenuitem.h \ +- gtktestutils.h \ +- gtktextbuffer.h \ +- gtktextbufferrichtext.h \ +- gtktextchild.h \ +- gtktextdisplay.h \ +- gtktextiter.h \ +- gtktextmark.h \ +- gtktexttag.h \ +- gtktexttagtable.h \ +- gtktextview.h \ +- gtktoggleaction.h \ +- gtktogglebutton.h \ +- gtktoggletoolbutton.h \ +- gtktoolbar.h \ +- gtktoolbutton.h \ +- gtktoolitem.h \ +- gtktoolshell.h \ +- gtktooltip.h \ +- gtktreednd.h \ +- gtktreemodel.h \ +- gtktreemodelfilter.h \ +- gtktreemodelsort.h \ +- gtktreeselection.h \ +- gtktreesortable.h \ +- gtktreestore.h \ +- gtktreeview.h \ +- gtktreeviewcolumn.h \ +- gtktypeutils.h \ +- gtkuimanager.h \ +- gtkvbbox.h \ +- gtkvbox.h \ +- gtkviewport.h \ +- gtkvolumebutton.h \ +- gtkvpaned.h \ +- gtkvruler.h \ +- gtkvscale.h \ +- gtkvscrollbar.h \ +- gtkvseparator.h \ +- gtkwidget.h \ +- gtkwindow.h\ +-\ +- gtktext.h \ +- gtktree.h \ +- gtktreeitem.h\ +-\ +- gtkclist.h \ +- gtkcombo.h \ +- gtkctree.h \ +- gtkfilesel.h \ +- gtkitemfactory.h \ +- gtklist.h \ +- gtklistitem.h \ +- gtkoldeditable.h \ +- gtkoptionmenu.h \ +- gtkpixmap.h \ +- gtkpreview.h \ +- gtkprogress.h \ +- gtksignal.h \ +- gtktipsquery.h \ +- gtktooltips.h +- +- +-@OS_UNIX_TRUE@gtk_unix_print_public_h_sources = \ +-@OS_UNIX_TRUE@ gtkpagesetupunixdialog.h \ +-@OS_UNIX_TRUE@ gtkprintunixdialog.h \ +-@OS_UNIX_TRUE@ gtkprinter.h \ +-@OS_UNIX_TRUE@ gtkprintjob.h \ +-@OS_UNIX_TRUE@ gtkunixprint.h +- +- +-# Installed header files without compatibility guarantees +-# that are not included in gtk/gtk.h +-gtk_semi_private_h_sources = \ +- gtktextlayout.h +- +- +-# GTK+ header files that don't get installed +-gtk_private_h_sources = \ +- gtkquery.h \ +- gtksearchengine.h \ +- gtksearchenginesimple.h \ +- gtkdndcursors.h \ +- gtkentryprivate.h \ +- gtkbuilderprivate.h \ +- gtkcustompaperunixdialog.h\ +- gtkfilechooserdefault.h \ +- gtkfilechooserembed.h \ +- gtkfilechooserentry.h \ +- gtkfilechooserprivate.h \ +- gtkfilechoosersettings.h \ +- gtkfilechooserutils.h \ +- gtkfilesystem.h \ +- gtkfilesystemmodel.h \ +- gtkiconcache.h \ +- gtkintl.h \ +- gtkkeyhash.h \ +- gtkmnemonichash.h \ +- gtkmountoperationprivate.h \ +- gtkpathbar.h \ +- gtkplugprivate.h \ +- gtkprintoperation-private.h\ +- gtkprintutils.h \ +- gtkrbtree.h \ +- gtkrecentchooserdefault.h \ +- gtkrecentchooserprivate.h \ +- gtkrecentchooserutils.h \ +- gtksocketprivate.h \ +- gtktextbtree.h \ +- gtktextbufferserialize.h\ +- gtktextchildprivate.h \ +- gtktextiterprivate.h \ +- gtktextmarkprivate.h \ +- gtktextsegment.h \ +- gtktexttagprivate.h \ +- gtktexttypes.h \ +- gtktextutil.h \ +- gtkthemes.h \ +- gtktoggleactionprivate.h\ +- gtktreedatalist.h \ +- gtktreeprivate.h \ +- gtkwindow-decorate.h \ +- $(gtk_clipboard_dnd_h_sources)\ +-$(am__append_4) $(am__append_6) $(am__append_8) $(am__append_10) $(am__append_12) +- +-# GTK+ C sources to build the library from +-gtk_base_c_sources = \ +- gtkquery.c \ +- gtksearchengine.c \ +- gtksearchenginesimple.c \ +- fnmatch.c \ +- gtkaboutdialog.c \ +- gtkaccelgroup.c \ +- gtkaccellabel.c \ +- gtkaccelmap.c \ +- gtkaccessible.c \ +- gtkaction.c \ +- gtkactiongroup.c \ +- gtkactivatable.c \ +- gtkadjustment.c \ +- gtkalignment.c \ +- gtkarrow.c \ +- gtkaspectframe.c \ +- gtkassistant.c \ +- gtkbbox.c \ +- gtkbin.c \ +- gtkbindings.c \ +- gtkbox.c \ +- gtkbuildable.c \ +- gtkbuilder.c \ +- gtkbuilderparser.c \ +- gtkbutton.c \ +- gtkcalendar.c \ +- gtkcelleditable.c \ +- gtkcelllayout.c \ +- gtkcellrenderer.c \ +- gtkcellrendereraccel.c \ +- gtkcellrenderercombo.c \ +- gtkcellrendererpixbuf.c \ +- gtkcellrendererprogress.c \ +- gtkcellrendererspin.c \ +- gtkcellrenderertext.c \ +- gtkcellrenderertoggle.c \ +- gtkcellview.c \ +- gtkcheckbutton.c \ +- gtkcheckmenuitem.c \ +- gtkcolorbutton.c \ +- gtkcolorsel.c \ +- gtkcolorseldialog.c \ +- gtkcombobox.c \ +- gtkcomboboxentry.c \ +- gtkcontainer.c \ +- gtkcurve.c \ +- gtkdialog.c \ +- gtkdrawingarea.c \ +- gtkeditable.c \ +- gtkentry.c \ +- gtkentrybuffer.c \ +- gtkentrycompletion.c \ +- gtkeventbox.c \ +- gtkexpander.c \ +- gtkfilechooser.c \ +- gtkfilechooserbutton.c \ +- gtkfilechooserdefault.c \ +- gtkfilechooserdialog.c \ +- gtkfilechooserembed.c \ +- gtkfilechooserentry.c \ +- gtkfilechoosersettings.c \ +- gtkfilechooserutils.c \ +- gtkfilechooserwidget.c \ +- gtkfilefilter.c \ +- gtkfilesystem.c \ +- gtkfilesystemmodel.c \ +- gtkfixed.c \ +- gtkfontbutton.c \ +- gtkfontsel.c \ +- gtkframe.c \ +- gtkgamma.c \ +- gtkgc.c \ +- gtkhandlebox.c \ +- gtkhbbox.c \ +- gtkhbox.c \ +- gtkhpaned.c \ +- gtkhruler.c \ +- gtkhscale.c \ +- gtkhscrollbar.c \ +- gtkhseparator.c \ +- gtkhsv.c \ +- gtkiconcache.c \ +- gtkiconcachevalidator.c \ +- gtkiconfactory.c \ +- gtkicontheme.c \ +- gtkiconview.c \ +- gtkimage.c \ +- gtkimagemenuitem.c \ +- gtkimcontext.c \ +- gtkimcontextsimple.c \ +- gtkimmodule.c \ +- gtkimmulticontext.c \ +- gtkinfobar.c \ +- gtkinputdialog.c \ +- gtkinvisible.c \ +- gtkitem.c \ +- gtkkeyhash.c \ +- gtklabel.c \ +- gtklayout.c \ +- gtklinkbutton.c \ +- gtkliststore.c \ +- gtkmain.c \ +- gtkmarshal.c \ +- gtkmarshalers.c \ +- gtkmenu.c \ +- gtkmenubar.c \ +- gtkmenuitem.c \ +- gtkmenushell.c \ +- gtkmenutoolbutton.c \ +- gtkmessagedialog.c \ +- gtkmisc.c \ +- gtkmnemonichash.c \ +- gtkmodules.c \ +- gtkmountoperation.c \ +- gtknotebook.c \ +- gtkobject.c \ +- gtkorientable.c \ +- gtkpagesetup.c \ +- gtkpaned.c \ +- gtkpapersize.c \ +- gtkpathbar.c \ +- gtkplug.c \ +- gtkprintcontext.c \ +- gtkprintoperation.c \ +- gtkprintoperationpreview.c \ +- gtkprintsettings.c \ +- gtkprintutils.c \ +- gtkprogressbar.c \ +- gtkradioaction.c \ +- gtkradiobutton.c \ +- gtkradiomenuitem.c \ +- gtkradiotoolbutton.c \ +- gtkrange.c \ +- gtkrbtree.c \ +- gtkrc.c \ +- gtkrecentaction.c \ +- gtkrecentchooserdefault.c \ +- gtkrecentchooserdialog.c \ +- gtkrecentchoosermenu.c \ +- gtkrecentchooserwidget.c \ +- gtkrecentchooserutils.c \ +- gtkrecentchooser.c \ +- gtkrecentfilter.c \ +- gtkrecentmanager.c \ +- gtkruler.c \ +- gtkscale.c \ +- gtkscalebutton.c \ +- gtkscrollbar.c \ +- gtkscrolledwindow.c \ +- gtkselection.c \ +- gtkseparator.c \ +- gtkseparatormenuitem.c \ +- gtkseparatortoolitem.c \ +- gtksettings.c \ +- gtksizegroup.c \ +- gtkshow.c \ +- gtksocket.c \ +- gtkspinbutton.c \ +- gtkstatusbar.c \ +- gtkstatusicon.c \ +- gtkstock.c \ +- gtkstyle.c \ +- gtktable.c \ +- gtktearoffmenuitem.c \ +- gtktestutils.c \ +- gtktextbtree.c \ +- gtktextbuffer.c \ +- gtktextbufferrichtext.c \ +- gtktextbufferserialize.c\ +- gtktextchild.c \ +- gtktextdisplay.c \ +- gtktextiter.c \ +- gtktextlayout.c \ +- gtktextmark.c \ +- gtktextsegment.c \ +- gtktexttag.c \ +- gtktexttagtable.c \ +- gtktexttypes.c \ +- gtktextutil.c \ +- gtktextview.c \ +- gtkthemes.c \ +- gtktoggleaction.c \ +- gtktogglebutton.c \ +- gtktoggletoolbutton.c \ +- gtktoolbar.c \ +- gtktoolbutton.c \ +- gtktoolitem.c \ +- gtktoolshell.c \ +- gtktooltip.c \ +- gtktreedatalist.c \ +- gtktreednd.c \ +- gtktreemodel.c \ +- gtktreemodelfilter.c \ +- gtktreemodelsort.c \ +- gtktreeselection.c \ +- gtktreesortable.c \ +- gtktreestore.c \ +- gtktreeview.c \ +- gtktreeviewcolumn.c \ +- gtktypebuiltins.c \ +- gtktypeutils.c \ +- gtkuimanager.c \ +- gtkvbbox.c \ +- gtkvbox.c \ +- gtkvolumebutton.c \ +- gtkviewport.c \ +- gtkvpaned.c \ +- gtkvruler.c \ +- gtkvscale.c \ +- gtkvscrollbar.c \ +- gtkvseparator.c \ +- gtkwidget.c \ +- gtkwindow-decorate.c \ +- gtkwindow.c \ +- $(gtk_clipboard_dnd_c_sources)\ +-\ +- gtktext.c \ +- gtktree.c \ +- gtktreeitem.c\ +-\ +- gtkclist.c \ +- gtkcombo.c \ +- gtkctree.c \ +- gtkfilesel.c \ +- gtkitemfactory.c \ +- gtklist.c \ +- gtklistitem.c \ +- gtkoldeditable.c \ +- gtkoptionmenu.c \ +- gtkpixmap.c \ +- gtkpreview.c \ +- gtkprogress.c \ +- gtksignal.c \ +- gtktipsquery.c \ +- gtktooltips.c +- +- +-gtk_c_sources = $(gtk_base_c_sources) $(am__append_5) $(am__append_7) $(am__append_9) $(am__append_11) $(am__append_13) $(am__append_14) +-gtk_all_c_sources = $(gtk_base_c_sources) $(gtk_os_unix_c_sources) $(gtk_os_win32_c_sources) $(gtk_use_x11_c_sources) $(gtk_use_win32_c_sources) $(gtk_use_quartz_c_sources) $(gtk_use_stub_c_sources) +- +-gtk_os_unix_c_sources = \ +- gtkcustompaperunixdialog.c \ +- gtkpagesetupunixdialog.c \ +- gtkprinter.c \ +- gtkprinteroption.c \ +- gtkprinteroptionset.c \ +- gtkprinteroptionwidget.c \ +- gtkprintjob.c \ +- gtkprintoperation-unix.c \ +- gtkprintunixdialog.c \ +- gtkprintbackend.c \ +- gtksearchenginebeagle.c \ +- gtksearchenginetracker.c +- +- +-gtk_os_win32_c_sources = \ +- gtkprint-win32.c \ +- gtkprintoperation-win32.c +- +- +-gtk_use_x11_c_sources = \ +- gtkplug-x11.c \ +- gtksocket-x11.c \ +- gtkxembed.c \ +- gtktrayicon-x11.c \ +- gtkmountoperation-x11.c +- +-gtk_use_win32_c_sources = \ +- gtkplug-win32.c \ +- gtksocket-win32.c \ +- gtkwin32embed.c \ +- gtkwin32embedwidget.c \ +- gtkmountoperation-stub.c +- +-gtk_use_quartz_c_sources = \ +- gtksearchenginequartz.c \ +- gtkplug-stub.c \ +- gtksocket-stub.c \ +- gtkmountoperation-stub.c +- +-gtk_use_stub_c_sources = \ +- gtkplug-stub.c \ +- gtksocket-stub.c \ +- gtkmountoperation-stub.c +- +-@USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@gtk_use_quartz_c_sources_CFLAGS = "-xobjective-c" +- +-@USE_QUARTZ_TRUE@gtk_clipboard_dnd_c_sources = gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c +-@USE_QUARTZ_FALSE@gtk_clipboard_dnd_c_sources = gtkclipboard.c gtkdnd.c +-@USE_QUARTZ_TRUE@gtk_clipboard_dnd_h_sources = gtkquartz.h +-@USE_QUARTZ_TRUE@gtk_clipboard_dnd_c_sources_CFLAGS = "-xobjective-c" +-@USE_QUARTZ_FALSE@gtk_clipboard_dnd_c_sources_CFLAGS = +- +-# we use our own built_sources variable rules to avoid automake's +-# BUILT_SOURCES oddities +-# we generate frequently rebuild files piggyback on a stamp file, so sources +-# depending on them only get rebuild when the built source actually changed +-# content +- +-# built sources that get installed with the header files +-gtk_built_public_sources = \ +- gtkmarshal.h \ +- gtktypebuiltins.h +- +- +-# built headers that don't get installed +-gtk_built_private_headers = \ +- gtkalias.h \ +- gtkmarshalers.h \ +- gtkbuiltincache.h \ +- gtkimcontextsimpleseqs.h +- +- +-gtk_built_sources = \ +- gtkaliasdef.c \ +- gtktypebuiltins.c \ +- gtktypefuncs.c \ +- gtkmarshalers.c \ +- gtkmarshal.c \ +- ${gtk_built_private_headers} \ +- ${gtk_built_public_sources} +- +- +-stamp_files = \ +- stamp-gtkmarshalers.h \ +- stamp-gtkmarshal.h \ +- stamp-gtktypebuiltins.h \ +- stamp-icons +- +- +-# non-header sources (headers should be specified in the above variables) +-# that don't serve as direct make target sources, i.e. they don't have +-# their own .lo rules and don't get publically installed +-gtk_extra_sources = \ +- paper_names.c \ +- paper_names_offsets.c \ +- gen-paper-names.c \ +- gtkstatusicon-quartz.c \ +- gtk.symbols \ +- gtkversion.h.in \ +- gtkmarshalers.list \ +- gtkmarshal.list +- +- +-# +-# setup GTK+ sources and their dependencies +-# +-MAINTAINERCLEANFILES = $(gtk_built_sources) $(stamp_files) $(GENERATED_ICONS) stock-icons/icon-theme.cache +-EXTRA_HEADERS = +- +-# +-# rules to generate built sources +-# +-# setup autogeneration dependencies +-gen_sources = xgen-gdef xgen-gtbh xgen-gtic xgen-gmh xgen-gmc xgen-gmlh xgen-gmlc xgen-gtfsrc.c xgen-gtf +-CLEANFILES = $(gen_sources) +- +-BUILT_SOURCES = $(gtk_built_sources) +- +-# target platform: +-lib_LTLIBRARIES = $(gtktargetlib) +- +-gtkincludedir = $(includedir)/gtk-2.0/gtk +-gtkinclude_HEADERS = $(gtk_public_h_sources) $(gtk_semi_private_h_sources) $(gtk_built_public_sources) gtkversion.h +- +-gtkunixprintincludedir = $(includedir)/gtk-unix-print-2.0/gtk +-gtkunixprintinclude_HEADERS = $(gtk_unix_print_public_h_sources) +- +-libgtk_x11_2_0_la_SOURCES = $(gtk_c_sources) +-libgtk_win32_2_0_la_SOURCES = $(gtk_c_sources) +-libgtk_quartz_2_0_la_SOURCES = $(gtk_c_sources) +-libgtk_directfb_2_0_la_SOURCES = $(gtk_c_sources) +- +-libgtk_x11_2_0_la_LDFLAGS = $(libtool_opts) +-libgtk_win32_2_0_la_LDFLAGS = $(libtool_opts) -Wl,-luuid +-libgtk_quartz_2_0_la_LDFLAGS = $(libtool_opts) +-libgtk_directfb_2_0_la_LDFLAGS = $(libtool_opts) +- +-libgtk_x11_2_0_la_LIBADD = $(libadd) +-libgtk_win32_2_0_la_LIBADD = $(libadd) -lole32 -lgdi32 -lcomdlg32 -lwinspool -lcomctl32 +-libgtk_quartz_2_0_la_LIBADD = $(libadd) +-libgtk_directfb_2_0_la_LIBADD = $(libadd) +- +-libgtk_x11_2_0_la_DEPENDENCIES = $(deps) +-libgtk_win32_2_0_la_DEPENDENCIES = $(gtk_def) $(gtk_win32_res) $(deps) +-libgtk_quartz_2_0_la_DEPENDENCIES = $(deps) +-libgtk_directfb_2_0_la_DEPENDENCIES = $(deps) +- +-@USE_WIN32_TRUE@libgtk_target_ldflags = $(gtk_win32_res_ldflag) $(gtk_win32_symbols) +-EXTRA_LTLIBRARIES = libgtk-x11-2.0.la libgtk-win32-2.0.la libgtk-quartz-2.0.la libgtk-directfb-2.0.la +- +-DEPS = $(gtktargetlib) $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la $(top_builddir)/gdk/$(gdktargetlib) +- +-TEST_DEPS = $(DEPS) gtk.immodules +- +-LDADDS = \ +- $(gtktargetlib) \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) +- +- +-# +-# Installed tools +-# +-bin_PROGRAMS = \ +- gtk-query-immodules-2.0 \ +- gtk-update-icon-cache +- +-bin_SCRIPTS = gtk-builder-convert +- +-gtk_query_immodules_2_0_DEPENDENCIES = $(DEPS) +-gtk_query_immodules_2_0_LDADD = $(LDADDS) +- +-gtk_query_immodules_2_0_SOURCES = queryimmodules.c +- +-gtk_update_icon_cache_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +- +-gtk_update_icon_cache_SOURCES = \ +- updateiconcache.c +- +- +-STOCK_ICONS = \ +- stock-icons/16/document-open-recent.png \ +- stock-icons/16/gtk-about.png \ +- stock-icons/16/gtk-add.png \ +- stock-icons/16/gtk-cdrom.png \ +- stock-icons/16/gtk-close.png \ +- stock-icons/16/gtk-connect.png \ +- stock-icons/16/gtk-convert.png \ +- stock-icons/16/gtk-copy.png \ +- stock-icons/16/gtk-cut.png \ +- stock-icons/16/gtk-delete.png \ +- stock-icons/16/gtk-directory.png \ +- stock-icons/16/gtk-disconnect.png \ +- stock-icons/16/gtk-edit.png \ +- stock-icons/16/gtk-execute.png \ +- stock-icons/16/gtk-file.png \ +- stock-icons/16/gtk-find-and-replace.png \ +- stock-icons/16/gtk-find.png \ +- stock-icons/16/gtk-floppy.png \ +- stock-icons/16/gtk-fullscreen.png \ +- stock-icons/16/gtk-go-back-ltr.png \ +- stock-icons/16/gtk-go-down.png \ +- stock-icons/16/gtk-go-forward-ltr.png \ +- stock-icons/16/gtk-goto-bottom.png \ +- stock-icons/16/gtk-goto-first-ltr.png \ +- stock-icons/16/gtk-goto-last-ltr.png \ +- stock-icons/16/gtk-goto-top.png \ +- stock-icons/16/gtk-go-up.png \ +- stock-icons/16/gtk-harddisk.png \ +- stock-icons/16/gtk-help.png \ +- stock-icons/16/gtk-home.png \ +- stock-icons/16/gtk-indent-ltr.png \ +- stock-icons/16/gtk-indent-rtl.png \ +- stock-icons/16/gtk-index.png \ +- stock-icons/16/gtk-info.png \ +- stock-icons/16/gtk-jump-to-ltr.png \ +- stock-icons/16/gtk-jump-to-rtl.png \ +- stock-icons/16/gtk-justify-center.png \ +- stock-icons/16/gtk-justify-fill.png \ +- stock-icons/16/gtk-justify-left.png \ +- stock-icons/16/gtk-justify-right.png \ +- stock-icons/16/gtk-leave-fullscreen.png \ +- stock-icons/16/gtk-media-forward-ltr.png \ +- stock-icons/16/gtk-media-next-ltr.png \ +- stock-icons/16/gtk-media-pause.png \ +- stock-icons/16/gtk-media-play-ltr.png \ +- stock-icons/16/gtk-media-play-rtl.png \ +- stock-icons/16/gtk-media-previous-ltr.png \ +- stock-icons/16/gtk-media-record.png \ +- stock-icons/16/gtk-media-rewind-ltr.png \ +- stock-icons/16/gtk-media-stop.png \ +- stock-icons/16/gtk-missing-image.png \ +- stock-icons/16/gtk-network.png \ +- stock-icons/16/gtk-new.png \ +- stock-icons/16/gtk-open.png \ +- stock-icons/16/gtk-page-setup.png \ +- stock-icons/16/gtk-paste.png \ +- stock-icons/16/gtk-preferences.png \ +- stock-icons/16/gtk-print.png \ +- stock-icons/16/gtk-print-error.png \ +- stock-icons/16/gtk-print-paused.png \ +- stock-icons/16/gtk-print-preview.png \ +- stock-icons/16/gtk-print-report.png \ +- stock-icons/16/gtk-print-warning.png \ +- stock-icons/16/gtk-properties.png \ +- stock-icons/16/gtk-quit.png \ +- stock-icons/16/gtk-redo-ltr.png \ +- stock-icons/16/gtk-redo-rtl.png \ +- stock-icons/16/gtk-refresh.png \ +- stock-icons/16/gtk-remove.png \ +- stock-icons/16/gtk-revert-to-saved-ltr.png \ +- stock-icons/16/gtk-revert-to-saved-rtl.png \ +- stock-icons/16/gtk-save-as.png \ +- stock-icons/16/gtk-select-all.png \ +- stock-icons/16/gtk-select-color.png \ +- stock-icons/16/gtk-select-font.png \ +- stock-icons/16/gtk-sort-ascending.png \ +- stock-icons/16/gtk-sort-descending.png \ +- stock-icons/16/gtk-spell-check.png \ +- stock-icons/16/gtk-stop.png \ +- stock-icons/16/gtk-strikethrough.png \ +- stock-icons/16/gtk-font.png \ +- stock-icons/16/gtk-undelete-ltr.png \ +- stock-icons/16/gtk-undelete-rtl.png \ +- stock-icons/16/gtk-underline.png \ +- stock-icons/16/gtk-undo-ltr.png \ +- stock-icons/16/gtk-undo-rtl.png \ +- stock-icons/16/gtk-unindent-ltr.png \ +- stock-icons/16/gtk-unindent-rtl.png \ +- stock-icons/16/gtk-zoom-100.png \ +- stock-icons/16/gtk-zoom-fit.png \ +- stock-icons/16/gtk-zoom-in.png \ +- stock-icons/16/gtk-zoom-out.png \ +- stock-icons/16/gtk-italic.png \ +- stock-icons/16/gtk-bold.png \ +- stock-icons/20/gtk-apply.png \ +- stock-icons/20/gtk-cancel.png \ +- stock-icons/20/gtk-close.png \ +- stock-icons/20/gtk-no.png \ +- stock-icons/20/gtk-ok.png \ +- stock-icons/20/gtk-yes.png \ +- stock-icons/24/audio-volume-high.png \ +- stock-icons/24/audio-volume-low.png \ +- stock-icons/24/audio-volume-medium.png \ +- stock-icons/24/audio-volume-muted.png \ +- stock-icons/24/document-open-recent.png \ +- stock-icons/24/gtk-about.png \ +- stock-icons/24/gtk-add.png \ +- stock-icons/24/gtk-bold.png \ +- stock-icons/24/gtk-cdrom.png \ +- stock-icons/24/gtk-clear.png \ +- stock-icons/24/gtk-close.png \ +- stock-icons/24/gtk-color-picker.png \ +- stock-icons/24/gtk-connect.png \ +- stock-icons/24/gtk-convert.png \ +- stock-icons/24/gtk-copy.png \ +- stock-icons/24/gtk-cut.png \ +- stock-icons/24/gtk-directory.png \ +- stock-icons/24/gtk-disconnect.png \ +- stock-icons/24/gtk-edit.png \ +- stock-icons/24/gtk-execute.png \ +- stock-icons/24/gtk-file.png \ +- stock-icons/24/gtk-find-and-replace.png \ +- stock-icons/24/gtk-find.png \ +- stock-icons/24/gtk-font.png \ +- stock-icons/24/gtk-fullscreen.png \ +- stock-icons/24/gtk-go-back-ltr.png \ +- stock-icons/24/gtk-goto-top.png \ +- stock-icons/24/gtk-go-down.png \ +- stock-icons/24/gtk-goto-bottom.png \ +- stock-icons/24/gtk-goto-first-ltr.png \ +- stock-icons/24/gtk-goto-last-ltr.png \ +- stock-icons/24/gtk-go-up.png \ +- stock-icons/24/gtk-harddisk.png \ +- stock-icons/24/gtk-help.png \ +- stock-icons/24/gtk-home.png \ +- stock-icons/24/gtk-indent-ltr.png \ +- stock-icons/24/gtk-indent-rtl.png \ +- stock-icons/24/gtk-index.png \ +- stock-icons/24/gtk-info.png \ +- stock-icons/24/gtk-italic.png \ +- stock-icons/24/gtk-jump-to-ltr.png \ +- stock-icons/24/gtk-jump-to-rtl.png \ +- stock-icons/24/gtk-justify-center.png \ +- stock-icons/24/gtk-justify-fill.png \ +- stock-icons/24/gtk-justify-left.png \ +- stock-icons/24/gtk-justify-right.png \ +- stock-icons/24/gtk-leave-fullscreen.png \ +- stock-icons/24/gtk-media-forward-ltr.png \ +- stock-icons/24/gtk-media-next-ltr.png \ +- stock-icons/24/gtk-media-pause.png \ +- stock-icons/24/gtk-media-play-ltr.png \ +- stock-icons/24/gtk-media-play-rtl.png \ +- stock-icons/24/gtk-media-previous-ltr.png \ +- stock-icons/24/gtk-media-record.png \ +- stock-icons/24/gtk-media-rewind-ltr.png \ +- stock-icons/24/gtk-media-stop.png \ +- stock-icons/24/gtk-missing-image.png \ +- stock-icons/24/gtk-network.png \ +- stock-icons/24/gtk-new.png \ +- stock-icons/24/gtk-open.png \ +- stock-icons/24/gtk-orientation-reverse-landscape.png \ +- stock-icons/24/gtk-orientation-landscape.png \ +- stock-icons/24/gtk-orientation-reverse-portrait.png \ +- stock-icons/24/gtk-orientation-portrait.png \ +- stock-icons/24/gtk-page-setup.png \ +- stock-icons/24/gtk-paste.png \ +- stock-icons/24/gtk-preferences.png \ +- stock-icons/24/gtk-print.png \ +- stock-icons/24/gtk-print-error.png \ +- stock-icons/24/gtk-print-paused.png \ +- stock-icons/24/gtk-print-preview.png \ +- stock-icons/24/gtk-print-report.png \ +- stock-icons/24/gtk-print-warning.png \ +- stock-icons/24/gtk-properties.png \ +- stock-icons/24/gtk-quit.png \ +- stock-icons/24/gtk-redo-ltr.png \ +- stock-icons/24/gtk-redo-rtl.png \ +- stock-icons/24/gtk-refresh.png \ +- stock-icons/24/gtk-remove.png \ +- stock-icons/24/gtk-revert-to-saved-ltr.png \ +- stock-icons/24/gtk-revert-to-saved-rtl.png \ +- stock-icons/24/gtk-select-font.png \ +- stock-icons/24/gtk-save-as.png \ +- stock-icons/24/gtk-floppy.png \ +- stock-icons/24/gtk-select-all.png \ +- stock-icons/24/gtk-select-color.png \ +- stock-icons/24/gtk-sort-ascending.png \ +- stock-icons/24/gtk-sort-descending.png \ +- stock-icons/24/gtk-spell-check.png \ +- stock-icons/24/gtk-stop.png \ +- stock-icons/24/gtk-strikethrough.png \ +- stock-icons/24/gtk-delete.png \ +- stock-icons/24/gtk-undelete-ltr.png \ +- stock-icons/24/gtk-undelete-rtl.png \ +- stock-icons/24/gtk-underline.png \ +- stock-icons/24/gtk-undo-ltr.png \ +- stock-icons/24/gtk-undo-rtl.png \ +- stock-icons/24/gtk-unindent-ltr.png \ +- stock-icons/24/gtk-unindent-rtl.png \ +- stock-icons/24/gtk-zoom-100.png \ +- stock-icons/24/gtk-zoom-fit.png \ +- stock-icons/24/gtk-zoom-in.png \ +- stock-icons/24/gtk-zoom-out.png \ +- stock-icons/24/gtk-go-forward-ltr.png \ +- stock-icons/32/gtk-dnd-multiple.png \ +- stock-icons/32/gtk-dnd.png \ +- stock-icons/48/gtk-dialog-authentication.png \ +- stock-icons/48/gtk-dialog-error.png \ +- stock-icons/48/gtk-dialog-info.png \ +- stock-icons/48/gtk-dialog-question.png \ +- stock-icons/48/gtk-dialog-warning.png ++bin_PROGRAMS = gtk-query-immodules-2.0$(EXEEXT) \ ++ gtk-update-icon-cache$(EXEEXT) ++subdir = gtk ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = makefile.msc gtkversion.h gtk-win32.rc ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ ++ "$(DESTDIR)$(bindir)" "$(DESTDIR)$(gtkincludedir)" \ ++ "$(DESTDIR)$(gtkunixprintincludedir)" ++LTLIBRARIES = $(lib_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++@HAVE_INCLUDED_IMMMODULES_TRUE@am__DEPENDENCIES_2 = \ ++@HAVE_INCLUDED_IMMMODULES_TRUE@ $(am__DEPENDENCIES_1) ++am__DEPENDENCIES_3 = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) $(am__DEPENDENCIES_1) \ ++ $(am__DEPENDENCIES_2) ++am__libgtk_directfb_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ ++ gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ ++ gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ ++ gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ ++ gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ ++ gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ ++ gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ ++ gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ ++ gtkcellrendereraccel.c gtkcellrenderercombo.c \ ++ gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ ++ gtkcellrendererspin.c gtkcellrenderertext.c \ ++ gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ ++ gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ ++ gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ ++ gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ ++ gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ ++ gtkeventbox.c gtkexpander.c gtkfilechooser.c \ ++ gtkfilechooserbutton.c gtkfilechooserdefault.c \ ++ gtkfilechooserdialog.c gtkfilechooserembed.c \ ++ gtkfilechooserentry.c gtkfilechoosersettings.c \ ++ gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ ++ gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c \ ++ gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c \ ++ gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c \ ++ gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c \ ++ gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c \ ++ gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c \ ++ gtkimcontext.c gtkimcontextsimple.c gtkimmodule.c \ ++ gtkimmulticontext.c gtkinfobar.c gtkinputdialog.c \ ++ gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c \ ++ gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c \ ++ gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c \ ++ gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c \ ++ gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ ++ gtknotebook.c gtkobject.c gtkorientable.c gtkpagesetup.c \ ++ gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ ++ gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ ++ gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ ++ gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ ++ gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ ++ gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ ++ gtkrecentchooserwidget.c gtkrecentchooserutils.c \ ++ gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ ++ gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ ++ gtkscrolledwindow.c gtkselection.c gtkseparator.c \ ++ gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ ++ gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ ++ gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c \ ++ gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ ++ gtktextbuffer.c gtktextbufferrichtext.c \ ++ gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ ++ gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ ++ gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ ++ gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ ++ gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ ++ gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ ++ gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ ++ gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ ++ gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ ++ gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ ++ gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ ++ gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ ++ gtkwidget.c gtkwindow-decorate.c gtkwindow.c gtkclipboard.c \ ++ gtkdnd.c gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ ++ gtktext.c gtktree.c gtktreeitem.c gtkclist.c gtkcombo.c \ ++ gtkctree.c gtkfilesel.c gtkitemfactory.c gtklist.c \ ++ gtklistitem.c gtkoldeditable.c gtkoptionmenu.c gtkpixmap.c \ ++ gtkpreview.c gtkprogress.c gtksignal.c gtktipsquery.c \ ++ gtktooltips.c gtkcustompaperunixdialog.c \ ++ gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ ++ gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ ++ gtkprintoperation-unix.c gtkprintunixdialog.c \ ++ gtkprintbackend.c gtksearchenginebeagle.c \ ++ gtksearchenginetracker.c gtkprint-win32.c \ ++ gtkprintoperation-win32.c gtkplug-x11.c gtksocket-x11.c \ ++ gtkxembed.c gtktrayicon-x11.c gtkmountoperation-x11.c \ ++ gtkplug-win32.c gtksocket-win32.c gtkwin32embed.c \ ++ gtkwin32embedwidget.c gtkmountoperation-stub.c \ ++ gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c ++@USE_QUARTZ_FALSE@am__objects_1 = gtkclipboard.lo gtkdnd.lo ++@USE_QUARTZ_TRUE@am__objects_1 = gtkclipboard-quartz.lo \ ++@USE_QUARTZ_TRUE@ gtkdnd-quartz.lo gtkquartz.lo ++am__objects_2 = gtkquery.lo gtksearchengine.lo \ ++ gtksearchenginesimple.lo fnmatch.lo gtkaboutdialog.lo \ ++ gtkaccelgroup.lo gtkaccellabel.lo gtkaccelmap.lo \ ++ gtkaccessible.lo gtkaction.lo gtkactiongroup.lo \ ++ gtkactivatable.lo gtkadjustment.lo gtkalignment.lo gtkarrow.lo \ ++ gtkaspectframe.lo gtkassistant.lo gtkbbox.lo gtkbin.lo \ ++ gtkbindings.lo gtkbox.lo gtkbuildable.lo gtkbuilder.lo \ ++ gtkbuilderparser.lo gtkbutton.lo gtkcalendar.lo \ ++ gtkcelleditable.lo gtkcelllayout.lo gtkcellrenderer.lo \ ++ gtkcellrendereraccel.lo gtkcellrenderercombo.lo \ ++ gtkcellrendererpixbuf.lo gtkcellrendererprogress.lo \ ++ gtkcellrendererspin.lo gtkcellrenderertext.lo \ ++ gtkcellrenderertoggle.lo gtkcellview.lo gtkcheckbutton.lo \ ++ gtkcheckmenuitem.lo gtkcolorbutton.lo gtkcolorsel.lo \ ++ gtkcolorseldialog.lo gtkcombobox.lo gtkcomboboxentry.lo \ ++ gtkcontainer.lo gtkcurve.lo gtkdialog.lo gtkdrawingarea.lo \ ++ gtkeditable.lo gtkentry.lo gtkentrybuffer.lo \ ++ gtkentrycompletion.lo gtkeventbox.lo gtkexpander.lo \ ++ gtkfilechooser.lo gtkfilechooserbutton.lo \ ++ gtkfilechooserdefault.lo gtkfilechooserdialog.lo \ ++ gtkfilechooserembed.lo gtkfilechooserentry.lo \ ++ gtkfilechoosersettings.lo gtkfilechooserutils.lo \ ++ gtkfilechooserwidget.lo gtkfilefilter.lo gtkfilesystem.lo \ ++ gtkfilesystemmodel.lo gtkfixed.lo gtkfontbutton.lo \ ++ gtkfontsel.lo gtkframe.lo gtkgamma.lo gtkgc.lo gtkhandlebox.lo \ ++ gtkhbbox.lo gtkhbox.lo gtkhpaned.lo gtkhruler.lo gtkhscale.lo \ ++ gtkhscrollbar.lo gtkhseparator.lo gtkhsv.lo gtkiconcache.lo \ ++ gtkiconcachevalidator.lo gtkiconfactory.lo gtkicontheme.lo \ ++ gtkiconview.lo gtkimage.lo gtkimagemenuitem.lo gtkimcontext.lo \ ++ gtkimcontextsimple.lo gtkimmodule.lo gtkimmulticontext.lo \ ++ gtkinfobar.lo gtkinputdialog.lo gtkinvisible.lo gtkitem.lo \ ++ gtkkeyhash.lo gtklabel.lo gtklayout.lo gtklinkbutton.lo \ ++ gtkliststore.lo gtkmain.lo gtkmarshal.lo gtkmarshalers.lo \ ++ gtkmenu.lo gtkmenubar.lo gtkmenuitem.lo gtkmenushell.lo \ ++ gtkmenutoolbutton.lo gtkmessagedialog.lo gtkmisc.lo \ ++ gtkmnemonichash.lo gtkmodules.lo gtkmountoperation.lo \ ++ gtknotebook.lo gtkobject.lo gtkorientable.lo gtkpagesetup.lo \ ++ gtkpaned.lo gtkpapersize.lo gtkpathbar.lo gtkplug.lo \ ++ gtkprintcontext.lo gtkprintoperation.lo \ ++ gtkprintoperationpreview.lo gtkprintsettings.lo \ ++ gtkprintutils.lo gtkprogressbar.lo gtkradioaction.lo \ ++ gtkradiobutton.lo gtkradiomenuitem.lo gtkradiotoolbutton.lo \ ++ gtkrange.lo gtkrbtree.lo gtkrc.lo gtkrecentaction.lo \ ++ gtkrecentchooserdefault.lo gtkrecentchooserdialog.lo \ ++ gtkrecentchoosermenu.lo gtkrecentchooserwidget.lo \ ++ gtkrecentchooserutils.lo gtkrecentchooser.lo \ ++ gtkrecentfilter.lo gtkrecentmanager.lo gtkruler.lo gtkscale.lo \ ++ gtkscalebutton.lo gtkscrollbar.lo gtkscrolledwindow.lo \ ++ gtkselection.lo gtkseparator.lo gtkseparatormenuitem.lo \ ++ gtkseparatortoolitem.lo gtksettings.lo gtksizegroup.lo \ ++ gtkshow.lo gtksocket.lo gtkspinbutton.lo gtkstatusbar.lo \ ++ gtkstatusicon.lo gtkstock.lo gtkstyle.lo gtktable.lo \ ++ gtktearoffmenuitem.lo gtktestutils.lo gtktextbtree.lo \ ++ gtktextbuffer.lo gtktextbufferrichtext.lo \ ++ gtktextbufferserialize.lo gtktextchild.lo gtktextdisplay.lo \ ++ gtktextiter.lo gtktextlayout.lo gtktextmark.lo \ ++ gtktextsegment.lo gtktexttag.lo gtktexttagtable.lo \ ++ gtktexttypes.lo gtktextutil.lo gtktextview.lo gtkthemes.lo \ ++ gtktoggleaction.lo gtktogglebutton.lo gtktoggletoolbutton.lo \ ++ gtktoolbar.lo gtktoolbutton.lo gtktoolitem.lo gtktoolshell.lo \ ++ gtktooltip.lo gtktreedatalist.lo gtktreednd.lo gtktreemodel.lo \ ++ gtktreemodelfilter.lo gtktreemodelsort.lo gtktreeselection.lo \ ++ gtktreesortable.lo gtktreestore.lo gtktreeview.lo \ ++ gtktreeviewcolumn.lo gtktypebuiltins.lo gtktypeutils.lo \ ++ gtkuimanager.lo gtkvbbox.lo gtkvbox.lo gtkvolumebutton.lo \ ++ gtkviewport.lo gtkvpaned.lo gtkvruler.lo gtkvscale.lo \ ++ gtkvscrollbar.lo gtkvseparator.lo gtkwidget.lo \ ++ gtkwindow-decorate.lo gtkwindow.lo $(am__objects_1) gtktext.lo \ ++ gtktree.lo gtktreeitem.lo gtkclist.lo gtkcombo.lo gtkctree.lo \ ++ gtkfilesel.lo gtkitemfactory.lo gtklist.lo gtklistitem.lo \ ++ gtkoldeditable.lo gtkoptionmenu.lo gtkpixmap.lo gtkpreview.lo \ ++ gtkprogress.lo gtksignal.lo gtktipsquery.lo gtktooltips.lo ++am__objects_3 = gtkcustompaperunixdialog.lo gtkpagesetupunixdialog.lo \ ++ gtkprinter.lo gtkprinteroption.lo gtkprinteroptionset.lo \ ++ gtkprinteroptionwidget.lo gtkprintjob.lo \ ++ gtkprintoperation-unix.lo gtkprintunixdialog.lo \ ++ gtkprintbackend.lo gtksearchenginebeagle.lo \ ++ gtksearchenginetracker.lo ++@OS_UNIX_TRUE@am__objects_4 = $(am__objects_3) ++am__objects_5 = gtkprint-win32.lo gtkprintoperation-win32.lo ++@OS_WIN32_TRUE@am__objects_6 = $(am__objects_5) ++am__objects_7 = gtkplug-x11.lo gtksocket-x11.lo gtkxembed.lo \ ++ gtktrayicon-x11.lo gtkmountoperation-x11.lo ++@USE_X11_TRUE@am__objects_8 = $(am__objects_7) ++am__objects_9 = gtkplug-win32.lo gtksocket-win32.lo gtkwin32embed.lo \ ++ gtkwin32embedwidget.lo gtkmountoperation-stub.lo ++@USE_WIN32_TRUE@@USE_X11_FALSE@am__objects_10 = $(am__objects_9) ++am__objects_11 = gtksearchenginequartz.lo gtkplug-stub.lo \ ++ gtksocket-stub.lo gtkmountoperation-stub.lo ++@USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__objects_12 = $(am__objects_11) ++am__objects_13 = gtkplug-stub.lo gtksocket-stub.lo \ ++ gtkmountoperation-stub.lo ++@USE_QUARTZ_FALSE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__objects_14 = $(am__objects_13) ++am__objects_15 = $(am__objects_2) $(am__objects_4) $(am__objects_6) \ ++ $(am__objects_8) $(am__objects_10) $(am__objects_12) \ ++ $(am__objects_14) ++am_libgtk_directfb_2_0_la_OBJECTS = $(am__objects_15) ++libgtk_directfb_2_0_la_OBJECTS = $(am_libgtk_directfb_2_0_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgtk_directfb_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgtk_directfb_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++am__libgtk_quartz_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ ++ gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ ++ gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ ++ gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ ++ gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ ++ gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ ++ gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ ++ gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ ++ gtkcellrendereraccel.c gtkcellrenderercombo.c \ ++ gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ ++ gtkcellrendererspin.c gtkcellrenderertext.c \ ++ gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ ++ gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ ++ gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ ++ gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ ++ gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ ++ gtkeventbox.c gtkexpander.c gtkfilechooser.c \ ++ gtkfilechooserbutton.c gtkfilechooserdefault.c \ ++ gtkfilechooserdialog.c gtkfilechooserembed.c \ ++ gtkfilechooserentry.c gtkfilechoosersettings.c \ ++ gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ ++ gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c \ ++ gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c \ ++ gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c \ ++ gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c \ ++ gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c \ ++ gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c \ ++ gtkimcontext.c gtkimcontextsimple.c gtkimmodule.c \ ++ gtkimmulticontext.c gtkinfobar.c gtkinputdialog.c \ ++ gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c \ ++ gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c \ ++ gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c \ ++ gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c \ ++ gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ ++ gtknotebook.c gtkobject.c gtkorientable.c gtkpagesetup.c \ ++ gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ ++ gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ ++ gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ ++ gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ ++ gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ ++ gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ ++ gtkrecentchooserwidget.c gtkrecentchooserutils.c \ ++ gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ ++ gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ ++ gtkscrolledwindow.c gtkselection.c gtkseparator.c \ ++ gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ ++ gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ ++ gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c \ ++ gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ ++ gtktextbuffer.c gtktextbufferrichtext.c \ ++ gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ ++ gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ ++ gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ ++ gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ ++ gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ ++ gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ ++ gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ ++ gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ ++ gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ ++ gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ ++ gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ ++ gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ ++ gtkwidget.c gtkwindow-decorate.c gtkwindow.c gtkclipboard.c \ ++ gtkdnd.c gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ ++ gtktext.c gtktree.c gtktreeitem.c gtkclist.c gtkcombo.c \ ++ gtkctree.c gtkfilesel.c gtkitemfactory.c gtklist.c \ ++ gtklistitem.c gtkoldeditable.c gtkoptionmenu.c gtkpixmap.c \ ++ gtkpreview.c gtkprogress.c gtksignal.c gtktipsquery.c \ ++ gtktooltips.c gtkcustompaperunixdialog.c \ ++ gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ ++ gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ ++ gtkprintoperation-unix.c gtkprintunixdialog.c \ ++ gtkprintbackend.c gtksearchenginebeagle.c \ ++ gtksearchenginetracker.c gtkprint-win32.c \ ++ gtkprintoperation-win32.c gtkplug-x11.c gtksocket-x11.c \ ++ gtkxembed.c gtktrayicon-x11.c gtkmountoperation-x11.c \ ++ gtkplug-win32.c gtksocket-win32.c gtkwin32embed.c \ ++ gtkwin32embedwidget.c gtkmountoperation-stub.c \ ++ gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c ++am_libgtk_quartz_2_0_la_OBJECTS = $(am__objects_15) ++libgtk_quartz_2_0_la_OBJECTS = $(am_libgtk_quartz_2_0_la_OBJECTS) ++libgtk_quartz_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgtk_quartz_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++am__libgtk_win32_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ ++ gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ ++ gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ ++ gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ ++ gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ ++ gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ ++ gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ ++ gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ ++ gtkcellrendereraccel.c gtkcellrenderercombo.c \ ++ gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ ++ gtkcellrendererspin.c gtkcellrenderertext.c \ ++ gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ ++ gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ ++ gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ ++ gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ ++ gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ ++ gtkeventbox.c gtkexpander.c gtkfilechooser.c \ ++ gtkfilechooserbutton.c gtkfilechooserdefault.c \ ++ gtkfilechooserdialog.c gtkfilechooserembed.c \ ++ gtkfilechooserentry.c gtkfilechoosersettings.c \ ++ gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ ++ gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c \ ++ gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c \ ++ gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c \ ++ gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c \ ++ gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c \ ++ gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c \ ++ gtkimcontext.c gtkimcontextsimple.c gtkimmodule.c \ ++ gtkimmulticontext.c gtkinfobar.c gtkinputdialog.c \ ++ gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c \ ++ gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c \ ++ gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c \ ++ gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c \ ++ gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ ++ gtknotebook.c gtkobject.c gtkorientable.c gtkpagesetup.c \ ++ gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ ++ gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ ++ gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ ++ gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ ++ gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ ++ gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ ++ gtkrecentchooserwidget.c gtkrecentchooserutils.c \ ++ gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ ++ gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ ++ gtkscrolledwindow.c gtkselection.c gtkseparator.c \ ++ gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ ++ gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ ++ gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c \ ++ gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ ++ gtktextbuffer.c gtktextbufferrichtext.c \ ++ gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ ++ gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ ++ gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ ++ gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ ++ gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ ++ gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ ++ gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ ++ gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ ++ gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ ++ gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ ++ gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ ++ gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ ++ gtkwidget.c gtkwindow-decorate.c gtkwindow.c gtkclipboard.c \ ++ gtkdnd.c gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ ++ gtktext.c gtktree.c gtktreeitem.c gtkclist.c gtkcombo.c \ ++ gtkctree.c gtkfilesel.c gtkitemfactory.c gtklist.c \ ++ gtklistitem.c gtkoldeditable.c gtkoptionmenu.c gtkpixmap.c \ ++ gtkpreview.c gtkprogress.c gtksignal.c gtktipsquery.c \ ++ gtktooltips.c gtkcustompaperunixdialog.c \ ++ gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ ++ gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ ++ gtkprintoperation-unix.c gtkprintunixdialog.c \ ++ gtkprintbackend.c gtksearchenginebeagle.c \ ++ gtksearchenginetracker.c gtkprint-win32.c \ ++ gtkprintoperation-win32.c gtkplug-x11.c gtksocket-x11.c \ ++ gtkxembed.c gtktrayicon-x11.c gtkmountoperation-x11.c \ ++ gtkplug-win32.c gtksocket-win32.c gtkwin32embed.c \ ++ gtkwin32embedwidget.c gtkmountoperation-stub.c \ ++ gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c ++am_libgtk_win32_2_0_la_OBJECTS = $(am__objects_15) ++libgtk_win32_2_0_la_OBJECTS = $(am_libgtk_win32_2_0_la_OBJECTS) ++libgtk_win32_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgtk_win32_2_0_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++am__libgtk_x11_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ ++ gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ ++ gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ ++ gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ ++ gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ ++ gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ ++ gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ ++ gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ ++ gtkcellrendereraccel.c gtkcellrenderercombo.c \ ++ gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ ++ gtkcellrendererspin.c gtkcellrenderertext.c \ ++ gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ ++ gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ ++ gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ ++ gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ ++ gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ ++ gtkeventbox.c gtkexpander.c gtkfilechooser.c \ ++ gtkfilechooserbutton.c gtkfilechooserdefault.c \ ++ gtkfilechooserdialog.c gtkfilechooserembed.c \ ++ gtkfilechooserentry.c gtkfilechoosersettings.c \ ++ gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ ++ gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c \ ++ gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c \ ++ gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c \ ++ gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c \ ++ gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c \ ++ gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c \ ++ gtkimcontext.c gtkimcontextsimple.c gtkimmodule.c \ ++ gtkimmulticontext.c gtkinfobar.c gtkinputdialog.c \ ++ gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c \ ++ gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c \ ++ gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c \ ++ gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c \ ++ gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ ++ gtknotebook.c gtkobject.c gtkorientable.c gtkpagesetup.c \ ++ gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ ++ gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ ++ gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ ++ gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ ++ gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ ++ gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ ++ gtkrecentchooserwidget.c gtkrecentchooserutils.c \ ++ gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ ++ gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ ++ gtkscrolledwindow.c gtkselection.c gtkseparator.c \ ++ gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ ++ gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ ++ gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c \ ++ gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ ++ gtktextbuffer.c gtktextbufferrichtext.c \ ++ gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ ++ gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ ++ gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ ++ gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ ++ gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ ++ gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ ++ gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ ++ gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ ++ gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ ++ gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ ++ gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ ++ gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ ++ gtkwidget.c gtkwindow-decorate.c gtkwindow.c gtkclipboard.c \ ++ gtkdnd.c gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ ++ gtktext.c gtktree.c gtktreeitem.c gtkclist.c gtkcombo.c \ ++ gtkctree.c gtkfilesel.c gtkitemfactory.c gtklist.c \ ++ gtklistitem.c gtkoldeditable.c gtkoptionmenu.c gtkpixmap.c \ ++ gtkpreview.c gtkprogress.c gtksignal.c gtktipsquery.c \ ++ gtktooltips.c gtkcustompaperunixdialog.c \ ++ gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ ++ gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ ++ gtkprintoperation-unix.c gtkprintunixdialog.c \ ++ gtkprintbackend.c gtksearchenginebeagle.c \ ++ gtksearchenginetracker.c gtkprint-win32.c \ ++ gtkprintoperation-win32.c gtkplug-x11.c gtksocket-x11.c \ ++ gtkxembed.c gtktrayicon-x11.c gtkmountoperation-x11.c \ ++ gtkplug-win32.c gtksocket-win32.c gtkwin32embed.c \ ++ gtkwin32embedwidget.c gtkmountoperation-stub.c \ ++ gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c ++am_libgtk_x11_2_0_la_OBJECTS = $(am__objects_15) ++libgtk_x11_2_0_la_OBJECTS = $(am_libgtk_x11_2_0_la_OBJECTS) ++libgtk_x11_2_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libgtk_x11_2_0_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++PROGRAMS = $(bin_PROGRAMS) ++am_gtk_query_immodules_2_0_OBJECTS = queryimmodules.$(OBJEXT) ++gtk_query_immodules_2_0_OBJECTS = \ ++ $(am_gtk_query_immodules_2_0_OBJECTS) ++am__DEPENDENCIES_4 = $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) ++am_gtk_update_icon_cache_OBJECTS = updateiconcache.$(OBJEXT) ++gtk_update_icon_cache_OBJECTS = $(am_gtk_update_icon_cache_OBJECTS) ++gtk_update_icon_cache_DEPENDENCIES = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++SCRIPTS = $(bin_SCRIPTS) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgtk_directfb_2_0_la_SOURCES) \ ++ $(libgtk_quartz_2_0_la_SOURCES) $(libgtk_win32_2_0_la_SOURCES) \ ++ $(libgtk_x11_2_0_la_SOURCES) \ ++ $(gtk_query_immodules_2_0_SOURCES) \ ++ $(gtk_update_icon_cache_SOURCES) ++DIST_SOURCES = $(am__libgtk_directfb_2_0_la_SOURCES_DIST) \ ++ $(am__libgtk_quartz_2_0_la_SOURCES_DIST) \ ++ $(am__libgtk_win32_2_0_la_SOURCES_DIST) \ ++ $(am__libgtk_x11_2_0_la_SOURCES_DIST) \ ++ $(gtk_query_immodules_2_0_SOURCES) \ ++ $(gtk_update_icon_cache_SOURCES) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++DATA = $(noinst_DATA) ++am__gtkunixprintinclude_HEADERS_DIST = gtkpagesetupunixdialog.h \ ++ gtkprintunixdialog.h gtkprinter.h gtkprintjob.h gtkunixprint.h ++HEADERS = $(gtkinclude_HEADERS) $(gtkunixprintinclude_HEADERS) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" ++ACLOCAL = @ACLOCAL@ ++AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ ++AR = @AR@ ++AS = @AS@ ++ATK_PREFIX = @ATK_PREFIX@ ++AUTOCONF = @AUTOCONF@ ++AUTOHEADER = @AUTOHEADER@ ++AUTOMAKE = @AUTOMAKE@ ++AWK = @AWK@ ++BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ ++BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ ++CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ ++CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ ++CAIRO_PREFIX = @CAIRO_PREFIX@ ++CATALOGS = @CATALOGS@ ++CATOBJEXT = @CATOBJEXT@ ++CC = @CC@ ++CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ ++CCASFLAGS = @CCASFLAGS@ ++CCDEPMODE = @CCDEPMODE@ ++CFLAGS = @CFLAGS@ ++CPP = @CPP@ ++CPPFLAGS = @CPPFLAGS@ ++CUPS_API_MAJOR = @CUPS_API_MAJOR@ ++CUPS_API_MINOR = @CUPS_API_MINOR@ ++CUPS_CFLAGS = @CUPS_CFLAGS@ ++CUPS_CONFIG = @CUPS_CONFIG@ ++CUPS_LIBS = @CUPS_LIBS@ ++CXX = @CXX@ ++CXXCPP = @CXXCPP@ ++CXXDEPMODE = @CXXDEPMODE@ ++CXXFLAGS = @CXXFLAGS@ ++CYGPATH_W = @CYGPATH_W@ ++DATADIRNAME = @DATADIRNAME@ ++DB2HTML = @DB2HTML@ ++DEFS = @DEFS@ ++DEPDIR = @DEPDIR@ ++DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ ++DIRECTFB_LIBS = @DIRECTFB_LIBS@ ++DLLTOOL = @DLLTOOL@ ++DSYMUTIL = @DSYMUTIL@ ++DUMPBIN = @DUMPBIN@ ++ECHO_C = @ECHO_C@ ++ECHO_N = @ECHO_N@ ++ECHO_T = @ECHO_T@ ++EGREP = @EGREP@ ++EXEEXT = @EXEEXT@ ++FGREP = @FGREP@ ++GAIL_INET_LIBS = @GAIL_INET_LIBS@ ++GAIL_LT_CURRENT_MINUS_AGE = @GAIL_LT_CURRENT_MINUS_AGE@ ++GAIL_LT_VERSION_INFO = @GAIL_LT_VERSION_INFO@ ++GDK_DEP_CFLAGS = @GDK_DEP_CFLAGS@ ++GDK_DEP_LIBS = @GDK_DEP_LIBS@ ++GDK_EXTRA_CFLAGS = @GDK_EXTRA_CFLAGS@ ++GDK_EXTRA_LIBS = @GDK_EXTRA_LIBS@ ++GDK_PACKAGES = @GDK_PACKAGES@ ++GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ ++GDK_PIXBUF_DEP_CFLAGS = @GDK_PIXBUF_DEP_CFLAGS@ ++GDK_PIXBUF_DEP_LIBS = @GDK_PIXBUF_DEP_LIBS@ ++GDK_PIXBUF_EXTRA_CFLAGS = @GDK_PIXBUF_EXTRA_CFLAGS@ ++GDK_PIXBUF_EXTRA_LIBS = @GDK_PIXBUF_EXTRA_LIBS@ ++GDK_PIXBUF_MAJOR = @GDK_PIXBUF_MAJOR@ ++GDK_PIXBUF_MICRO = @GDK_PIXBUF_MICRO@ ++GDK_PIXBUF_MINOR = @GDK_PIXBUF_MINOR@ ++GDK_PIXBUF_PACKAGES = @GDK_PIXBUF_PACKAGES@ ++GDK_PIXBUF_VERSION = @GDK_PIXBUF_VERSION@ ++GDK_PIXBUF_XLIB_DEP_CFLAGS = @GDK_PIXBUF_XLIB_DEP_CFLAGS@ ++GDK_PIXBUF_XLIB_DEP_LIBS = @GDK_PIXBUF_XLIB_DEP_LIBS@ ++GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ ++GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ ++GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ ++GDK_WLIBS = @GDK_WLIBS@ ++GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ ++GLIB_CFLAGS = @GLIB_CFLAGS@ ++GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ ++GLIB_LIBS = @GLIB_LIBS@ ++GLIB_MKENUMS = @GLIB_MKENUMS@ ++GLIB_PREFIX = @GLIB_PREFIX@ ++GMOFILES = @GMOFILES@ ++GMSGFMT = @GMSGFMT@ ++GOBJECT_QUERY = @GOBJECT_QUERY@ ++GREP = @GREP@ ++GTKDOC_CHECK = @GTKDOC_CHECK@ ++GTK_API_VERSION = @GTK_API_VERSION@ ++GTK_BINARY_AGE = @GTK_BINARY_AGE@ ++GTK_BINARY_VERSION = @GTK_BINARY_VERSION@ ++GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ ++GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ ++GTK_DEP_LIBS = @GTK_DEP_LIBS@ ++GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ ++GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ ++GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ ++GTK_MAJOR_VERSION = @GTK_MAJOR_VERSION@ ++GTK_MICRO_VERSION = @GTK_MICRO_VERSION@ ++GTK_MINOR_VERSION = @GTK_MINOR_VERSION@ ++GTK_PACKAGES = @GTK_PACKAGES@ ++GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ ++GTK_VERSION = @GTK_VERSION@ ++GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ ++HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ ++HTML_DIR = @HTML_DIR@ ++INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ ++INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ ++INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ ++INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ ++INDENT = @INDENT@ ++INSTALL = @INSTALL@ ++INSTALL_DATA = @INSTALL_DATA@ ++INSTALL_PROGRAM = @INSTALL_PROGRAM@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ ++INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ ++INSTOBJEXT = @INSTOBJEXT@ ++INTLLIBS = @INTLLIBS@ ++LD = @LD@ ++LDFLAGS = @LDFLAGS@ ++LIBJASPER = @LIBJASPER@ ++LIBJPEG = @LIBJPEG@ ++LIBOBJS = @LIBOBJS@ ++LIBPNG = @LIBPNG@ ++LIBS = @LIBS@ ++LIBTIFF = @LIBTIFF@ ++LIBTOOL = @LIBTOOL@ ++LIBTOOL_EXPORT_OPTIONS = @LIBTOOL_EXPORT_OPTIONS@ ++LIB_EXE_MACHINE_FLAG = @LIB_EXE_MACHINE_FLAG@ ++LIPO = @LIPO@ ++LN_S = @LN_S@ ++LTLIBOBJS = @LTLIBOBJS@ ++LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ ++LT_VERSION_INFO = @LT_VERSION_INFO@ ++MAINT = @MAINT@ ++MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ ++MKINSTALLDIRS = @MKINSTALLDIRS@ ++MSGFMT = @MSGFMT@ ++MSGFMT_OPTS = @MSGFMT_OPTS@ ++NM = @NM@ ++NMEDIT = @NMEDIT@ ++OBJDUMP = @OBJDUMP@ ++OBJEXT = @OBJEXT@ ++OTOOL = @OTOOL@ ++OTOOL64 = @OTOOL64@ ++PACKAGE = @PACKAGE@ ++PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ ++PACKAGE_NAME = @PACKAGE_NAME@ ++PACKAGE_STRING = @PACKAGE_STRING@ ++PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ ++PACKAGE_VERSION = @PACKAGE_VERSION@ ++PANGO_PREFIX = @PANGO_PREFIX@ ++PATH_SEPARATOR = @PATH_SEPARATOR@ ++PERL = @PERL@ ++PKG_CONFIG = @PKG_CONFIG@ ++POFILES = @POFILES@ ++POSUB = @POSUB@ ++PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ ++PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ ++RANLIB = @RANLIB@ ++REBUILD = @REBUILD@ ++REBUILD_PNGS = @REBUILD_PNGS@ ++SED = @SED@ ++SET_MAKE = @SET_MAKE@ ++SHELL = @SHELL@ ++STRIP = @STRIP@ ++USE_NLS = @USE_NLS@ ++VERSION = @VERSION@ ++WINDRES = @WINDRES@ ++XGETTEXT = @XGETTEXT@ ++XMKMF = @XMKMF@ ++XMLCATALOG = @XMLCATALOG@ ++XML_CATALOG_FILE = @XML_CATALOG_FILE@ ++XSLTPROC = @XSLTPROC@ ++X_CFLAGS = @X_CFLAGS@ ++X_EXTRA_LIBS = @X_EXTRA_LIBS@ ++X_LIBS = @X_LIBS@ ++X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ ++ac_ct_CC = @ac_ct_CC@ ++ac_ct_CXX = @ac_ct_CXX@ ++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ++am__include = @am__include@ ++am__leading_dot = @am__leading_dot@ ++am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ ++bindir = @bindir@ ++build = @build@ ++build_alias = @build_alias@ ++build_cpu = @build_cpu@ ++build_os = @build_os@ ++build_vendor = @build_vendor@ ++builddir = @builddir@ ++datadir = @datadir@ ++datarootdir = @datarootdir@ ++docdir = @docdir@ ++dvidir = @dvidir@ ++exec_prefix = @exec_prefix@ ++gdktarget = @gdktarget@ ++gdktargetlib = @gdktargetlib@ ++gtktargetlib = @gtktargetlib@ ++host = @host@ ++host_alias = @host_alias@ ++host_cpu = @host_cpu@ ++host_os = @host_os@ ++host_vendor = @host_vendor@ ++htmldir = @htmldir@ ++includedir = @includedir@ ++infodir = @infodir@ ++install_sh = @install_sh@ ++libdir = @libdir@ ++libexecdir = @libexecdir@ ++localedir = @localedir@ ++localstatedir = @localstatedir@ ++lt_ECHO = @lt_ECHO@ ++mandir = @mandir@ ++mkdir_p = @mkdir_p@ ++ms_librarian = @ms_librarian@ ++oldincludedir = @oldincludedir@ ++pdfdir = @pdfdir@ ++prefix = @prefix@ ++program_transform_name = @program_transform_name@ ++psdir = @psdir@ ++sbindir = @sbindir@ ++sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ ++sysconfdir = @sysconfdir@ ++target_alias = @target_alias@ ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ ++GTESTER = gtester # in $PATH for non-GLIB packages ++GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + ++# initialize variables for unconditional += appending ++EXTRA_DIST = gtkquartz.h $(gtk_private_h_sources) $(gtk_extra_sources) \ ++ $(gtk_built_sources) $(STOCK_ICONS) $(STOCK_ICONS) \ ++ $(GENERATED_ICONS) line-arrow.xbm line-wrap.xbm tree_plus.xbm \ ++ tree_minus.xbm tree_minus.xpm tree_plus.xpm gtk.def \ ++ gtk-builder-convert gtk-win32.rc gtk-win32.rc.in \ ++ gtkwin32embed.h gtkwin32embedwidget.h gtkwin32embedwidget.c \ ++ gtkprint-win32.h gtkprint-win32.c gtksearchenginequartz.h \ ++ gtkrc.default gtkrc.key.default gtkrc.key.emacs makefile.msc \ ++ makefile.msc.in makegtkalias.pl aliasfilescheck.sh abicheck.sh \ ++ pltcheck.sh gtktypebuiltins.c.template \ ++ gtktypebuiltins.h.template ++TEST_PROGS = + +-GENERATED_ICONS = \ +- stock-icons/16/gtk-go-back-rtl.png \ +- stock-icons/16/gtk-go-forward-rtl.png \ +- stock-icons/16/gtk-goto-first-rtl.png \ +- stock-icons/16/gtk-goto-last-rtl.png \ +- stock-icons/16/gtk-media-forward-rtl.png \ +- stock-icons/16/gtk-media-next-rtl.png \ +- stock-icons/16/gtk-media-previous-rtl.png \ +- stock-icons/16/gtk-media-rewind-rtl.png \ +- stock-icons/16/gtk-save.png \ +- stock-icons/16/drive-harddisk.png \ +- stock-icons/16/folder.png \ +- stock-icons/16/folder-remote.png \ +- stock-icons/16/user-home.png \ +- stock-icons/16/user-desktop.png \ +- stock-icons/16/text-x-generic.png \ +- stock-icons/24/gtk-go-back-rtl.png \ +- stock-icons/24/gtk-go-forward-rtl.png \ +- stock-icons/24/gtk-goto-first-rtl.png \ +- stock-icons/24/gtk-goto-last-rtl.png \ +- stock-icons/24/gtk-media-forward-rtl.png \ +- stock-icons/24/gtk-media-next-rtl.png \ +- stock-icons/24/gtk-media-previous-rtl.png \ +- stock-icons/24/gtk-media-rewind-rtl.png \ +- stock-icons/24/gtk-save.png \ +- stock-icons/24/drive-harddisk.png \ +- stock-icons/24/folder.png \ +- stock-icons/24/folder-remote.png \ +- stock-icons/24/user-home.png \ +- stock-icons/24/user-desktop.png \ +- stock-icons/24/text-x-generic.png ++### testing rules ++ ++# Xvfb based test rules ++XVFB = Xvfb -ac -noreset -screen 0 800x600x16 ++XIDS = 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 \ ++ 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 \ ++ 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 \ ++ 1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 \ ++ 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 \ ++ 9995 9996 9997 9998 9999 ++ ++SKIP_GDKTARGET = \ ++ test "$(gdktarget)" != "x11" \ ++ && echo "Gtk+Tests:INFO: Skipping GUI tests for non-X11 target." ++ ++XVFB_START = \ ++ ${XVFB} -help 2>/dev/null 1>&2 \ ++ && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \ ++ && { ${XVFB} :$$XID -screen 0 800x600x16 -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \ ++ trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \ ++ || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ ++ && DISPLAY=:$$XID && export DISPLAY ++ ++@USE_QUARTZ_FALSE@GTK_PRINT_PREVIEW_COMMAND = "evince --unlink-tempfile --preview --print-settings %s %f" ++ ++# Makefile.am for gtk+/gtk ++@USE_QUARTZ_TRUE@GTK_PRINT_PREVIEW_COMMAND = "open -a /Applications/Preview.app %f" ++SUBDIRS = theme-bits . tests ++DIST_SUBDIRS = theme-bits tests ++@HAVE_CUPS_FALSE@@HAVE_PAPI_CUPS_FALSE@@HAVE_PAPI_FALSE@GTK_PRINT_BACKENDS = file,lpr ++@HAVE_CUPS_FALSE@@HAVE_PAPI_CUPS_FALSE@@HAVE_PAPI_TRUE@GTK_PRINT_BACKENDS = file,papi ++@HAVE_CUPS_TRUE@@HAVE_PAPI_CUPS_FALSE@GTK_PRINT_BACKENDS = file,cups ++@HAVE_PAPI_CUPS_TRUE@GTK_PRINT_BACKENDS = file,papi,cups ++INCLUDES = \ ++ -DG_LOG_DOMAIN=\"Gtk\" \ ++ -DGTK_LIBDIR=\"$(libdir)\" \ ++ -DGTK_DATADIR=\"$(datadir)\" \ ++ -DGTK_DATA_PREFIX=\"$(prefix)\" \ ++ -DGTK_SYSCONFDIR=\"$(sysconfdir)\" \ ++ -DGTK_VERSION=\"$(GTK_VERSION)\" \ ++ -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \ ++ -DGTK_HOST=\"$(host)\" \ ++ -DGTK_COMPILATION \ ++ -DGTK_PRINT_BACKENDS=\"$(GTK_PRINT_BACKENDS)\" \ ++ -DGTK_PRINT_PREVIEW_COMMAND=\"$(GTK_PRINT_PREVIEW_COMMAND)\" \ ++ -I$(top_builddir) \ ++ -I$(top_builddir)/gtk \ ++ -I$(top_srcdir) -I../gdk \ ++ -I$(top_srcdir)/gdk \ ++ -I$(top_srcdir)/gdk-pixbuf -I../gdk-pixbuf \ ++ -DGDK_DISABLE_DEPRECATED \ ++ -DMAEMO_CHANGES \ ++ -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED \ ++ -DGTK_DISABLE_DEPRECATED \ ++ -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED \ ++ -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ ++ $(GTK_DEBUG_FLAGS) \ ++ $(GTK_DEP_CFLAGS) \ ++ $(gtk_clipboard_dnd_c_sources_CFLAGS) \ ++ $(INCLUDED_IMMODULE_DEFINE) ++ ++gtarget = $(gdktarget) ++@PLATFORM_WIN32_TRUE@no_undefined = -no-undefined ++@OS_WIN32_TRUE@gtk_def = gtk.def ++@OS_WIN32_TRUE@gtk_win32_symbols = -export-symbols $(srcdir)/gtk.def ++@OS_WIN32_TRUE@gtk_win32_res = gtk-win32-res.o ++@OS_WIN32_TRUE@gtk_win32_res_ldflag = -Wl,gtk-win32-res.o ++@MS_LIB_AVAILABLE_TRUE@noinst_DATA = gtk-win32-$(GTK_API_VERSION).lib ++TESTS_ENVIRONMENT = srcdir="$(srcdir)" gtk_all_c_sources="$(gtk_all_c_sources)" ++TESTS = aliasfilescheck.sh $(am__append_1) ++libgtkincludedir = $(includedir)/gtk-2.0/gtk ++libadd = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) $(GTK_DEP_LIBS) \ ++ $(am__append_2) ++deps = $(am__append_3) ++ ++# libtool stuff: set version and export symbols for resolving ++# since automake doesn't support conditionalized libsomething_la_LDFLAGS ++# we use the general approach here ++libtool_opts = \ ++ -version-info $(LT_VERSION_INFO) \ ++ -export-dynamic $(no_undefined) $(LIBTOOL_EXPORT_OPTIONS) \ ++ -rpath $(libdir) $(libgtk_target_ldflags) + + +-@CROSS_COMPILING_TRUE@gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE) +-@CROSS_COMPILING_FALSE@gtk_update_icon_cache_program = \ +-@CROSS_COMPILING_FALSE@ GDK_PIXBUF_MODULE_FILE=$(top_builddir)/gdk-pixbuf/gdk-pixbuf.loaders \ +-@CROSS_COMPILING_FALSE@ ./gtk-update-icon-cache ++# ++# setup source file variables ++# + +-subdir = gtk +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = makefile.msc gtkversion.h gtk-win32.rc +-LTLIBRARIES = $(lib_LTLIBRARIES) ++# GTK+ header files for public installation (non-generated, or generated ++# by configure) + +-am__libgtk_directfb_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ +- gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ +- gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ +- gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ +- gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ +- gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ +- gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ +- gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ +- gtkcellrendereraccel.c gtkcellrenderercombo.c \ +- gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ +- gtkcellrendererspin.c gtkcellrenderertext.c \ +- gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ +- gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ +- gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ +- gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ +- gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ +- gtkeventbox.c gtkexpander.c gtkfilechooser.c \ +- gtkfilechooserbutton.c gtkfilechooserdefault.c \ +- gtkfilechooserdialog.c gtkfilechooserembed.c \ +- gtkfilechooserentry.c gtkfilechoosersettings.c \ +- gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ +- gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c gtkfontbutton.c \ +- gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c gtkhandlebox.c \ +- gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c \ +- gtkhscrollbar.c gtkhseparator.c gtkhsv.c gtkiconcache.c \ +- gtkiconcachevalidator.c gtkiconfactory.c gtkicontheme.c \ +- gtkiconview.c gtkimage.c gtkimagemenuitem.c gtkimcontext.c \ +- gtkimcontextsimple.c gtkimmodule.c gtkimmulticontext.c \ +- gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ +- gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ +- gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c gtkmenu.c \ +- gtkmenubar.c gtkmenuitem.c gtkmenushell.c gtkmenutoolbutton.c \ +- gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ +- gtkmountoperation.c gtknotebook.c gtkobject.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ +- gtkprintcontext.c gtkprintoperation.c \ +- gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ +- gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ +- gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +- gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ +- gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ +- gtkrecentchooserwidget.c gtkrecentchooserutils.c \ +- gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ +- gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ +- gtkscrolledwindow.c gtkselection.c gtkseparator.c \ +- gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ +- gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ +- gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c gtktable.c \ +- gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ +- gtktextbuffer.c gtktextbufferrichtext.c \ +- gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ +- gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ +- gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ +- gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ +- gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ +- gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ +- gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ +- gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ +- gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ +- gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ +- gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ +- gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ +- gtkwidget.c gtkwindow-decorate.c gtkwindow.c \ +- gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ +- gtkclipboard.c gtkdnd.c gtktext.c gtktree.c gtktreeitem.c \ +- gtkclist.c gtkcombo.c gtkctree.c gtkfilesel.c gtkitemfactory.c \ +- gtklist.c gtklistitem.c gtkoldeditable.c gtkoptionmenu.c \ +- gtkpixmap.c gtkpreview.c gtkprogress.c gtksignal.c \ +- gtktipsquery.c gtktooltips.c gtkcustompaperunixdialog.c \ +- gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ +- gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ +- gtkprintoperation-unix.c gtkprintunixdialog.c gtkprintbackend.c \ +- gtksearchenginebeagle.c gtksearchenginetracker.c \ +- gtkprint-win32.c gtkprintoperation-win32.c gtkplug-x11.c \ +- gtksocket-x11.c gtkxembed.c gtktrayicon-x11.c \ +- gtkmountoperation-x11.c gtkplug-win32.c gtksocket-win32.c \ +- gtkwin32embed.c gtkwin32embedwidget.c gtkmountoperation-stub.c \ +- gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c +-@USE_QUARTZ_TRUE@am__objects_1 = gtkclipboard-quartz.lo gtkdnd-quartz.lo \ +-@USE_QUARTZ_TRUE@ gtkquartz.lo +-@USE_QUARTZ_FALSE@am__objects_1 = gtkclipboard.lo gtkdnd.lo +-am__objects_2 = gtkquery.lo gtksearchengine.lo gtksearchenginesimple.lo \ +- fnmatch.lo gtkaboutdialog.lo gtkaccelgroup.lo gtkaccellabel.lo \ +- gtkaccelmap.lo gtkaccessible.lo gtkaction.lo gtkactiongroup.lo \ +- gtkactivatable.lo gtkadjustment.lo gtkalignment.lo gtkarrow.lo \ +- gtkaspectframe.lo gtkassistant.lo gtkbbox.lo gtkbin.lo \ +- gtkbindings.lo gtkbox.lo gtkbuildable.lo gtkbuilder.lo \ +- gtkbuilderparser.lo gtkbutton.lo gtkcalendar.lo \ +- gtkcelleditable.lo gtkcelllayout.lo gtkcellrenderer.lo \ +- gtkcellrendereraccel.lo gtkcellrenderercombo.lo \ +- gtkcellrendererpixbuf.lo gtkcellrendererprogress.lo \ +- gtkcellrendererspin.lo gtkcellrenderertext.lo \ +- gtkcellrenderertoggle.lo gtkcellview.lo gtkcheckbutton.lo \ +- gtkcheckmenuitem.lo gtkcolorbutton.lo gtkcolorsel.lo \ +- gtkcolorseldialog.lo gtkcombobox.lo gtkcomboboxentry.lo \ +- gtkcontainer.lo gtkcurve.lo gtkdialog.lo gtkdrawingarea.lo \ +- gtkeditable.lo gtkentry.lo gtkentrybuffer.lo \ +- gtkentrycompletion.lo gtkeventbox.lo gtkexpander.lo \ +- gtkfilechooser.lo gtkfilechooserbutton.lo \ +- gtkfilechooserdefault.lo gtkfilechooserdialog.lo \ +- gtkfilechooserembed.lo gtkfilechooserentry.lo \ +- gtkfilechoosersettings.lo gtkfilechooserutils.lo \ +- gtkfilechooserwidget.lo gtkfilefilter.lo gtkfilesystem.lo \ +- gtkfilesystemmodel.lo gtkfixed.lo gtkfontbutton.lo \ +- gtkfontsel.lo gtkframe.lo gtkgamma.lo gtkgc.lo gtkhandlebox.lo \ +- gtkhbbox.lo gtkhbox.lo gtkhpaned.lo gtkhruler.lo gtkhscale.lo \ +- gtkhscrollbar.lo gtkhseparator.lo gtkhsv.lo gtkiconcache.lo \ +- gtkiconcachevalidator.lo gtkiconfactory.lo gtkicontheme.lo \ +- gtkiconview.lo gtkimage.lo gtkimagemenuitem.lo gtkimcontext.lo \ +- gtkimcontextsimple.lo gtkimmodule.lo gtkimmulticontext.lo \ +- gtkinfobar.lo gtkinputdialog.lo gtkinvisible.lo gtkitem.lo \ +- gtkkeyhash.lo gtklabel.lo gtklayout.lo gtklinkbutton.lo \ +- gtkliststore.lo gtkmain.lo gtkmarshal.lo gtkmarshalers.lo \ +- gtkmenu.lo gtkmenubar.lo gtkmenuitem.lo gtkmenushell.lo \ +- gtkmenutoolbutton.lo gtkmessagedialog.lo gtkmisc.lo \ +- gtkmnemonichash.lo gtkmodules.lo gtkmountoperation.lo \ +- gtknotebook.lo gtkobject.lo gtkorientable.lo gtkpagesetup.lo \ +- gtkpaned.lo gtkpapersize.lo gtkpathbar.lo gtkplug.lo \ +- gtkprintcontext.lo gtkprintoperation.lo \ +- gtkprintoperationpreview.lo gtkprintsettings.lo \ +- gtkprintutils.lo gtkprogressbar.lo gtkradioaction.lo \ +- gtkradiobutton.lo gtkradiomenuitem.lo gtkradiotoolbutton.lo \ +- gtkrange.lo gtkrbtree.lo gtkrc.lo gtkrecentaction.lo \ +- gtkrecentchooserdefault.lo gtkrecentchooserdialog.lo \ +- gtkrecentchoosermenu.lo gtkrecentchooserwidget.lo \ +- gtkrecentchooserutils.lo gtkrecentchooser.lo gtkrecentfilter.lo \ +- gtkrecentmanager.lo gtkruler.lo gtkscale.lo gtkscalebutton.lo \ +- gtkscrollbar.lo gtkscrolledwindow.lo gtkselection.lo \ +- gtkseparator.lo gtkseparatormenuitem.lo gtkseparatortoolitem.lo \ +- gtksettings.lo gtksizegroup.lo gtkshow.lo gtksocket.lo \ +- gtkspinbutton.lo gtkstatusbar.lo gtkstatusicon.lo gtkstock.lo \ +- gtkstyle.lo gtktable.lo gtktearoffmenuitem.lo gtktestutils.lo \ +- gtktextbtree.lo gtktextbuffer.lo gtktextbufferrichtext.lo \ +- gtktextbufferserialize.lo gtktextchild.lo gtktextdisplay.lo \ +- gtktextiter.lo gtktextlayout.lo gtktextmark.lo \ +- gtktextsegment.lo gtktexttag.lo gtktexttagtable.lo \ +- gtktexttypes.lo gtktextutil.lo gtktextview.lo gtkthemes.lo \ +- gtktoggleaction.lo gtktogglebutton.lo gtktoggletoolbutton.lo \ +- gtktoolbar.lo gtktoolbutton.lo gtktoolitem.lo gtktoolshell.lo \ +- gtktooltip.lo gtktreedatalist.lo gtktreednd.lo gtktreemodel.lo \ +- gtktreemodelfilter.lo gtktreemodelsort.lo gtktreeselection.lo \ +- gtktreesortable.lo gtktreestore.lo gtktreeview.lo \ +- gtktreeviewcolumn.lo gtktypebuiltins.lo gtktypeutils.lo \ +- gtkuimanager.lo gtkvbbox.lo gtkvbox.lo gtkvolumebutton.lo \ +- gtkviewport.lo gtkvpaned.lo gtkvruler.lo gtkvscale.lo \ +- gtkvscrollbar.lo gtkvseparator.lo gtkwidget.lo \ +- gtkwindow-decorate.lo gtkwindow.lo $(am__objects_1) gtktext.lo \ +- gtktree.lo gtktreeitem.lo gtkclist.lo gtkcombo.lo gtkctree.lo \ +- gtkfilesel.lo gtkitemfactory.lo gtklist.lo gtklistitem.lo \ +- gtkoldeditable.lo gtkoptionmenu.lo gtkpixmap.lo gtkpreview.lo \ +- gtkprogress.lo gtksignal.lo gtktipsquery.lo gtktooltips.lo +-am__objects_3 = gtkcustompaperunixdialog.lo gtkpagesetupunixdialog.lo \ +- gtkprinter.lo gtkprinteroption.lo gtkprinteroptionset.lo \ +- gtkprinteroptionwidget.lo gtkprintjob.lo \ +- gtkprintoperation-unix.lo gtkprintunixdialog.lo \ +- gtkprintbackend.lo gtksearchenginebeagle.lo \ +- gtksearchenginetracker.lo +-@OS_UNIX_TRUE@am__objects_4 = $(am__objects_3) +-am__objects_5 = gtkprint-win32.lo gtkprintoperation-win32.lo +-@OS_WIN32_TRUE@am__objects_6 = $(am__objects_5) +-am__objects_7 = gtkplug-x11.lo gtksocket-x11.lo gtkxembed.lo \ +- gtktrayicon-x11.lo gtkmountoperation-x11.lo +-@USE_X11_TRUE@am__objects_8 = $(am__objects_7) +-am__objects_9 = gtkplug-win32.lo gtksocket-win32.lo gtkwin32embed.lo \ +- gtkwin32embedwidget.lo gtkmountoperation-stub.lo +-@USE_WIN32_TRUE@@USE_X11_FALSE@am__objects_10 = $(am__objects_9) +-am__objects_11 = gtksearchenginequartz.lo gtkplug-stub.lo \ +- gtksocket-stub.lo gtkmountoperation-stub.lo +-@USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__objects_12 = \ +-@USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@ $(am__objects_11) +-am__objects_13 = gtkplug-stub.lo gtksocket-stub.lo \ +- gtkmountoperation-stub.lo +-@USE_QUARTZ_FALSE@@USE_WIN32_FALSE@@USE_X11_FALSE@am__objects_14 = \ +-@USE_QUARTZ_FALSE@@USE_WIN32_FALSE@@USE_X11_FALSE@ $(am__objects_13) +-am__objects_15 = $(am__objects_2) $(am__objects_4) $(am__objects_6) \ +- $(am__objects_8) $(am__objects_10) $(am__objects_12) \ +- $(am__objects_14) +-am_libgtk_directfb_2_0_la_OBJECTS = $(am__objects_15) +-libgtk_directfb_2_0_la_OBJECTS = $(am_libgtk_directfb_2_0_la_OBJECTS) +-am__libgtk_quartz_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ +- gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ +- gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ +- gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ +- gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ +- gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ +- gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ +- gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ +- gtkcellrendereraccel.c gtkcellrenderercombo.c \ +- gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ +- gtkcellrendererspin.c gtkcellrenderertext.c \ +- gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ +- gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ +- gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ +- gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ +- gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ +- gtkeventbox.c gtkexpander.c gtkfilechooser.c \ +- gtkfilechooserbutton.c gtkfilechooserdefault.c \ +- gtkfilechooserdialog.c gtkfilechooserembed.c \ +- gtkfilechooserentry.c gtkfilechoosersettings.c \ +- gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ +- gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c gtkfontbutton.c \ +- gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c gtkhandlebox.c \ +- gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c \ +- gtkhscrollbar.c gtkhseparator.c gtkhsv.c gtkiconcache.c \ +- gtkiconcachevalidator.c gtkiconfactory.c gtkicontheme.c \ +- gtkiconview.c gtkimage.c gtkimagemenuitem.c gtkimcontext.c \ +- gtkimcontextsimple.c gtkimmodule.c gtkimmulticontext.c \ +- gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ +- gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ +- gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c gtkmenu.c \ +- gtkmenubar.c gtkmenuitem.c gtkmenushell.c gtkmenutoolbutton.c \ +- gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ +- gtkmountoperation.c gtknotebook.c gtkobject.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ +- gtkprintcontext.c gtkprintoperation.c \ +- gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ +- gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ +- gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +- gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ +- gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ +- gtkrecentchooserwidget.c gtkrecentchooserutils.c \ +- gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ +- gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ +- gtkscrolledwindow.c gtkselection.c gtkseparator.c \ +- gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ +- gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ +- gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c gtktable.c \ +- gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ +- gtktextbuffer.c gtktextbufferrichtext.c \ +- gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ +- gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ +- gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ +- gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ +- gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ +- gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ +- gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ +- gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ +- gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ +- gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ +- gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ +- gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ +- gtkwidget.c gtkwindow-decorate.c gtkwindow.c \ +- gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ +- gtkclipboard.c gtkdnd.c gtktext.c gtktree.c gtktreeitem.c \ +- gtkclist.c gtkcombo.c gtkctree.c gtkfilesel.c gtkitemfactory.c \ +- gtklist.c gtklistitem.c gtkoldeditable.c gtkoptionmenu.c \ +- gtkpixmap.c gtkpreview.c gtkprogress.c gtksignal.c \ +- gtktipsquery.c gtktooltips.c gtkcustompaperunixdialog.c \ +- gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ +- gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ +- gtkprintoperation-unix.c gtkprintunixdialog.c gtkprintbackend.c \ +- gtksearchenginebeagle.c gtksearchenginetracker.c \ +- gtkprint-win32.c gtkprintoperation-win32.c gtkplug-x11.c \ +- gtksocket-x11.c gtkxembed.c gtktrayicon-x11.c \ +- gtkmountoperation-x11.c gtkplug-win32.c gtksocket-win32.c \ +- gtkwin32embed.c gtkwin32embedwidget.c gtkmountoperation-stub.c \ +- gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c +-am_libgtk_quartz_2_0_la_OBJECTS = $(am__objects_15) +-libgtk_quartz_2_0_la_OBJECTS = $(am_libgtk_quartz_2_0_la_OBJECTS) +-am__libgtk_win32_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ +- gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ +- gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ +- gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ +- gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c \ +- gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c \ +- gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c \ +- gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c \ +- gtkcellrendereraccel.c gtkcellrenderercombo.c \ +- gtkcellrendererpixbuf.c gtkcellrendererprogress.c \ +- gtkcellrendererspin.c gtkcellrenderertext.c \ +- gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c \ +- gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c \ +- gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c \ +- gtkcontainer.c gtkcurve.c gtkdialog.c gtkdrawingarea.c \ +- gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c \ +- gtkeventbox.c gtkexpander.c gtkfilechooser.c \ +- gtkfilechooserbutton.c gtkfilechooserdefault.c \ +- gtkfilechooserdialog.c gtkfilechooserembed.c \ +- gtkfilechooserentry.c gtkfilechoosersettings.c \ +- gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ +- gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c gtkfontbutton.c \ +- gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c gtkhandlebox.c \ +- gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c \ +- gtkhscrollbar.c gtkhseparator.c gtkhsv.c gtkiconcache.c \ +- gtkiconcachevalidator.c gtkiconfactory.c gtkicontheme.c \ +- gtkiconview.c gtkimage.c gtkimagemenuitem.c gtkimcontext.c \ +- gtkimcontextsimple.c gtkimmodule.c gtkimmulticontext.c \ +- gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ +- gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ +- gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c gtkmenu.c \ +- gtkmenubar.c gtkmenuitem.c gtkmenushell.c gtkmenutoolbutton.c \ +- gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ +- gtkmountoperation.c gtknotebook.c gtkobject.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ +- gtkprintcontext.c gtkprintoperation.c \ +- gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ +- gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ +- gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +- gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c \ +- gtkrecentchooserdialog.c gtkrecentchoosermenu.c \ +- gtkrecentchooserwidget.c gtkrecentchooserutils.c \ +- gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c \ +- gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c \ +- gtkscrolledwindow.c gtkselection.c gtkseparator.c \ +- gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ +- gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ +- gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c gtktable.c \ +- gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ +- gtktextbuffer.c gtktextbufferrichtext.c \ +- gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ +- gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ +- gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c \ +- gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c \ +- gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c \ +- gtktoolitem.c gtktoolshell.c gtktooltip.c gtktreedatalist.c \ +- gtktreednd.c gtktreemodel.c gtktreemodelfilter.c \ +- gtktreemodelsort.c gtktreeselection.c gtktreesortable.c \ +- gtktreestore.c gtktreeview.c gtktreeviewcolumn.c \ +- gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c \ +- gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ +- gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ +- gtkwidget.c gtkwindow-decorate.c gtkwindow.c \ +- gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ +- gtkclipboard.c gtkdnd.c gtktext.c gtktree.c gtktreeitem.c \ +- gtkclist.c gtkcombo.c gtkctree.c gtkfilesel.c gtkitemfactory.c \ +- gtklist.c gtklistitem.c gtkoldeditable.c gtkoptionmenu.c \ +- gtkpixmap.c gtkpreview.c gtkprogress.c gtksignal.c \ +- gtktipsquery.c gtktooltips.c gtkcustompaperunixdialog.c \ +- gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ +- gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ +- gtkprintoperation-unix.c gtkprintunixdialog.c gtkprintbackend.c \ +- gtksearchenginebeagle.c gtksearchenginetracker.c \ +- gtkprint-win32.c gtkprintoperation-win32.c gtkplug-x11.c \ +- gtksocket-x11.c gtkxembed.c gtktrayicon-x11.c \ +- gtkmountoperation-x11.c gtkplug-win32.c gtksocket-win32.c \ +- gtkwin32embed.c gtkwin32embedwidget.c gtkmountoperation-stub.c \ +- gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c +-am_libgtk_win32_2_0_la_OBJECTS = $(am__objects_15) +-libgtk_win32_2_0_la_OBJECTS = $(am_libgtk_win32_2_0_la_OBJECTS) +-am__libgtk_x11_2_0_la_SOURCES_DIST = gtkquery.c gtksearchengine.c \ ++# Broken ++ ++# Deprecated ++gtk_public_h_sources = gtk.h gtkaboutdialog.h gtkaccelgroup.h \ ++ gtkaccellabel.h gtkaccelmap.h gtkaccessible.h gtkaction.h \ ++ gtkactiongroup.h gtkactivatable.h gtkadjustment.h \ ++ gtkalignment.h gtkarrow.h gtkaspectframe.h gtkassistant.h \ ++ gtkbbox.h gtkbin.h gtkbindings.h gtkbox.h gtkbuilder.h \ ++ gtkbuildable.h gtkbutton.h gtkcalendar.h gtkcelleditable.h \ ++ gtkcelllayout.h gtkcellrenderer.h gtkcellrendereraccel.h \ ++ gtkcellrenderercombo.h gtkcellrendererpixbuf.h \ ++ gtkcellrendererprogress.h gtkcellrendererspin.h \ ++ gtkcellrenderertext.h gtkcellrenderertoggle.h gtkcellview.h \ ++ gtkcheckbutton.h gtkcheckmenuitem.h gtkclipboard.h \ ++ gtkcolorbutton.h gtkcolorsel.h gtkcolorseldialog.h \ ++ gtkcombobox.h gtkcomboboxentry.h gtkcontainer.h gtkcurve.h \ ++ gtkdebug.h gtkdialog.h gtkdnd.h gtkdrawingarea.h gtkeditable.h \ ++ gtkentry.h gtkentrybuffer.h gtkentrycompletion.h gtkenums.h \ ++ gtkeventbox.h gtkexpander.h gtkfilechooser.h \ ++ gtkfilechooserbutton.h gtkfilechooserdialog.h \ ++ gtkfilechooserwidget.h gtkfilefilter.h gtkfixed.h \ ++ gtkfontbutton.h gtkfontsel.h gtkframe.h gtkgamma.h gtkgc.h \ ++ gtkhandlebox.h gtkhbbox.h gtkhbox.h gtkhpaned.h gtkhruler.h \ ++ gtkhscale.h gtkhscrollbar.h gtkhseparator.h gtkhsv.h \ ++ gtkiconfactory.h gtkicontheme.h gtkiconview.h gtkimage.h \ ++ gtkimagemenuitem.h gtkimcontext.h gtkimcontextsimple.h \ ++ gtkimmodule.h gtkimmulticontext.h gtkinfobar.h \ ++ gtkinputdialog.h gtkinvisible.h gtkitem.h gtklabel.h \ ++ gtklayout.h gtklinkbutton.h gtkliststore.h gtkmain.h gtkmenu.h \ ++ gtkmenubar.h gtkmenuitem.h gtkmenushell.h gtkmenutoolbutton.h \ ++ gtkmessagedialog.h gtkmisc.h gtkmodules.h gtkmountoperation.h \ ++ gtknotebook.h gtkobject.h gtkorientable.h gtkpagesetup.h \ ++ gtkpaned.h gtkpapersize.h gtkplug.h gtkprintcontext.h \ ++ gtkprintoperation.h gtkprintoperationpreview.h \ ++ gtkprintsettings.h gtkprivate.h gtkprogressbar.h \ ++ gtkradioaction.h gtkradiobutton.h gtkradiomenuitem.h \ ++ gtkradiotoolbutton.h gtkrange.h gtkrc.h gtkrecentaction.h \ ++ gtkrecentchooser.h gtkrecentchooserdialog.h \ ++ gtkrecentchoosermenu.h gtkrecentchooserwidget.h \ ++ gtkrecentfilter.h gtkrecentmanager.h gtkruler.h gtkscale.h \ ++ gtkscalebutton.h gtkscrollbar.h gtkscrolledwindow.h \ ++ gtkselection.h gtkseparator.h gtkseparatormenuitem.h \ ++ gtkseparatortoolitem.h gtkshow.h gtksettings.h gtksizegroup.h \ ++ gtksocket.h gtkspinbutton.h gtkstatusbar.h gtkstatusicon.h \ ++ gtkstock.h gtkstyle.h gtktable.h gtktearoffmenuitem.h \ ++ gtktestutils.h gtktextbuffer.h gtktextbufferrichtext.h \ ++ gtktextchild.h gtktextdisplay.h gtktextiter.h gtktextmark.h \ ++ gtktexttag.h gtktexttagtable.h gtktextview.h gtktoggleaction.h \ ++ gtktogglebutton.h gtktoggletoolbutton.h gtktoolbar.h \ ++ gtktoolbutton.h gtktoolitem.h gtktoolshell.h gtktooltip.h \ ++ gtktreednd.h gtktreemodel.h gtktreemodelfilter.h \ ++ gtktreemodelsort.h gtktreeselection.h gtktreesortable.h \ ++ gtktreestore.h gtktreeview.h gtktreeviewcolumn.h \ ++ gtktypeutils.h gtkuimanager.h gtkvbbox.h gtkvbox.h \ ++ gtkviewport.h gtkvolumebutton.h gtkvpaned.h gtkvruler.h \ ++ gtkvscale.h gtkvscrollbar.h gtkvseparator.h gtkwidget.h \ ++ gtkwindow.h gtktext.h gtktree.h gtktreeitem.h gtkclist.h \ ++ gtkcombo.h gtkctree.h gtkfilesel.h gtkitemfactory.h gtklist.h \ ++ gtklistitem.h gtkoldeditable.h gtkoptionmenu.h gtkpixmap.h \ ++ gtkpreview.h gtkprogress.h gtksignal.h gtktipsquery.h \ ++ gtktooltips.h ++@OS_UNIX_TRUE@gtk_unix_print_public_h_sources = \ ++@OS_UNIX_TRUE@ gtkpagesetupunixdialog.h \ ++@OS_UNIX_TRUE@ gtkprintunixdialog.h \ ++@OS_UNIX_TRUE@ gtkprinter.h \ ++@OS_UNIX_TRUE@ gtkprintjob.h \ ++@OS_UNIX_TRUE@ gtkunixprint.h ++ ++ ++# Installed header files without compatibility guarantees ++# that are not included in gtk/gtk.h ++gtk_semi_private_h_sources = \ ++ gtktextlayout.h \ ++ gtkfilesystem.h \ ++ gtkfilesystemmodel.h \ ++ gtkfilechooserprivate.h \ ++ gtkfilechooserutils.h \ ++ gtkquery.h \ ++ gtksearchengine.h ++ ++ ++# GTK+ header files that don't get installed ++gtk_private_h_sources = gtksearchenginesimple.h gtkdndcursors.h \ ++ gtkentryprivate.h gtkbuilderprivate.h \ ++ gtkcustompaperunixdialog.h gtkfilechooserdefault.h \ ++ gtkfilechooserembed.h gtkfilechooserentry.h \ ++ gtkfilechoosersettings.h gtkiconcache.h gtkintl.h gtkkeyhash.h \ ++ gtkmnemonichash.h gtkmountoperationprivate.h gtkpathbar.h \ ++ gtkplugprivate.h gtkprintoperation-private.h gtkprintutils.h \ ++ gtkrbtree.h gtkrecentchooserdefault.h \ ++ gtkrecentchooserprivate.h gtkrecentchooserutils.h \ ++ gtksocketprivate.h gtktextbtree.h gtktextbufferserialize.h \ ++ gtktextchildprivate.h gtktextiterprivate.h \ ++ gtktextmarkprivate.h gtktextsegment.h gtktexttagprivate.h \ ++ gtktexttypes.h gtktextutil.h gtkthemes.h \ ++ gtktoggleactionprivate.h gtktreedatalist.h gtktreeprivate.h \ ++ gtkwindow-decorate.h $(gtk_clipboard_dnd_h_sources) \ ++ $(am__append_4) $(am__append_6) $(am__append_8) \ ++ $(am__append_10) $(am__append_12) ++ ++# GTK+ C sources to build the library from ++gtk_base_c_sources = gtkquery.c gtksearchengine.c \ + gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c \ + gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c \ + gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c \ +@@ -1868,20 +1117,21 @@ + gtkfilechooserdialog.c gtkfilechooserembed.c \ + gtkfilechooserentry.c gtkfilechoosersettings.c \ + gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c \ +- gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c gtkfontbutton.c \ +- gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c gtkhandlebox.c \ +- gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c \ +- gtkhscrollbar.c gtkhseparator.c gtkhsv.c gtkiconcache.c \ +- gtkiconcachevalidator.c gtkiconfactory.c gtkicontheme.c \ +- gtkiconview.c gtkimage.c gtkimagemenuitem.c gtkimcontext.c \ +- gtkimcontextsimple.c gtkimmodule.c gtkimmulticontext.c \ +- gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ +- gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ +- gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c gtkmenu.c \ +- gtkmenubar.c gtkmenuitem.c gtkmenushell.c gtkmenutoolbutton.c \ +- gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ +- gtkmountoperation.c gtknotebook.c gtkobject.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c \ ++ gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c \ ++ gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c \ ++ gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c \ ++ gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c \ ++ gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c \ ++ gtkimcontext.c gtkimcontextsimple.c gtkimmodule.c \ ++ gtkimmulticontext.c gtkinfobar.c gtkinputdialog.c \ ++ gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c \ ++ gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c \ ++ gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c \ ++ gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c \ ++ gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ ++ gtknotebook.c gtkobject.c gtkorientable.c gtkpagesetup.c \ ++ gtkpaned.c gtkpapersize.c gtkpathbar.c gtkplug.c \ + gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ +@@ -1894,8 +1144,8 @@ + gtkscrolledwindow.c gtkselection.c gtkseparator.c \ + gtkseparatormenuitem.c gtkseparatortoolitem.c gtksettings.c \ + gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c \ +- gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c gtktable.c \ +- gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ ++ gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c \ ++ gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c \ + gtktextbuffer.c gtktextbufferrichtext.c \ + gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c \ + gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c \ +@@ -1910,424 +1160,586 @@ + gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c \ + gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c \ + gtkwidget.c gtkwindow-decorate.c gtkwindow.c \ +- gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c \ +- gtkclipboard.c gtkdnd.c gtktext.c gtktree.c gtktreeitem.c \ +- gtkclist.c gtkcombo.c gtkctree.c gtkfilesel.c gtkitemfactory.c \ +- gtklist.c gtklistitem.c gtkoldeditable.c gtkoptionmenu.c \ +- gtkpixmap.c gtkpreview.c gtkprogress.c gtksignal.c \ +- gtktipsquery.c gtktooltips.c gtkcustompaperunixdialog.c \ +- gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c \ +- gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c \ +- gtkprintoperation-unix.c gtkprintunixdialog.c gtkprintbackend.c \ +- gtksearchenginebeagle.c gtksearchenginetracker.c \ +- gtkprint-win32.c gtkprintoperation-win32.c gtkplug-x11.c \ +- gtksocket-x11.c gtkxembed.c gtktrayicon-x11.c \ +- gtkmountoperation-x11.c gtkplug-win32.c gtksocket-win32.c \ +- gtkwin32embed.c gtkwin32embedwidget.c gtkmountoperation-stub.c \ +- gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c +-am_libgtk_x11_2_0_la_OBJECTS = $(am__objects_15) +-libgtk_x11_2_0_la_OBJECTS = $(am_libgtk_x11_2_0_la_OBJECTS) +-bin_PROGRAMS = gtk-query-immodules-2.0$(EXEEXT) \ +- gtk-update-icon-cache$(EXEEXT) +-PROGRAMS = $(bin_PROGRAMS) ++ $(gtk_clipboard_dnd_c_sources) gtktext.c gtktree.c \ ++ gtktreeitem.c gtkclist.c gtkcombo.c gtkctree.c gtkfilesel.c \ ++ gtkitemfactory.c gtklist.c gtklistitem.c gtkoldeditable.c \ ++ gtkoptionmenu.c gtkpixmap.c gtkpreview.c gtkprogress.c \ ++ gtksignal.c gtktipsquery.c gtktooltips.c ++gtk_c_sources = $(gtk_base_c_sources) $(am__append_5) $(am__append_7) \ ++ $(am__append_9) $(am__append_11) $(am__append_13) \ ++ $(am__append_14) ++gtk_all_c_sources = $(gtk_base_c_sources) $(gtk_os_unix_c_sources) \ ++ $(gtk_os_win32_c_sources) $(gtk_use_x11_c_sources) \ ++ $(gtk_use_win32_c_sources) $(gtk_use_quartz_c_sources) \ ++ $(gtk_use_stub_c_sources) ++gtk_os_unix_c_sources = \ ++ gtkcustompaperunixdialog.c \ ++ gtkpagesetupunixdialog.c \ ++ gtkprinter.c \ ++ gtkprinteroption.c \ ++ gtkprinteroptionset.c \ ++ gtkprinteroptionwidget.c \ ++ gtkprintjob.c \ ++ gtkprintoperation-unix.c \ ++ gtkprintunixdialog.c \ ++ gtkprintbackend.c \ ++ gtksearchenginebeagle.c \ ++ gtksearchenginetracker.c + +-am_gtk_query_immodules_2_0_OBJECTS = queryimmodules.$(OBJEXT) +-gtk_query_immodules_2_0_OBJECTS = $(am_gtk_query_immodules_2_0_OBJECTS) +-gtk_query_immodules_2_0_LDFLAGS = +-am_gtk_update_icon_cache_OBJECTS = updateiconcache.$(OBJEXT) +-gtk_update_icon_cache_OBJECTS = $(am_gtk_update_icon_cache_OBJECTS) +-gtk_update_icon_cache_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-gtk_update_icon_cache_LDFLAGS = +-SCRIPTS = $(bin_SCRIPTS) ++gtk_os_win32_c_sources = \ ++ gtkprint-win32.c \ ++ gtkprintoperation-win32.c + ++gtk_use_x11_c_sources = \ ++ gtkplug-x11.c \ ++ gtksocket-x11.c \ ++ gtkxembed.c \ ++ gtktrayicon-x11.c \ ++ gtkmountoperation-x11.c + +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/fnmatch.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaboutdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaccelgroup.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaccellabel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaccelmap.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaccessible.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaction.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkactiongroup.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkactivatable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkadjustment.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkalignment.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkarrow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkaspectframe.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkassistant.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbbox.Plo ./$(DEPDIR)/gtkbin.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbindings.Plo ./$(DEPDIR)/gtkbox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbuildable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbuilder.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbuilderparser.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcalendar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcelleditable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcelllayout.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrenderer.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrendereraccel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrenderercombo.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrendererpixbuf.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrendererprogress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrendererspin.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrenderertext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellrenderertoggle.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcellview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcheckbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcheckmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkclipboard-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkclipboard.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkclist.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcolorbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcolorsel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcolorseldialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcombo.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcombobox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcomboboxentry.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcontainer.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkctree.Plo ./$(DEPDIR)/gtkcurve.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkcustompaperunixdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkdnd-quartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkdnd.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkdrawingarea.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkeditable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkentry.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkentrybuffer.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkentrycompletion.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkeventbox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkexpander.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooser.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserdefault.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserembed.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserentry.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechoosersettings.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilechooserwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilefilter.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilesel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilesystem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfilesystemmodel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfixed.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfontbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkfontsel.Plo ./$(DEPDIR)/gtkframe.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkgamma.Plo ./$(DEPDIR)/gtkgc.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhandlebox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhbbox.Plo ./$(DEPDIR)/gtkhbox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhpaned.Plo ./$(DEPDIR)/gtkhruler.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhscale.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhscrollbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhseparator.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkhsv.Plo ./$(DEPDIR)/gtkiconcache.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkiconcachevalidator.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkiconfactory.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkicontheme.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkiconview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimage.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimagemenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimcontext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimcontextsimple.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimmodule.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimmulticontext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkinfobar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkinputdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkinvisible.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkitemfactory.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkkeyhash.Plo ./$(DEPDIR)/gtklabel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtklayout.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtklinkbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtklist.Plo ./$(DEPDIR)/gtklistitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkliststore.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmain.Plo ./$(DEPDIR)/gtkmarshal.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmarshalers.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmenu.Plo ./$(DEPDIR)/gtkmenubar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmenushell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmenutoolbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmessagedialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmisc.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmnemonichash.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmodules.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmountoperation-stub.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmountoperation-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkmountoperation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtknotebook.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkobject.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkoldeditable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkoptionmenu.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkorientable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpagesetup.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpagesetupunixdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpaned.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpapersize.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpathbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpixmap.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkplug-stub.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkplug-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkplug-x11.Plo ./$(DEPDIR)/gtkplug.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkpreview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprint-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintbackend.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintcontext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprinter.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprinteroption.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprinteroptionset.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprinteroptionwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintjob.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintoperation-unix.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintoperation-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintoperation.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintoperationpreview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintsettings.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintunixdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprogress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprogressbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkquartz.Plo ./$(DEPDIR)/gtkquery.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkradioaction.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkradiobutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkradiomenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkradiotoolbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrange.Plo ./$(DEPDIR)/gtkrbtree.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrc.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentaction.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchooser.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchooserdefault.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchooserdialog.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchoosermenu.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchooserutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentchooserwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentfilter.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkrecentmanager.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkruler.Plo ./$(DEPDIR)/gtkscale.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkscalebutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkscrollbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkscrolledwindow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksearchengine.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksearchenginebeagle.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksearchenginequartz.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksearchenginesimple.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksearchenginetracker.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkselection.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkseparator.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkseparatormenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkseparatortoolitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksettings.Plo ./$(DEPDIR)/gtkshow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksignal.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksizegroup.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksocket-stub.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksocket-win32.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksocket-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtksocket.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkspinbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkstatusbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkstatusicon.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkstock.Plo ./$(DEPDIR)/gtkstyle.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktearoffmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktestutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextbtree.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextbuffer.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextbufferrichtext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextbufferserialize.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextchild.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextdisplay.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextiter.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextlayout.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextmark.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextsegment.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktexttag.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktexttagtable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktexttypes.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextutil.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktextview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkthemes.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktipsquery.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoggleaction.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktogglebutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoggletoolbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoolbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoolbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoolitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktoolshell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktooltip.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktooltips.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktrayicon-x11.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktree.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreedatalist.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreednd.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreeitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreemodel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreemodelfilter.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreemodelsort.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreeselection.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreesortable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreestore.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreeview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktreeviewcolumn.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktypebuiltins.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtktypeutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkuimanager.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvbbox.Plo ./$(DEPDIR)/gtkvbox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkviewport.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvolumebutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvpaned.Plo ./$(DEPDIR)/gtkvruler.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvscale.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvscrollbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkvseparator.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwin32embed.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwin32embedwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwindow-decorate.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwindow.Plo ./$(DEPDIR)/gtkxembed.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/queryimmodules.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/updateiconcache.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__libgtk_directfb_2_0_la_SOURCES_DIST) \ +- $(am__libgtk_quartz_2_0_la_SOURCES_DIST) \ +- $(am__libgtk_win32_2_0_la_SOURCES_DIST) \ +- $(am__libgtk_x11_2_0_la_SOURCES_DIST) \ +- $(gtk_query_immodules_2_0_SOURCES) \ +- $(gtk_update_icon_cache_SOURCES) +-DATA = $(noinst_DATA) ++gtk_use_win32_c_sources = \ ++ gtkplug-win32.c \ ++ gtksocket-win32.c \ ++ gtkwin32embed.c \ ++ gtkwin32embedwidget.c \ ++ gtkmountoperation-stub.c + +-HEADERS = $(gtkinclude_HEADERS) $(gtkunixprintinclude_HEADERS) ++gtk_use_quartz_c_sources = \ ++ gtksearchenginequartz.c \ ++ gtkplug-stub.c \ ++ gtksocket-stub.c \ ++ gtkmountoperation-stub.c ++ ++gtk_use_stub_c_sources = \ ++ gtkplug-stub.c \ ++ gtksocket-stub.c \ ++ gtkmountoperation-stub.c ++ ++@USE_QUARTZ_TRUE@@USE_WIN32_FALSE@@USE_X11_FALSE@gtk_use_quartz_c_sources_CFLAGS = "-xobjective-c" ++@USE_QUARTZ_FALSE@gtk_clipboard_dnd_c_sources = gtkclipboard.c gtkdnd.c ++@USE_QUARTZ_TRUE@gtk_clipboard_dnd_c_sources = gtkclipboard-quartz.c gtkdnd-quartz.c gtkquartz.c ++@USE_QUARTZ_TRUE@gtk_clipboard_dnd_h_sources = gtkquartz.h ++@USE_QUARTZ_FALSE@gtk_clipboard_dnd_c_sources_CFLAGS = ++@USE_QUARTZ_TRUE@gtk_clipboard_dnd_c_sources_CFLAGS = "-xobjective-c" ++ ++# we use our own built_sources variable rules to avoid automake's ++# BUILT_SOURCES oddities ++# we generate frequently rebuild files piggyback on a stamp file, so sources ++# depending on them only get rebuild when the built source actually changed ++# content ++ ++# built sources that get installed with the header files ++gtk_built_public_sources = \ ++ gtkmarshal.h \ ++ gtktypebuiltins.h ++ ++ ++# built headers that don't get installed ++gtk_built_private_headers = \ ++ gtkalias.h \ ++ gtkmarshalers.h \ ++ gtkbuiltincache.h \ ++ gtkimcontextsimpleseqs.h ++ ++gtk_built_sources = \ ++ gtkaliasdef.c \ ++ gtktypebuiltins.c \ ++ gtktypefuncs.c \ ++ gtkmarshalers.c \ ++ gtkmarshal.c \ ++ ${gtk_built_private_headers} \ ++ ${gtk_built_public_sources} ++ ++stamp_files = \ ++ stamp-gtkmarshalers.h \ ++ stamp-gtkmarshal.h \ ++ stamp-gtktypebuiltins.h \ ++ stamp-icons ++ ++ ++# non-header sources (headers should be specified in the above variables) ++# that don't serve as direct make target sources, i.e. they don't have ++# their own .lo rules and don't get publically installed ++gtk_extra_sources = \ ++ paper_names.c \ ++ paper_names_offsets.c \ ++ gen-paper-names.c \ ++ gtkstatusicon-quartz.c \ ++ gtk.symbols \ ++ gtkversion.h.in \ ++ gtkmarshalers.list \ ++ gtkmarshal.list ++ ++ ++# ++# setup GTK+ sources and their dependencies ++# ++MAINTAINERCLEANFILES = $(gtk_built_sources) $(stamp_files) $(GENERATED_ICONS) stock-icons/icon-theme.cache ++EXTRA_HEADERS = ++ ++# ++# rules to generate built sources ++# ++# setup autogeneration dependencies ++gen_sources = xgen-gdef xgen-gtbh xgen-gtic xgen-gmh xgen-gmc xgen-gmlh xgen-gmlc xgen-gtfsrc.c xgen-gtf ++CLEANFILES = $(gen_sources) ++BUILT_SOURCES = $(gtk_built_sources) ++ ++# target platform: ++lib_LTLIBRARIES = $(gtktargetlib) ++gtkincludedir = $(includedir)/gtk-2.0/gtk ++gtkinclude_HEADERS = $(gtk_public_h_sources) $(gtk_semi_private_h_sources) $(gtk_built_public_sources) gtkversion.h ++gtkunixprintincludedir = $(includedir)/gtk-unix-print-2.0/gtk ++gtkunixprintinclude_HEADERS = $(gtk_unix_print_public_h_sources) ++libgtk_x11_2_0_la_SOURCES = $(gtk_c_sources) ++libgtk_win32_2_0_la_SOURCES = $(gtk_c_sources) ++libgtk_quartz_2_0_la_SOURCES = $(gtk_c_sources) ++libgtk_directfb_2_0_la_SOURCES = $(gtk_c_sources) ++libgtk_x11_2_0_la_LDFLAGS = $(libtool_opts) ++libgtk_win32_2_0_la_LDFLAGS = $(libtool_opts) -Wl,-luuid ++libgtk_quartz_2_0_la_LDFLAGS = $(libtool_opts) ++libgtk_directfb_2_0_la_LDFLAGS = $(libtool_opts) ++libgtk_x11_2_0_la_LIBADD = $(libadd) ++libgtk_win32_2_0_la_LIBADD = $(libadd) -lole32 -lgdi32 -lcomdlg32 -lwinspool -lcomctl32 ++libgtk_quartz_2_0_la_LIBADD = $(libadd) ++libgtk_directfb_2_0_la_LIBADD = $(libadd) ++libgtk_x11_2_0_la_DEPENDENCIES = $(deps) ++libgtk_win32_2_0_la_DEPENDENCIES = $(gtk_def) $(gtk_win32_res) $(deps) ++libgtk_quartz_2_0_la_DEPENDENCIES = $(deps) ++libgtk_directfb_2_0_la_DEPENDENCIES = $(deps) ++@USE_WIN32_TRUE@libgtk_target_ldflags = $(gtk_win32_res_ldflag) $(gtk_win32_symbols) ++EXTRA_LTLIBRARIES = libgtk-x11-2.0.la libgtk-win32-2.0.la libgtk-quartz-2.0.la libgtk-directfb-2.0.la ++DEPS = $(gtktargetlib) $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la $(top_builddir)/gdk/$(gdktargetlib) ++TEST_DEPS = $(DEPS) gtk.immodules ++LDADDS = \ ++ $(gtktargetlib) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) ++ ++bin_SCRIPTS = gtk-builder-convert ++gtk_query_immodules_2_0_DEPENDENCIES = $(DEPS) ++gtk_query_immodules_2_0_LDADD = $(LDADDS) ++gtk_query_immodules_2_0_SOURCES = queryimmodules.c ++gtk_update_icon_cache_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++gtk_update_icon_cache_SOURCES = \ ++ updateiconcache.c ++ ++STOCK_ICONS = \ ++ stock-icons/16/document-open-recent.png \ ++ stock-icons/16/gtk-about.png \ ++ stock-icons/16/gtk-add.png \ ++ stock-icons/16/gtk-cdrom.png \ ++ stock-icons/16/gtk-close.png \ ++ stock-icons/16/gtk-connect.png \ ++ stock-icons/16/gtk-convert.png \ ++ stock-icons/16/gtk-copy.png \ ++ stock-icons/16/gtk-cut.png \ ++ stock-icons/16/gtk-delete.png \ ++ stock-icons/16/gtk-directory.png \ ++ stock-icons/16/gtk-disconnect.png \ ++ stock-icons/16/gtk-edit.png \ ++ stock-icons/16/gtk-execute.png \ ++ stock-icons/16/gtk-file.png \ ++ stock-icons/16/gtk-find-and-replace.png \ ++ stock-icons/16/gtk-find.png \ ++ stock-icons/16/gtk-floppy.png \ ++ stock-icons/16/gtk-fullscreen.png \ ++ stock-icons/16/gtk-go-back-ltr.png \ ++ stock-icons/16/gtk-go-down.png \ ++ stock-icons/16/gtk-go-forward-ltr.png \ ++ stock-icons/16/gtk-goto-bottom.png \ ++ stock-icons/16/gtk-goto-first-ltr.png \ ++ stock-icons/16/gtk-goto-last-ltr.png \ ++ stock-icons/16/gtk-goto-top.png \ ++ stock-icons/16/gtk-go-up.png \ ++ stock-icons/16/gtk-harddisk.png \ ++ stock-icons/16/gtk-help.png \ ++ stock-icons/16/gtk-home.png \ ++ stock-icons/16/gtk-indent-ltr.png \ ++ stock-icons/16/gtk-indent-rtl.png \ ++ stock-icons/16/gtk-index.png \ ++ stock-icons/16/gtk-info.png \ ++ stock-icons/16/gtk-jump-to-ltr.png \ ++ stock-icons/16/gtk-jump-to-rtl.png \ ++ stock-icons/16/gtk-justify-center.png \ ++ stock-icons/16/gtk-justify-fill.png \ ++ stock-icons/16/gtk-justify-left.png \ ++ stock-icons/16/gtk-justify-right.png \ ++ stock-icons/16/gtk-leave-fullscreen.png \ ++ stock-icons/16/gtk-media-forward-ltr.png \ ++ stock-icons/16/gtk-media-next-ltr.png \ ++ stock-icons/16/gtk-media-pause.png \ ++ stock-icons/16/gtk-media-play-ltr.png \ ++ stock-icons/16/gtk-media-play-rtl.png \ ++ stock-icons/16/gtk-media-previous-ltr.png \ ++ stock-icons/16/gtk-media-record.png \ ++ stock-icons/16/gtk-media-rewind-ltr.png \ ++ stock-icons/16/gtk-media-stop.png \ ++ stock-icons/16/gtk-missing-image.png \ ++ stock-icons/16/gtk-network.png \ ++ stock-icons/16/gtk-new.png \ ++ stock-icons/16/gtk-open.png \ ++ stock-icons/16/gtk-page-setup.png \ ++ stock-icons/16/gtk-paste.png \ ++ stock-icons/16/gtk-preferences.png \ ++ stock-icons/16/gtk-print.png \ ++ stock-icons/16/gtk-print-error.png \ ++ stock-icons/16/gtk-print-paused.png \ ++ stock-icons/16/gtk-print-preview.png \ ++ stock-icons/16/gtk-print-report.png \ ++ stock-icons/16/gtk-print-warning.png \ ++ stock-icons/16/gtk-properties.png \ ++ stock-icons/16/gtk-quit.png \ ++ stock-icons/16/gtk-redo-ltr.png \ ++ stock-icons/16/gtk-redo-rtl.png \ ++ stock-icons/16/gtk-refresh.png \ ++ stock-icons/16/gtk-remove.png \ ++ stock-icons/16/gtk-revert-to-saved-ltr.png \ ++ stock-icons/16/gtk-revert-to-saved-rtl.png \ ++ stock-icons/16/gtk-save-as.png \ ++ stock-icons/16/gtk-select-all.png \ ++ stock-icons/16/gtk-select-color.png \ ++ stock-icons/16/gtk-select-font.png \ ++ stock-icons/16/gtk-sort-ascending.png \ ++ stock-icons/16/gtk-sort-descending.png \ ++ stock-icons/16/gtk-spell-check.png \ ++ stock-icons/16/gtk-stop.png \ ++ stock-icons/16/gtk-strikethrough.png \ ++ stock-icons/16/gtk-font.png \ ++ stock-icons/16/gtk-undelete-ltr.png \ ++ stock-icons/16/gtk-undelete-rtl.png \ ++ stock-icons/16/gtk-underline.png \ ++ stock-icons/16/gtk-undo-ltr.png \ ++ stock-icons/16/gtk-undo-rtl.png \ ++ stock-icons/16/gtk-unindent-ltr.png \ ++ stock-icons/16/gtk-unindent-rtl.png \ ++ stock-icons/16/gtk-zoom-100.png \ ++ stock-icons/16/gtk-zoom-fit.png \ ++ stock-icons/16/gtk-zoom-in.png \ ++ stock-icons/16/gtk-zoom-out.png \ ++ stock-icons/16/gtk-italic.png \ ++ stock-icons/16/gtk-bold.png \ ++ stock-icons/20/gtk-apply.png \ ++ stock-icons/20/gtk-cancel.png \ ++ stock-icons/20/gtk-close.png \ ++ stock-icons/20/gtk-no.png \ ++ stock-icons/20/gtk-ok.png \ ++ stock-icons/20/gtk-yes.png \ ++ stock-icons/24/audio-volume-high.png \ ++ stock-icons/24/audio-volume-low.png \ ++ stock-icons/24/audio-volume-medium.png \ ++ stock-icons/24/audio-volume-muted.png \ ++ stock-icons/24/document-open-recent.png \ ++ stock-icons/24/gtk-about.png \ ++ stock-icons/24/gtk-add.png \ ++ stock-icons/24/gtk-bold.png \ ++ stock-icons/24/gtk-cdrom.png \ ++ stock-icons/24/gtk-clear.png \ ++ stock-icons/24/gtk-close.png \ ++ stock-icons/24/gtk-color-picker.png \ ++ stock-icons/24/gtk-connect.png \ ++ stock-icons/24/gtk-convert.png \ ++ stock-icons/24/gtk-copy.png \ ++ stock-icons/24/gtk-cut.png \ ++ stock-icons/24/gtk-directory.png \ ++ stock-icons/24/gtk-disconnect.png \ ++ stock-icons/24/gtk-edit.png \ ++ stock-icons/24/gtk-execute.png \ ++ stock-icons/24/gtk-file.png \ ++ stock-icons/24/gtk-find-and-replace.png \ ++ stock-icons/24/gtk-find.png \ ++ stock-icons/24/gtk-font.png \ ++ stock-icons/24/gtk-fullscreen.png \ ++ stock-icons/24/gtk-go-back-ltr.png \ ++ stock-icons/24/gtk-goto-top.png \ ++ stock-icons/24/gtk-go-down.png \ ++ stock-icons/24/gtk-goto-bottom.png \ ++ stock-icons/24/gtk-goto-first-ltr.png \ ++ stock-icons/24/gtk-goto-last-ltr.png \ ++ stock-icons/24/gtk-go-up.png \ ++ stock-icons/24/gtk-harddisk.png \ ++ stock-icons/24/gtk-help.png \ ++ stock-icons/24/gtk-home.png \ ++ stock-icons/24/gtk-indent-ltr.png \ ++ stock-icons/24/gtk-indent-rtl.png \ ++ stock-icons/24/gtk-index.png \ ++ stock-icons/24/gtk-info.png \ ++ stock-icons/24/gtk-italic.png \ ++ stock-icons/24/gtk-jump-to-ltr.png \ ++ stock-icons/24/gtk-jump-to-rtl.png \ ++ stock-icons/24/gtk-justify-center.png \ ++ stock-icons/24/gtk-justify-fill.png \ ++ stock-icons/24/gtk-justify-left.png \ ++ stock-icons/24/gtk-justify-right.png \ ++ stock-icons/24/gtk-leave-fullscreen.png \ ++ stock-icons/24/gtk-media-forward-ltr.png \ ++ stock-icons/24/gtk-media-next-ltr.png \ ++ stock-icons/24/gtk-media-pause.png \ ++ stock-icons/24/gtk-media-play-ltr.png \ ++ stock-icons/24/gtk-media-play-rtl.png \ ++ stock-icons/24/gtk-media-previous-ltr.png \ ++ stock-icons/24/gtk-media-record.png \ ++ stock-icons/24/gtk-media-rewind-ltr.png \ ++ stock-icons/24/gtk-media-stop.png \ ++ stock-icons/24/gtk-missing-image.png \ ++ stock-icons/24/gtk-network.png \ ++ stock-icons/24/gtk-new.png \ ++ stock-icons/24/gtk-open.png \ ++ stock-icons/24/gtk-orientation-reverse-landscape.png \ ++ stock-icons/24/gtk-orientation-landscape.png \ ++ stock-icons/24/gtk-orientation-reverse-portrait.png \ ++ stock-icons/24/gtk-orientation-portrait.png \ ++ stock-icons/24/gtk-page-setup.png \ ++ stock-icons/24/gtk-paste.png \ ++ stock-icons/24/gtk-preferences.png \ ++ stock-icons/24/gtk-print.png \ ++ stock-icons/24/gtk-print-error.png \ ++ stock-icons/24/gtk-print-paused.png \ ++ stock-icons/24/gtk-print-preview.png \ ++ stock-icons/24/gtk-print-report.png \ ++ stock-icons/24/gtk-print-warning.png \ ++ stock-icons/24/gtk-properties.png \ ++ stock-icons/24/gtk-quit.png \ ++ stock-icons/24/gtk-redo-ltr.png \ ++ stock-icons/24/gtk-redo-rtl.png \ ++ stock-icons/24/gtk-refresh.png \ ++ stock-icons/24/gtk-remove.png \ ++ stock-icons/24/gtk-revert-to-saved-ltr.png \ ++ stock-icons/24/gtk-revert-to-saved-rtl.png \ ++ stock-icons/24/gtk-select-font.png \ ++ stock-icons/24/gtk-save-as.png \ ++ stock-icons/24/gtk-floppy.png \ ++ stock-icons/24/gtk-select-all.png \ ++ stock-icons/24/gtk-select-color.png \ ++ stock-icons/24/gtk-sort-ascending.png \ ++ stock-icons/24/gtk-sort-descending.png \ ++ stock-icons/24/gtk-spell-check.png \ ++ stock-icons/24/gtk-stop.png \ ++ stock-icons/24/gtk-strikethrough.png \ ++ stock-icons/24/gtk-delete.png \ ++ stock-icons/24/gtk-undelete-ltr.png \ ++ stock-icons/24/gtk-undelete-rtl.png \ ++ stock-icons/24/gtk-underline.png \ ++ stock-icons/24/gtk-undo-ltr.png \ ++ stock-icons/24/gtk-undo-rtl.png \ ++ stock-icons/24/gtk-unindent-ltr.png \ ++ stock-icons/24/gtk-unindent-rtl.png \ ++ stock-icons/24/gtk-zoom-100.png \ ++ stock-icons/24/gtk-zoom-fit.png \ ++ stock-icons/24/gtk-zoom-in.png \ ++ stock-icons/24/gtk-zoom-out.png \ ++ stock-icons/24/gtk-go-forward-ltr.png \ ++ stock-icons/32/gtk-dnd-multiple.png \ ++ stock-icons/32/gtk-dnd.png \ ++ stock-icons/48/gtk-dialog-authentication.png \ ++ stock-icons/48/gtk-dialog-error.png \ ++ stock-icons/48/gtk-dialog-info.png \ ++ stock-icons/48/gtk-dialog-question.png \ ++ stock-icons/48/gtk-dialog-warning.png + ++GENERATED_ICONS = \ ++ stock-icons/16/gtk-go-back-rtl.png \ ++ stock-icons/16/gtk-go-forward-rtl.png \ ++ stock-icons/16/gtk-goto-first-rtl.png \ ++ stock-icons/16/gtk-goto-last-rtl.png \ ++ stock-icons/16/gtk-media-forward-rtl.png \ ++ stock-icons/16/gtk-media-next-rtl.png \ ++ stock-icons/16/gtk-media-previous-rtl.png \ ++ stock-icons/16/gtk-media-rewind-rtl.png \ ++ stock-icons/16/gtk-save.png \ ++ stock-icons/16/drive-harddisk.png \ ++ stock-icons/16/folder.png \ ++ stock-icons/16/folder-remote.png \ ++ stock-icons/16/user-home.png \ ++ stock-icons/16/user-desktop.png \ ++ stock-icons/16/text-x-generic.png \ ++ stock-icons/24/gtk-go-back-rtl.png \ ++ stock-icons/24/gtk-go-forward-rtl.png \ ++ stock-icons/24/gtk-goto-first-rtl.png \ ++ stock-icons/24/gtk-goto-last-rtl.png \ ++ stock-icons/24/gtk-media-forward-rtl.png \ ++ stock-icons/24/gtk-media-next-rtl.png \ ++ stock-icons/24/gtk-media-previous-rtl.png \ ++ stock-icons/24/gtk-media-rewind-rtl.png \ ++ stock-icons/24/gtk-save.png \ ++ stock-icons/24/drive-harddisk.png \ ++ stock-icons/24/folder.png \ ++ stock-icons/24/folder-remote.png \ ++ stock-icons/24/user-home.png \ ++ stock-icons/24/user-desktop.png \ ++ stock-icons/24/text-x-generic.png + +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(gtkinclude_HEADERS) $(gtkunixprintinclude_HEADERS) \ +- $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl Makefile.am \ +- gtk-win32.rc.in gtkversion.h.in makefile.msc.in +-SOURCES = $(libgtk_directfb_2_0_la_SOURCES) $(libgtk_quartz_2_0_la_SOURCES) $(libgtk_win32_2_0_la_SOURCES) $(libgtk_x11_2_0_la_SOURCES) $(gtk_query_immodules_2_0_SOURCES) $(gtk_update_icon_cache_SOURCES) ++@CROSS_COMPILING_FALSE@gtk_update_icon_cache_program = \ ++@CROSS_COMPILING_FALSE@ GDK_PIXBUF_MODULE_FILE=$(top_builddir)/gdk-pixbuf/gdk-pixbuf.loaders \ ++@CROSS_COMPILING_FALSE@ ./gtk-update-icon-cache + ++@CROSS_COMPILING_TRUE@gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE) + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gtk/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-makefile.msc: $(top_builddir)/config.status makefile.msc.in ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gtk/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gtk/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): ++makefile.msc: $(top_builddir)/config.status $(srcdir)/makefile.msc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-gtkversion.h: $(top_builddir)/config.status gtkversion.h.in ++gtkversion.h: $(top_builddir)/config.status $(srcdir)/gtkversion.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-gtk-win32.rc: $(top_builddir)/config.status gtk-win32.rc.in ++gtk-win32.rc: $(top_builddir)/config.status $(srcdir)/gtk-win32.rc.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +-libLTLIBRARIES_INSTALL = $(INSTALL) + install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libdir) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ ++ } + + uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + + clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgtk-directfb-2.0.la: $(libgtk_directfb_2_0_la_OBJECTS) $(libgtk_directfb_2_0_la_DEPENDENCIES) +- $(LINK) $(libgtk_directfb_2_0_la_LDFLAGS) $(libgtk_directfb_2_0_la_OBJECTS) $(libgtk_directfb_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgtk_directfb_2_0_la_LINK) $(libgtk_directfb_2_0_la_OBJECTS) $(libgtk_directfb_2_0_la_LIBADD) $(LIBS) + libgtk-quartz-2.0.la: $(libgtk_quartz_2_0_la_OBJECTS) $(libgtk_quartz_2_0_la_DEPENDENCIES) +- $(LINK) $(libgtk_quartz_2_0_la_LDFLAGS) $(libgtk_quartz_2_0_la_OBJECTS) $(libgtk_quartz_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgtk_quartz_2_0_la_LINK) $(libgtk_quartz_2_0_la_OBJECTS) $(libgtk_quartz_2_0_la_LIBADD) $(LIBS) + libgtk-win32-2.0.la: $(libgtk_win32_2_0_la_OBJECTS) $(libgtk_win32_2_0_la_DEPENDENCIES) +- $(LINK) $(libgtk_win32_2_0_la_LDFLAGS) $(libgtk_win32_2_0_la_OBJECTS) $(libgtk_win32_2_0_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgtk_win32_2_0_la_LINK) $(libgtk_win32_2_0_la_OBJECTS) $(libgtk_win32_2_0_la_LIBADD) $(LIBS) + libgtk-x11-2.0.la: $(libgtk_x11_2_0_la_OBJECTS) $(libgtk_x11_2_0_la_DEPENDENCIES) +- $(LINK) $(libgtk_x11_2_0_la_LDFLAGS) $(libgtk_x11_2_0_la_OBJECTS) $(libgtk_x11_2_0_la_LIBADD) $(LIBS) +-binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) ++ $(AM_V_CCLD)$(libgtk_x11_2_0_la_LINK) $(libgtk_x11_2_0_la_OBJECTS) $(libgtk_x11_2_0_la_LIBADD) $(LIBS) + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(bindir) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- if test -f $$p \ +- || test -f $$p1 \ +- ; then \ +- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ +- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ +- else :; fi; \ +- done ++ test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed 's/$(EXEEXT)$$//' | \ ++ while read p p1; do if test -f $$p || test -f $$p1; \ ++ then echo "$$p"; echo "$$p"; else :; fi; \ ++ done | \ ++ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ ++ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ ++ sed 'N;N;N;s,\n, ,g' | \ ++ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ ++ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ ++ if ($$2 == $$4) files[d] = files[d] " " $$1; \ ++ else { print "f", $$3 "/" $$4, $$1; } } \ ++ END { for (d in files) print "f", d, files[d] }' | \ ++ while read type dir files; do \ ++ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ ++ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ ++ } \ ++ ; done + + uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ +- rm -f $(DESTDIR)$(bindir)/$$f; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ ++ files=`for p in $$list; do echo "$$p"; done | \ ++ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ ++ -e 's/$$/$(EXEEXT)/' `; \ ++ test -n "$$list" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(bindir)" && rm -f $$files + + clean-binPROGRAMS: +- @list='$(bin_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + gtk-query-immodules-2.0$(EXEEXT): $(gtk_query_immodules_2_0_OBJECTS) $(gtk_query_immodules_2_0_DEPENDENCIES) + @rm -f gtk-query-immodules-2.0$(EXEEXT) +- $(LINK) $(gtk_query_immodules_2_0_LDFLAGS) $(gtk_query_immodules_2_0_OBJECTS) $(gtk_query_immodules_2_0_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(gtk_query_immodules_2_0_OBJECTS) $(gtk_query_immodules_2_0_LDADD) $(LIBS) + gtk-update-icon-cache$(EXEEXT): $(gtk_update_icon_cache_OBJECTS) $(gtk_update_icon_cache_DEPENDENCIES) + @rm -f gtk-update-icon-cache$(EXEEXT) +- $(LINK) $(gtk_update_icon_cache_LDFLAGS) $(gtk_update_icon_cache_OBJECTS) $(gtk_update_icon_cache_LDADD) $(LIBS) +-binSCRIPT_INSTALL = $(INSTALL_SCRIPT) ++ $(AM_V_CCLD)$(LINK) $(gtk_update_icon_cache_OBJECTS) $(gtk_update_icon_cache_LDADD) $(LIBS) + install-binSCRIPTS: $(bin_SCRIPTS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(bindir) +- @list='$(bin_SCRIPTS)'; for p in $$list; do \ ++ test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" ++ @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- if test -f $$d$$p; then \ +- f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ +- echo " $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f"; \ +- $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f; \ +- else :; fi; \ +- done ++ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ ++ done | \ ++ sed -e 'p;s,.*/,,;n' \ ++ -e 'h;s|.*|.|' \ ++ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ ++ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ ++ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ ++ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ ++ if (++n[d] == $(am__install_max)) { \ ++ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ ++ else { print "f", d "/" $$4, $$1 } } \ ++ END { for (d in files) print "f", d, files[d] }' | \ ++ while read type dir files; do \ ++ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ ++ test -z "$$files" || { \ ++ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ ++ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ ++ } \ ++ ; done + + uninstall-binSCRIPTS: + @$(NORMAL_UNINSTALL) +- @list='$(bin_SCRIPTS)'; for p in $$list; do \ +- f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ +- echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ +- rm -f $(DESTDIR)$(bindir)/$$f; \ +- done ++ @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ ++ files=`for p in $$list; do echo "$$p"; done | \ ++ sed -e 's,.*/,,;$(transform)'`; \ ++ test -n "$$list" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(bindir)" && rm -f $$files + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -2600,83 +2012,74 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/updateiconcache.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-gtkincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-gtkincludeHEADERS: $(gtkinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(gtkincludedir) +- @list='$(gtkinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(gtkincludedir)" || $(MKDIR_P) "$(DESTDIR)$(gtkincludedir)" ++ @list='$(gtkinclude_HEADERS)'; test -n "$(gtkincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(gtkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gtkincludedir)/$$f"; \ +- $(gtkincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gtkincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(gtkincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(gtkincludedir)" || exit $$?; \ + done + + uninstall-gtkincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(gtkinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(gtkincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(gtkincludedir)/$$f; \ +- done +-gtkunixprintincludeHEADERS_INSTALL = $(INSTALL_HEADER) ++ @list='$(gtkinclude_HEADERS)'; test -n "$(gtkincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(gtkincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(gtkincludedir)" && rm -f $$files + install-gtkunixprintincludeHEADERS: $(gtkunixprintinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(gtkunixprintincludedir) +- @list='$(gtkunixprintinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(gtkunixprintincludedir)" || $(MKDIR_P) "$(DESTDIR)$(gtkunixprintincludedir)" ++ @list='$(gtkunixprintinclude_HEADERS)'; test -n "$(gtkunixprintincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(gtkunixprintincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gtkunixprintincludedir)/$$f"; \ +- $(gtkunixprintincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gtkunixprintincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(gtkunixprintincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(gtkunixprintincludedir)" || exit $$?; \ + done + + uninstall-gtkunixprintincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(gtkunixprintinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(gtkunixprintincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(gtkunixprintincludedir)/$$f; \ +- done ++ @list='$(gtkunixprintinclude_HEADERS)'; test -n "$(gtkunixprintincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(gtkunixprintincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(gtkunixprintincludedir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -2685,7 +2088,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -2696,16 +2105,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -2725,79 +2139,79 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +@@ -2805,7 +2219,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -2814,108 +2229,139 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. $(distdir)/stock-icons/16 $(distdir)/stock-icons/20 $(distdir)/stock-icons/24 $(distdir)/stock-icons/32 $(distdir)/stock-icons/48 +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -2930,8 +2376,9 @@ + + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(bindir) $(DESTDIR)$(gtkincludedir) $(DESTDIR)$(gtkunixprintincludedir) +- ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(gtkincludedir)" "$(DESTDIR)$(gtkunixprintincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-recursive + install-exec: install-exec-recursive +@@ -2953,13 +2400,14 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) ++ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + clean: clean-recursive + + clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ +@@ -2969,12 +2417,16 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-local distclean-tags ++ distclean-local distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: +@@ -2982,15 +2434,32 @@ + install-data-am: install-data-local install-gtkincludeHEADERS \ + install-gtkunixprintincludeHEADERS + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: install-binPROGRAMS install-binSCRIPTS \ + install-libLTLIBRARIES + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-exec-hook ++install-html: install-html-recursive ++ ++install-html-am: + + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -3013,35 +2482,35 @@ + + uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ + uninstall-gtkincludeHEADERS \ +- uninstall-gtkunixprintincludeHEADERS uninstall-info-am \ +- uninstall-libLTLIBRARIES uninstall-local ++ uninstall-gtkunixprintincludeHEADERS uninstall-libLTLIBRARIES \ ++ uninstall-local + +-uninstall-info: uninstall-info-recursive +- +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-TESTS \ +- check-am check-local clean clean-binPROGRAMS clean-generic \ +- clean-libLTLIBRARIES clean-libtool clean-recursive ctags \ +- ctags-recursive distclean distclean-compile distclean-generic \ +- distclean-libtool distclean-local distclean-recursive \ +- distclean-tags distdir dvi dvi-am dvi-recursive info info-am \ +- info-recursive install install-am install-binPROGRAMS \ ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ++ check-am ctags-recursive install install-am install-exec-am \ ++ install-strip tags-recursive ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-TESTS check-am check-local clean \ ++ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-compile distclean-generic distclean-libtool \ ++ distclean-local distclean-tags distdir dvi dvi-am html html-am \ ++ info info-am install install-am install-binPROGRAMS \ + install-binSCRIPTS install-data install-data-am \ +- install-data-local install-data-recursive install-exec \ +- install-exec-am install-exec-recursive \ +- install-gtkincludeHEADERS install-gtkunixprintincludeHEADERS \ +- install-info install-info-am install-info-recursive \ +- install-libLTLIBRARIES install-man install-recursive \ +- install-strip installcheck installcheck-am installdirs \ +- installdirs-am installdirs-recursive maintainer-clean \ +- maintainer-clean-generic maintainer-clean-recursive mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ +- mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ +- ps-recursive tags tags-recursive uninstall uninstall-am \ ++ install-data-local install-dvi install-dvi-am install-exec \ ++ install-exec-am install-exec-hook install-gtkincludeHEADERS \ ++ install-gtkunixprintincludeHEADERS install-html \ ++ install-html-am install-info install-info-am \ ++ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-binSCRIPTS \ + uninstall-gtkincludeHEADERS \ +- uninstall-gtkunixprintincludeHEADERS uninstall-info-am \ +- uninstall-info-recursive uninstall-libLTLIBRARIES \ +- uninstall-local uninstall-recursive ++ uninstall-gtkunixprintincludeHEADERS uninstall-libLTLIBRARIES \ ++ uninstall-local + + # call as: $(XVFB_START) && someprogram + +@@ -3288,6 +2757,7 @@ + install-data-local: + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gtk/tests/Makefile.in gtk+2.0-2.17.10.ubuntu/gtk/tests/Makefile.in +--- gtk+2.0-2.17.10/gtk/tests/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gtk/tests/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,12 +34,109 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = $(am__EXEEXT_2) + @OS_UNIX_TRUE@am__append_1 = defaultvalue ++subdir = gtk/tests ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++@OS_UNIX_TRUE@am__EXEEXT_1 = defaultvalue$(EXEEXT) ++am__EXEEXT_2 = testing$(EXEEXT) liststore$(EXEEXT) treestore$(EXEEXT) \ ++ treeview$(EXEEXT) treeview-scrolling$(EXEEXT) \ ++ recentmanager$(EXEEXT) floating$(EXEEXT) object$(EXEEXT) \ ++ builder$(EXEEXT) $(am__EXEEXT_1) textbuffer$(EXEEXT) ++PROGRAMS = $(noinst_PROGRAMS) ++am_builder_OBJECTS = builder.$(OBJEXT) ++builder_OBJECTS = $(am_builder_OBJECTS) ++builder_DEPENDENCIES = $(progs_ldadd) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++builder_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(builder_LDFLAGS) $(LDFLAGS) -o $@ ++am_defaultvalue_OBJECTS = defaultvalue.$(OBJEXT) pixbuf-init.$(OBJEXT) ++defaultvalue_OBJECTS = $(am_defaultvalue_OBJECTS) ++defaultvalue_DEPENDENCIES = $(progs_ldadd) ++am_floating_OBJECTS = floating.$(OBJEXT) ++floating_OBJECTS = $(am_floating_OBJECTS) ++floating_DEPENDENCIES = $(progs_ldadd) ++am_liststore_OBJECTS = liststore.$(OBJEXT) ++liststore_OBJECTS = $(am_liststore_OBJECTS) ++liststore_DEPENDENCIES = $(progs_ldadd) ++am_object_OBJECTS = object.$(OBJEXT) pixbuf-init.$(OBJEXT) ++object_OBJECTS = $(am_object_OBJECTS) ++object_DEPENDENCIES = $(progs_ldadd) ++am_recentmanager_OBJECTS = recentmanager.$(OBJEXT) ++recentmanager_OBJECTS = $(am_recentmanager_OBJECTS) ++recentmanager_DEPENDENCIES = $(progs_ldadd) ++am_testing_OBJECTS = testing.$(OBJEXT) ++testing_OBJECTS = $(am_testing_OBJECTS) ++testing_DEPENDENCIES = $(progs_ldadd) ++am_textbuffer_OBJECTS = textbuffer.$(OBJEXT) pixbuf-init.$(OBJEXT) ++textbuffer_OBJECTS = $(am_textbuffer_OBJECTS) ++textbuffer_DEPENDENCIES = $(progs_ldadd) ++am_treestore_OBJECTS = treestore.$(OBJEXT) ++treestore_OBJECTS = $(am_treestore_OBJECTS) ++treestore_DEPENDENCIES = $(progs_ldadd) ++am_treeview_OBJECTS = treeview.$(OBJEXT) ++treeview_OBJECTS = $(am_treeview_OBJECTS) ++treeview_DEPENDENCIES = $(progs_ldadd) ++am_treeview_scrolling_OBJECTS = treeview-scrolling.$(OBJEXT) ++treeview_scrolling_OBJECTS = $(am_treeview_scrolling_OBJECTS) ++treeview_scrolling_DEPENDENCIES = $(progs_ldadd) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(builder_SOURCES) $(defaultvalue_SOURCES) \ ++ $(floating_SOURCES) $(liststore_SOURCES) $(object_SOURCES) \ ++ $(recentmanager_SOURCES) $(testing_SOURCES) \ ++ $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) \ ++ $(treeview_scrolling_SOURCES) ++DIST_SOURCES = $(builder_SOURCES) $(defaultvalue_SOURCES) \ ++ $(floating_SOURCES) $(liststore_SOURCES) $(object_SOURCES) \ ++ $(recentmanager_SOURCES) $(testing_SOURCES) \ ++ $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) \ ++ $(treeview_scrolling_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -52,10 +146,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -63,13 +153,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -86,8 +175,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -95,10 +182,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -124,6 +207,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -142,8 +226,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -154,95 +236,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -266,24 +267,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -291,13 +283,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -309,28 +300,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -339,22 +312,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -378,6 +354,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -386,16 +363,20 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending + EXTRA_DIST = +- +-TEST_PROGS = testing liststore treestore treeview treeview-scrolling recentmanager floating object builder $(am__append_1) textbuffer ++TEST_PROGS = testing liststore treestore treeview treeview-scrolling \ ++ recentmanager floating object builder $(am__append_1) \ ++ textbuffer + + ### testing rules + +@@ -420,7 +401,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ +@@ -430,20 +410,16 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + progs_ldadd = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- +-noinst_PROGRAMS = $(TEST_PROGS) + testing_SOURCES = testing.c + testing_LDADD = $(progs_ldadd) + liststore_SOURCES = liststore.c +@@ -480,181 +456,85 @@ + defaultvalue_LDADD = $(progs_ldadd) + textbuffer_SOURCES = textbuffer.c pixbuf-init.c + textbuffer_LDADD = $(progs_ldadd) +-subdir = gtk/tests +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-@OS_UNIX_TRUE@noinst_PROGRAMS = testing$(EXEEXT) liststore$(EXEEXT) \ +-@OS_UNIX_TRUE@ treestore$(EXEEXT) treeview$(EXEEXT) \ +-@OS_UNIX_TRUE@ treeview-scrolling$(EXEEXT) \ +-@OS_UNIX_TRUE@ recentmanager$(EXEEXT) floating$(EXEEXT) \ +-@OS_UNIX_TRUE@ object$(EXEEXT) builder$(EXEEXT) \ +-@OS_UNIX_TRUE@ defaultvalue$(EXEEXT) textbuffer$(EXEEXT) +-@OS_UNIX_FALSE@noinst_PROGRAMS = testing$(EXEEXT) liststore$(EXEEXT) \ +-@OS_UNIX_FALSE@ treestore$(EXEEXT) treeview$(EXEEXT) \ +-@OS_UNIX_FALSE@ treeview-scrolling$(EXEEXT) \ +-@OS_UNIX_FALSE@ recentmanager$(EXEEXT) floating$(EXEEXT) \ +-@OS_UNIX_FALSE@ object$(EXEEXT) builder$(EXEEXT) \ +-@OS_UNIX_FALSE@ textbuffer$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_builder_OBJECTS = builder.$(OBJEXT) +-builder_OBJECTS = $(am_builder_OBJECTS) +-builder_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_defaultvalue_OBJECTS = defaultvalue.$(OBJEXT) pixbuf-init.$(OBJEXT) +-defaultvalue_OBJECTS = $(am_defaultvalue_OBJECTS) +-defaultvalue_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-defaultvalue_LDFLAGS = +-am_floating_OBJECTS = floating.$(OBJEXT) +-floating_OBJECTS = $(am_floating_OBJECTS) +-floating_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-floating_LDFLAGS = +-am_liststore_OBJECTS = liststore.$(OBJEXT) +-liststore_OBJECTS = $(am_liststore_OBJECTS) +-liststore_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-liststore_LDFLAGS = +-am_object_OBJECTS = object.$(OBJEXT) pixbuf-init.$(OBJEXT) +-object_OBJECTS = $(am_object_OBJECTS) +-object_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-object_LDFLAGS = +-am_recentmanager_OBJECTS = recentmanager.$(OBJEXT) +-recentmanager_OBJECTS = $(am_recentmanager_OBJECTS) +-recentmanager_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-recentmanager_LDFLAGS = +-am_testing_OBJECTS = testing.$(OBJEXT) +-testing_OBJECTS = $(am_testing_OBJECTS) +-testing_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-testing_LDFLAGS = +-am_textbuffer_OBJECTS = textbuffer.$(OBJEXT) pixbuf-init.$(OBJEXT) +-textbuffer_OBJECTS = $(am_textbuffer_OBJECTS) +-textbuffer_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-textbuffer_LDFLAGS = +-am_treestore_OBJECTS = treestore.$(OBJEXT) +-treestore_OBJECTS = $(am_treestore_OBJECTS) +-treestore_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-treestore_LDFLAGS = +-am_treeview_OBJECTS = treeview.$(OBJEXT) +-treeview_OBJECTS = $(am_treeview_OBJECTS) +-treeview_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-treeview_LDFLAGS = +-am_treeview_scrolling_OBJECTS = treeview-scrolling.$(OBJEXT) +-treeview_scrolling_OBJECTS = $(am_treeview_scrolling_OBJECTS) +-treeview_scrolling_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-treeview_scrolling_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/builder.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/defaultvalue.Po ./$(DEPDIR)/floating.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/liststore.Po ./$(DEPDIR)/object.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-init.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/recentmanager.Po ./$(DEPDIR)/testing.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/textbuffer.Po ./$(DEPDIR)/treestore.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/treeview-scrolling.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/treeview.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(builder_SOURCES) $(defaultvalue_SOURCES) \ +- $(floating_SOURCES) $(liststore_SOURCES) $(object_SOURCES) \ +- $(recentmanager_SOURCES) $(testing_SOURCES) \ +- $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) \ +- $(treeview_scrolling_SOURCES) +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(builder_SOURCES) $(defaultvalue_SOURCES) $(floating_SOURCES) $(liststore_SOURCES) $(object_SOURCES) $(recentmanager_SOURCES) $(testing_SOURCES) $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) $(treeview_scrolling_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gtk/tests/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gtk/tests/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gtk/tests/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + builder$(EXEEXT): $(builder_OBJECTS) $(builder_DEPENDENCIES) + @rm -f builder$(EXEEXT) +- $(LINK) $(builder_LDFLAGS) $(builder_OBJECTS) $(builder_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(builder_LINK) $(builder_OBJECTS) $(builder_LDADD) $(LIBS) + defaultvalue$(EXEEXT): $(defaultvalue_OBJECTS) $(defaultvalue_DEPENDENCIES) + @rm -f defaultvalue$(EXEEXT) +- $(LINK) $(defaultvalue_LDFLAGS) $(defaultvalue_OBJECTS) $(defaultvalue_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(defaultvalue_OBJECTS) $(defaultvalue_LDADD) $(LIBS) + floating$(EXEEXT): $(floating_OBJECTS) $(floating_DEPENDENCIES) + @rm -f floating$(EXEEXT) +- $(LINK) $(floating_LDFLAGS) $(floating_OBJECTS) $(floating_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(floating_OBJECTS) $(floating_LDADD) $(LIBS) + liststore$(EXEEXT): $(liststore_OBJECTS) $(liststore_DEPENDENCIES) + @rm -f liststore$(EXEEXT) +- $(LINK) $(liststore_LDFLAGS) $(liststore_OBJECTS) $(liststore_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(liststore_OBJECTS) $(liststore_LDADD) $(LIBS) + object$(EXEEXT): $(object_OBJECTS) $(object_DEPENDENCIES) + @rm -f object$(EXEEXT) +- $(LINK) $(object_LDFLAGS) $(object_OBJECTS) $(object_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(object_OBJECTS) $(object_LDADD) $(LIBS) + recentmanager$(EXEEXT): $(recentmanager_OBJECTS) $(recentmanager_DEPENDENCIES) + @rm -f recentmanager$(EXEEXT) +- $(LINK) $(recentmanager_LDFLAGS) $(recentmanager_OBJECTS) $(recentmanager_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(recentmanager_OBJECTS) $(recentmanager_LDADD) $(LIBS) + testing$(EXEEXT): $(testing_OBJECTS) $(testing_DEPENDENCIES) + @rm -f testing$(EXEEXT) +- $(LINK) $(testing_LDFLAGS) $(testing_OBJECTS) $(testing_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testing_OBJECTS) $(testing_LDADD) $(LIBS) + textbuffer$(EXEEXT): $(textbuffer_OBJECTS) $(textbuffer_DEPENDENCIES) + @rm -f textbuffer$(EXEEXT) +- $(LINK) $(textbuffer_LDFLAGS) $(textbuffer_OBJECTS) $(textbuffer_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(textbuffer_OBJECTS) $(textbuffer_LDADD) $(LIBS) + treestore$(EXEEXT): $(treestore_OBJECTS) $(treestore_DEPENDENCIES) + @rm -f treestore$(EXEEXT) +- $(LINK) $(treestore_LDFLAGS) $(treestore_OBJECTS) $(treestore_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(treestore_OBJECTS) $(treestore_LDADD) $(LIBS) + treeview$(EXEEXT): $(treeview_OBJECTS) $(treeview_DEPENDENCIES) + @rm -f treeview$(EXEEXT) +- $(LINK) $(treeview_LDFLAGS) $(treeview_OBJECTS) $(treeview_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(treeview_OBJECTS) $(treeview_LDADD) $(LIBS) + treeview-scrolling$(EXEEXT): $(treeview_scrolling_OBJECTS) $(treeview_scrolling_DEPENDENCIES) + @rm -f treeview-scrolling$(EXEEXT) +- $(LINK) $(treeview_scrolling_LDFLAGS) $(treeview_scrolling_OBJECTS) $(treeview_scrolling_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(treeview_scrolling_OBJECTS) $(treeview_scrolling_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -673,37 +553,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/treeview.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -711,93 +582,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -805,7 +668,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(PROGRAMS) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -826,7 +688,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -840,24 +703,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -878,18 +763,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstPROGRAMS ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am install-man \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -946,6 +836,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/gtk/theme-bits/Makefile.in gtk+2.0-2.17.10.ubuntu/gtk/theme-bits/Makefile.in +--- gtk+2.0-2.17.10/gtk/theme-bits/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/gtk/theme-bits/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,62 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = decompose-bits$(EXEEXT) ++subdir = gtk/theme-bits ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++PROGRAMS = $(noinst_PROGRAMS) ++am_decompose_bits_OBJECTS = decompose-bits.$(OBJEXT) ++decompose_bits_OBJECTS = $(am_decompose_bits_OBJECTS) ++decompose_bits_DEPENDENCIES = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(decompose_bits_SOURCES) ++DIST_SOURCES = $(decompose_bits_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +99,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +106,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +128,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +135,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +160,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +179,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +189,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +220,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +236,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +253,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +265,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +307,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,14 +316,18 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = check-13.png check-13-inconsistent.png radio-13.png radio-13-inconsistent.png ++EXTRA_DIST = check-13.png check-13-inconsistent.png radio-13.png \ ++ radio-13-inconsistent.png + TEST_PROGS = + + ### testing rules +@@ -418,69 +353,62 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + $(GDK_PIXBUF_DEP_CFLAGS) + +- +-noinst_PROGRAMS = decompose-bits +- + decompose_bits_SOURCES = decompose-bits.c + decompose_bits_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-subdir = gtk/theme-bits +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-noinst_PROGRAMS = decompose-bits$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_decompose_bits_OBJECTS = decompose-bits.$(OBJEXT) +-decompose_bits_OBJECTS = $(am_decompose_bits_OBJECTS) +-decompose_bits_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la +-decompose_bits_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/decompose-bits.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(decompose_bits_SOURCES) +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(decompose_bits_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu gtk/theme-bits/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gtk/theme-bits/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu gtk/theme-bits/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + decompose-bits$(EXEEXT): $(decompose_bits_OBJECTS) $(decompose_bits_DEPENDENCIES) + @rm -f decompose-bits$(EXEEXT) +- $(LINK) $(decompose_bits_LDFLAGS) $(decompose_bits_OBJECTS) $(decompose_bits_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(decompose_bits_OBJECTS) $(decompose_bits_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -488,37 +416,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decompose-bits.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -526,93 +445,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -620,7 +531,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(PROGRAMS) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -641,7 +551,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -655,24 +566,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -693,18 +626,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstPROGRAMS ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am install-man \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -761,6 +699,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/m4macros/Makefile.in gtk+2.0-2.17.10.ubuntu/m4macros/Makefile.in +--- gtk+2.0-2.17.10/m4macros/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/m4macros/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,55 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = m4macros ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(m4datadir)" ++DATA = $(m4data_DATA) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +92,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +99,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +121,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +128,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +153,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +172,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +182,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +213,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +229,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +246,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +258,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +300,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +309,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,93 +345,102 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + installed_m4 = gtk-2.0.m4 +- + m4datadir = $(datadir)/aclocal + m4data_DATA = $(installed_m4) +-subdir = m4macros +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +-DATA = $(m4data_DATA) +- +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu m4macros/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4macros/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu m4macros/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-m4dataDATA_INSTALL = $(INSTALL_DATA) + install-m4dataDATA: $(m4data_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(m4datadir) +- @list='$(m4data_DATA)'; for p in $$list; do \ ++ test -z "$(m4datadir)" || $(MKDIR_P) "$(DESTDIR)$(m4datadir)" ++ @list='$(m4data_DATA)'; test -n "$(m4datadir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(m4dataDATA_INSTALL) $$d$$p $(DESTDIR)$(m4datadir)/$$f"; \ +- $(m4dataDATA_INSTALL) $$d$$p $(DESTDIR)$(m4datadir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(m4datadir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(m4datadir)" || exit $$?; \ + done + + uninstall-m4dataDATA: + @$(NORMAL_UNINSTALL) +- @list='$(m4data_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(m4datadir)/$$f"; \ +- rm -f $(DESTDIR)$(m4datadir)/$$f; \ +- done ++ @list='$(m4data_DATA)'; test -n "$(m4datadir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(m4datadir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(m4datadir)" && rm -f $$files + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -512,9 +448,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(DATA) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(m4datadir) ++ for dir in "$(DESTDIR)$(m4datadir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -534,7 +471,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -545,24 +483,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-m4dataDATA + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -581,17 +541,22 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-m4dataDATA ++uninstall-am: uninstall-m4dataDATA ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-am check-local clean clean-generic \ + clean-libtool distclean distclean-generic distclean-libtool \ +- distdir dvi dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-m4dataDATA install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ ++ distdir dvi dvi-am html html-am info info-am install \ ++ install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am \ ++ install-m4dataDATA install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am uninstall-m4dataDATA ++ uninstall-m4dataDATA + + # call as: $(XVFB_START) && someprogram + +@@ -648,6 +613,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/Makefile.in gtk+2.0-2.17.10.ubuntu/Makefile.in +--- gtk+2.0-2.17.10/Makefile.in 2009-09-01 06:02:54.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/Makefile.in 2009-09-01 18:44:05.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = . +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,12 +34,122 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ ++ $(srcdir)/config.h.win32.in $(srcdir)/gail-uninstalled.pc.in \ ++ $(srcdir)/gail.pc.in $(srcdir)/gdk-2.0-uninstalled.pc.in \ ++ $(srcdir)/gdk-2.0.pc.in \ ++ $(srcdir)/gdk-pixbuf-2.0-uninstalled.pc.in \ ++ $(srcdir)/gdk-pixbuf-2.0.pc.in \ ++ $(srcdir)/gtk+-2.0-uninstalled.pc.in $(srcdir)/gtk+-2.0.pc.in \ ++ $(srcdir)/gtk+-unix-print-2.0.pc.in $(srcdir)/gtk-zip.sh.in \ ++ $(top_srcdir)/Makefile.decl $(top_srcdir)/configure AUTHORS \ ++ COPYING ChangeLog INSTALL NEWS compile config.guess config.sub \ ++ depcomp install-sh ltmain.sh missing mkinstalldirs + @OS_UNIX_TRUE@am__append_1 = gtk+-unix-print-2.0.pc ++subdir = . ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ++ configure.lineno config.status.lineno ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = config.h ++CONFIG_CLEAN_FILES = config.h.win32 gtk-zip.sh gdk-pixbuf-2.0.pc \ ++ gdk-2.0.pc gtk+-2.0.pc gtk+-unix-print-2.0.pc gail.pc \ ++ gdk-pixbuf-2.0-uninstalled.pc gdk-2.0-uninstalled.pc \ ++ gtk+-2.0-uninstalled.pc gail-uninstalled.pc ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(pkgconfigdir)" ++DATA = $(pkgconfig_DATA) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir dist dist-all distcheck ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = po po-properties gdk-pixbuf gdk gtk modules demos tests \ ++ perf contrib docs m4macros ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++distdir = $(PACKAGE)-$(VERSION) ++top_distdir = $(distdir) ++am__remove_distdir = \ ++ { test ! -d "$(distdir)" \ ++ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ ++ && rm -fr "$(distdir)"; }; } ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" ++DIST_ARCHIVES = $(distdir).tar.gz ++GZIP_ENV = --best ++distuninstallcheck_listfiles = find . -type f -print ++distcleancheck_listfiles = find . -type f -print + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -52,10 +159,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -63,13 +166,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -86,8 +188,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -95,10 +195,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -124,6 +220,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -142,8 +239,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -154,95 +249,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -266,24 +280,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -291,13 +296,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -309,28 +313,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -339,22 +325,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -378,6 +367,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -386,125 +376,72 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- HACKING \ +- makecopyright \ +- NEWS.pre-1-0 \ +- ChangeLog.pre-1-0 \ +- ChangeLog.pre-1-2 \ +- ChangeLog.pre-2-0 \ +- ChangeLog.pre-2-2 \ +- ChangeLog.pre-2-4 \ +- ChangeLog.pre-2-6 \ +- ChangeLog.pre-2-8 \ +- ChangeLog.pre-2-10 \ +- ChangeLog.pre-2-12 \ +- ChangeLog.pre-2-14 \ +- ChangeLog.pre-2-16 \ +- ChangeLog.gtk-async-file-chooser \ +- ChangeLog.gtk-printing \ +- README.commits \ +- README.win32 \ +- config.h.win32 \ +- makefile.msc \ +- gtk-zip.sh.in \ +- sanitize-la.sh \ +- po/README.translators \ +- po/po2tbl.sed.in \ +- examples/aspectframe/Makefile \ +- examples/aspectframe/aspectframe.c \ +- examples/Makefile \ +- examples/README.1ST \ +- examples/extract.awk \ +- examples/extract.sh \ +- examples/arrow/Makefile \ +- examples/arrow/arrow.c \ +- examples/base/Makefile \ +- examples/base/base.c \ +- examples/buttonbox/Makefile \ +- examples/buttonbox/buttonbox.c \ +- examples/buttons/Makefile \ +- examples/buttons/buttons.c \ +- examples/buttons/info.xpm \ +- examples/calendar/Makefile \ +- examples/calendar/calendar.c \ +- examples/clist/Makefile \ +- examples/clist/clist.c \ +- examples/entry/Makefile \ +- examples/entry/entry.c \ +- examples/eventbox/Makefile \ +- examples/eventbox/eventbox.c \ +- examples/filesel/Makefile \ +- examples/filesel/filesel.c \ +- examples/gtkdial/Makefile \ +- examples/gtkdial/dial_test.c \ +- examples/gtkdial/gtkdial.c \ +- examples/gtkdial/gtkdial.h \ +- examples/helloworld/Makefile \ +- examples/helloworld/helloworld.c \ +- examples/helloworld2/Makefile \ +- examples/helloworld2/helloworld2.c \ +- examples/label/Makefile \ +- examples/label/label.c \ +- examples/list/Makefile \ +- examples/list/list.c \ +- examples/menu/Makefile \ +- examples/menu/menu.c \ +- examples/menu/itemfactory.c \ +- examples/notebook/Makefile \ +- examples/notebook/notebook.c \ +- examples/packbox/Makefile \ +- examples/packbox/packbox.c \ +- examples/paned/Makefile \ +- examples/paned/paned.c \ +- examples/pixmap/Makefile \ +- examples/pixmap/pixmap.c \ +- examples/progressbar/Makefile \ +- examples/progressbar/progressbar.c \ +- examples/radiobuttons/Makefile \ +- examples/radiobuttons/radiobuttons.c \ +- examples/rangewidgets/Makefile \ +- examples/rangewidgets/rangewidgets.c \ +- examples/rulers/Makefile \ +- examples/rulers/rulers.c \ +- examples/scribble-simple/Makefile \ +- examples/scribble-simple/scribble-simple.c \ +- examples/scribble-xinput/Makefile \ +- examples/scribble-xinput/scribble-xinput.c \ +- examples/scrolledwin/Makefile \ +- examples/scrolledwin/scrolledwin.c \ +- examples/selection/Makefile \ +- examples/selection/gettargets.c \ +- examples/selection/setselection.c \ +- examples/statusbar/Makefile \ +- examples/statusbar/statusbar.c \ +- examples/table/Makefile \ +- examples/table/table.c \ +- examples/text/Makefile \ +- examples/text/text.c \ +- examples/tictactoe/Makefile \ +- examples/tictactoe/tictactoe.c \ +- examples/tictactoe/tictactoe.h \ +- examples/tictactoe/ttt_test.c \ +- examples/tree/Makefile \ +- examples/tree/tree.c \ +- examples/wheelbarrow/Makefile \ +- examples/wheelbarrow/wheelbarrow.c \ +- examples/fixed/fixed.c \ +- examples/fixed/Makefile \ +- examples/frame/frame.c \ +- examples/frame/Makefile \ +- examples/spinbutton/spinbutton.c \ +- examples/spinbutton/Makefile \ +- examples/find-examples.sh +- ++EXTRA_DIST = HACKING makecopyright NEWS.pre-1-0 ChangeLog.pre-1-0 \ ++ ChangeLog.pre-1-2 ChangeLog.pre-2-0 ChangeLog.pre-2-2 \ ++ ChangeLog.pre-2-4 ChangeLog.pre-2-6 ChangeLog.pre-2-8 \ ++ ChangeLog.pre-2-10 ChangeLog.pre-2-12 ChangeLog.pre-2-14 \ ++ ChangeLog.pre-2-16 ChangeLog.gtk-async-file-chooser \ ++ ChangeLog.gtk-printing README.commits README.win32 \ ++ config.h.win32 makefile.msc gtk-zip.sh.in sanitize-la.sh \ ++ po/README.translators po/po2tbl.sed.in \ ++ examples/aspectframe/Makefile \ ++ examples/aspectframe/aspectframe.c examples/Makefile \ ++ examples/README.1ST examples/extract.awk examples/extract.sh \ ++ examples/arrow/Makefile examples/arrow/arrow.c \ ++ examples/base/Makefile examples/base/base.c \ ++ examples/buttonbox/Makefile examples/buttonbox/buttonbox.c \ ++ examples/buttons/Makefile examples/buttons/buttons.c \ ++ examples/buttons/info.xpm examples/calendar/Makefile \ ++ examples/calendar/calendar.c examples/clist/Makefile \ ++ examples/clist/clist.c examples/entry/Makefile \ ++ examples/entry/entry.c examples/eventbox/Makefile \ ++ examples/eventbox/eventbox.c examples/filesel/Makefile \ ++ examples/filesel/filesel.c examples/gtkdial/Makefile \ ++ examples/gtkdial/dial_test.c examples/gtkdial/gtkdial.c \ ++ examples/gtkdial/gtkdial.h examples/helloworld/Makefile \ ++ examples/helloworld/helloworld.c examples/helloworld2/Makefile \ ++ examples/helloworld2/helloworld2.c examples/label/Makefile \ ++ examples/label/label.c examples/list/Makefile \ ++ examples/list/list.c examples/menu/Makefile \ ++ examples/menu/menu.c examples/menu/itemfactory.c \ ++ examples/notebook/Makefile examples/notebook/notebook.c \ ++ examples/packbox/Makefile examples/packbox/packbox.c \ ++ examples/paned/Makefile examples/paned/paned.c \ ++ examples/pixmap/Makefile examples/pixmap/pixmap.c \ ++ examples/progressbar/Makefile \ ++ examples/progressbar/progressbar.c \ ++ examples/radiobuttons/Makefile \ ++ examples/radiobuttons/radiobuttons.c \ ++ examples/rangewidgets/Makefile \ ++ examples/rangewidgets/rangewidgets.c examples/rulers/Makefile \ ++ examples/rulers/rulers.c examples/scribble-simple/Makefile \ ++ examples/scribble-simple/scribble-simple.c \ ++ examples/scribble-xinput/Makefile \ ++ examples/scribble-xinput/scribble-xinput.c \ ++ examples/scrolledwin/Makefile \ ++ examples/scrolledwin/scrolledwin.c examples/selection/Makefile \ ++ examples/selection/gettargets.c \ ++ examples/selection/setselection.c examples/statusbar/Makefile \ ++ examples/statusbar/statusbar.c examples/table/Makefile \ ++ examples/table/table.c examples/text/Makefile \ ++ examples/text/text.c examples/tictactoe/Makefile \ ++ examples/tictactoe/tictactoe.c examples/tictactoe/tictactoe.h \ ++ examples/tictactoe/ttt_test.c examples/tree/Makefile \ ++ examples/tree/tree.c examples/wheelbarrow/Makefile \ ++ examples/wheelbarrow/wheelbarrow.c examples/fixed/fixed.c \ ++ examples/fixed/Makefile examples/frame/frame.c \ ++ examples/frame/Makefile examples/spinbutton/spinbutton.c \ ++ examples/spinbutton/Makefile examples/find-examples.sh + TEST_PROGS = + + ### testing rules +@@ -531,7 +468,9 @@ + && DISPLAY=:$$XID && export DISPLAY + + +-SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests perf contrib ++# don't build perf measurement tools in static builds ++@ENABLE_STATIC_FALSE@MAYBE_PERF = perf ++SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests $(MAYBE_PERF) contrib + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros + + # require automake 1.4 +@@ -557,12 +496,10 @@ + $(srcdir)/ChangeLog \ + `find "$(srcdir)" -type f -name Makefile.in -print` + +- + GDKTARGET = @gdktarget@ +- + pkgconfigdir = $(libdir)/pkgconfig +-pkgconfig_DATA = gdk-pixbuf-2.0.pc gdk-$(GDKTARGET)-2.0.pc gtk+-$(GDKTARGET)-2.0.pc gail.pc $(am__append_1) +- ++pkgconfig_DATA = gdk-pixbuf-2.0.pc gdk-$(GDKTARGET)-2.0.pc \ ++ gtk+-$(GDKTARGET)-2.0.pc gail.pc $(am__append_1) + DISTCLEANFILES = \ + gtk+-unix-print-2.0.pc \ + gtk+-$(GDKTARGET)-2.0.pc \ +@@ -573,11 +510,8 @@ + gail-uninstalled.pc \ + config.lt + +- + DEFAULT_GDKTARGET = x11 +- + DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man --disable-rebuilds +- + GITIGNOREFILES = \ + po-properties/Makefile.in.in \ + po-properties/Makefile.in \ +@@ -588,91 +522,82 @@ + po-properties/stamp-it \ + po-properties/.intltool-merge-cache + +-subdir = . +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = config.h +-CONFIG_CLEAN_FILES = config.h.win32 gtk-zip.sh gdk-pixbuf-2.0.pc \ +- gdk-2.0.pc gtk+-2.0.pc gtk+-unix-print-2.0.pc gail.pc \ +- gdk-pixbuf-2.0-uninstalled.pc gdk-2.0-uninstalled.pc \ +- gtk+-2.0-uninstalled.pc gail-uninstalled.pc +-DIST_SOURCES = +-DATA = $(pkgconfig_DATA) +- +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure \ +- $(top_srcdir)/Makefile.decl AUTHORS COPYING ChangeLog INSTALL \ +- Makefile.am NEWS acinclude.m4 aclocal.m4 compile config.guess \ +- config.h.in config.h.win32.in config.sub configure.in depcomp \ +- gail-uninstalled.pc.in gail.pc.in gdk-2.0-uninstalled.pc.in \ +- gdk-2.0.pc.in gdk-pixbuf-2.0-uninstalled.pc.in \ +- gdk-pixbuf-2.0.pc.in gtk+-2.0-uninstalled.pc.in gtk+-2.0.pc.in \ +- gtk+-unix-print-2.0.pc.in gtk-zip.sh.in install-sh ltmain.sh \ +- missing mkinstalldirs +-DIST_SUBDIRS = $(SUBDIRS) + all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: ++am--refresh: ++ @: ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ ++ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ ++ && exit 0; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ echo ' $(SHELL) ./config.status'; \ ++ $(SHELL) ./config.status;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ ++ esac; + +-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ +- configure.lineno +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe) +- +-$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck +-$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) +- cd $(srcdir) && $(AUTOCONF) + +-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4 +- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ $(am__cd) $(srcdir) && $(AUTOCONF) ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) ++$(am__aclocal_m4_deps): + + config.h: stamp-h1 + @if test ! -f $@; then \ + rm -f stamp-h1; \ +- $(MAKE) stamp-h1; \ ++ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ + else :; fi + + stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +- +-$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && $(AUTOHEADER) +- touch $(srcdir)/config.h.in ++$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) ++ rm -f stamp-h1 ++ touch $@ + + distclean-hdr: + -rm -f config.h stamp-h1 +-config.h.win32: $(top_builddir)/config.status config.h.win32.in ++config.h.win32: $(top_builddir)/config.status $(srcdir)/config.h.win32.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gtk-zip.sh: $(top_builddir)/config.status gtk-zip.sh.in ++gtk-zip.sh: $(top_builddir)/config.status $(srcdir)/gtk-zip.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gdk-pixbuf-2.0.pc: $(top_builddir)/config.status gdk-pixbuf-2.0.pc.in ++gdk-pixbuf-2.0.pc: $(top_builddir)/config.status $(srcdir)/gdk-pixbuf-2.0.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gdk-2.0.pc: $(top_builddir)/config.status gdk-2.0.pc.in ++gdk-2.0.pc: $(top_builddir)/config.status $(srcdir)/gdk-2.0.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gtk+-2.0.pc: $(top_builddir)/config.status gtk+-2.0.pc.in ++gtk+-2.0.pc: $(top_builddir)/config.status $(srcdir)/gtk+-2.0.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gtk+-unix-print-2.0.pc: $(top_builddir)/config.status gtk+-unix-print-2.0.pc.in ++gtk+-unix-print-2.0.pc: $(top_builddir)/config.status $(srcdir)/gtk+-unix-print-2.0.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gail.pc: $(top_builddir)/config.status gail.pc.in ++gail.pc: $(top_builddir)/config.status $(srcdir)/gail.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gdk-pixbuf-2.0-uninstalled.pc: $(top_builddir)/config.status gdk-pixbuf-2.0-uninstalled.pc.in ++gdk-pixbuf-2.0-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gdk-pixbuf-2.0-uninstalled.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gdk-2.0-uninstalled.pc: $(top_builddir)/config.status gdk-2.0-uninstalled.pc.in ++gdk-2.0-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gdk-2.0-uninstalled.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gtk+-2.0-uninstalled.pc: $(top_builddir)/config.status gtk+-2.0-uninstalled.pc.in ++gtk+-2.0-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gtk+-2.0-uninstalled.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +-gail-uninstalled.pc: $(top_builddir)/config.status gail-uninstalled.pc.in ++gail-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gail-uninstalled.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ + + mostlyclean-libtool: +@@ -682,26 +607,27 @@ + -rm -rf .libs _libs + + distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-pkgconfigDATA_INSTALL = $(INSTALL_DATA) ++ -rm -f libtool config.lt + install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir) +- @list='$(pkgconfig_DATA)'; for p in $$list; do \ ++ test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" ++ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f"; \ +- $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + + uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) +- @list='$(pkgconfig_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(pkgconfigdir)/$$f"; \ +- rm -f $(DESTDIR)$(pkgconfigdir)/$$f; \ +- done ++ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -710,7 +636,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -721,16 +653,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -750,135 +687,139 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = . +-distdir = $(PACKAGE)-$(VERSION) +- +-am__remove_distdir = \ +- { test ! -d $(distdir) \ +- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ +- && rm -fr $(distdir); }; } +- +-GZIP_ENV = --best +-distuninstallcheck_listfiles = find . -type f -print +-distcleancheck_listfiles = find . -type f -print + + distdir: $(DISTFILES) + $(am__remove_distdir) +- mkdir $(distdir) +- $(mkinstalldirs) $(distdir)/. $(distdir)/contrib/gdk-pixbuf-xlib $(distdir)/demos/gtk-demo $(distdir)/docs/reference/gdk $(distdir)/docs/reference/gdk-pixbuf $(distdir)/docs/reference/gtk $(distdir)/examples $(distdir)/examples/arrow $(distdir)/examples/aspectframe $(distdir)/examples/base $(distdir)/examples/buttonbox $(distdir)/examples/buttons $(distdir)/examples/calendar $(distdir)/examples/clist $(distdir)/examples/entry $(distdir)/examples/eventbox $(distdir)/examples/filesel $(distdir)/examples/fixed $(distdir)/examples/frame $(distdir)/examples/gtkdial $(distdir)/examples/helloworld $(distdir)/examples/helloworld2 $(distdir)/examples/label $(distdir)/examples/list $(distdir)/examples/menu $(distdir)/examples/notebook $(distdir)/examples/packbox $(distdir)/examples/paned $(distdir)/examples/pixmap $(distdir)/examples/progressbar $(distdir)/examples/radiobuttons $(distdir)/examples/rangewidgets $(distdir)/examples/rulers $(distdir)/examples/scribble-simple $(distdir)/examples/scribble-xinput $(distdir)/examples/scrolledwin $(distdir)/examples/selection $(distdir)/examples/spinbutton $(distdir)/examples/statusbar $(distdir)/examples/table $(distdir)/examples/text $(distdir)/examples/tictactoe $(distdir)/examples/tree $(distdir)/examples/wheelbarrow $(distdir)/gdk-pixbuf $(distdir)/gdk/win32/rc $(distdir)/gtk $(distdir)/po $(distdir)/po-properties +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ test -d "$(distdir)" || mkdir "$(distdir)" ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -886,32 +827,74 @@ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ++ -test -n "$(am__skip_mode_fix)" \ ++ || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ +- ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ +- || chmod -R a+r $(distdir) ++ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ ++ || chmod -R a+r "$(distdir)" + dist-gzip: distdir +- $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz ++ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz ++ $(am__remove_distdir) ++ ++dist-bzip2: distdir ++ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 ++ $(am__remove_distdir) ++ ++dist-lzma: distdir ++ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma ++ $(am__remove_distdir) ++ ++dist-xz: distdir ++ tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz ++ $(am__remove_distdir) ++ ++dist-tarZ: distdir ++ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z ++ $(am__remove_distdir) ++ ++dist-shar: distdir ++ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz ++ $(am__remove_distdir) ++ ++dist-zip: distdir ++ -rm -f $(distdir).zip ++ zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + + dist dist-all: distdir +- $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz ++ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + + # This target untars the dist file and tries a VPATH configuration. Then + # it guarantees that the distribution is self-contained by making another + # tarfile. + distcheck: dist +- $(am__remove_distdir) +- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - ++ case '$(DIST_ARCHIVES)' in \ ++ *.tar.gz*) \ ++ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ ++ *.tar.bz2*) \ ++ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ ++ *.tar.lzma*) \ ++ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ ++ *.tar.xz*) \ ++ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ ++ *.tar.Z*) \ ++ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ ++ *.shar.gz*) \ ++ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ ++ *.zip*) \ ++ unzip $(distdir).zip ;;\ ++ esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) ++ test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ +- && cd $(distdir)/_build \ ++ && am__cwd=`pwd` \ ++ && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ +@@ -924,21 +907,24 @@ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ +- (cd ../.. && $(mkinstalldirs) "$$dc_destdir") \ ++ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ +- && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \ +- && rm -f $(distdir).tar.gz \ +- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck ++ && $(MAKE) $(AM_MAKEFLAGS) dist \ ++ && rm -rf $(DIST_ARCHIVES) \ ++ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ ++ && cd "$$am__cwd" \ ++ || exit 1 + $(am__remove_distdir) +- @echo "$(distdir).tar.gz is ready for distribution" | \ +- sed 'h;s/./=/g;p;x;p;x' ++ @(echo "$(distdir) archives ready for distribution: "; \ ++ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ ++ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' + distuninstallcheck: +- @cd $(distuninstallcheck_dir) \ ++ @$(am__cd) '$(distuninstallcheck_dir)' \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ +@@ -961,8 +947,9 @@ + all-am: Makefile $(DATA) config.h + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir) +- ++ for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -982,7 +969,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + + maintainer-clean-generic: +@@ -996,13 +984,17 @@ + distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-hdr distclean-libtool \ +- distclean-local distclean-tags ++distclean-am: clean-am distclean-generic distclean-hdr \ ++ distclean-libtool distclean-local distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: +@@ -1010,13 +1002,30 @@ + install-data-am: install-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: + + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -1037,29 +1046,30 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-local uninstall-pkgconfigDATA +- +-uninstall-info: uninstall-info-recursive ++uninstall-am: uninstall-local uninstall-pkgconfigDATA + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive dist dist-all dist-gzip distcheck \ +- distclean distclean-generic distclean-hdr distclean-libtool \ +- distclean-local distclean-recursive distclean-tags \ +- distcleancheck distdir distuninstallcheck dvi dvi-am \ +- dvi-recursive info info-am info-recursive install install-am \ +- install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-pkgconfigDATA install-recursive install-strip \ ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check-am \ ++ ctags-recursive install-am install-data-am install-strip \ ++ tags-recursive ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am am--refresh check check-am check-local clean \ ++ clean-generic clean-libtool ctags ctags-recursive dist \ ++ dist-all dist-bzip2 dist-gzip dist-hook dist-lzma dist-shar \ ++ dist-tarZ dist-xz dist-zip distcheck distclean \ ++ distclean-generic distclean-hdr distclean-libtool \ ++ distclean-local distclean-tags distcleancheck distdir \ ++ distuninstallcheck dvi dvi-am html html-am info info-am \ ++ install install-am install-data install-data-am \ ++ install-data-hook install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-pkgconfigDATA install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ +- installdirs-recursive maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-local \ +- uninstall-pkgconfigDATA uninstall-recursive ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am uninstall-local \ ++ uninstall-pkgconfigDATA + + # call as: $(XVFB_START) && someprogram + +@@ -1195,6 +1205,7 @@ + $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"` + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/engines/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/engines/Makefile.in +--- gtk+2.0-2.17.10/modules/engines/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/engines/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,72 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/engines ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = ms-windows pixbuf ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +108,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +115,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +137,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +144,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +169,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +188,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +198,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +229,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +245,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +262,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +274,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +316,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +325,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,33 +361,41 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @USE_WIN32_TRUE@wimp = ms-windows +- + SUBDIRS = $(wimp) pixbuf +-subdir = modules/engines +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = ms-windows pixbuf + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/engines/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/engines/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/engines/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -452,10 +403,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -463,7 +410,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -474,16 +427,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -503,124 +461,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -631,7 +602,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -651,7 +621,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -662,25 +633,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -699,26 +691,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -775,6 +765,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/engines/ms-windows/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Makefile.in +--- gtk+2.0-2.17.10/modules/engines/ms-windows/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,129 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/engines/ms-windows ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(enginedir)" ++LTLIBRARIES = $(engine_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ ++ $(top_builddir)/gdk/$(gdktargetlib) \ ++ $(top_builddir)/gtk/$(gtktargetlib) $(am__DEPENDENCIES_1) ++libwimp_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libwimp_la_OBJECTS = msw_rc_style.lo msw_style.lo msw_theme_main.lo \ ++ xp_theme.lo ++libwimp_la_OBJECTS = $(am_libwimp_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libwimp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(libwimp_la_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libwimp_la_SOURCES) ++DIST_SOURCES = $(libwimp_la_SOURCES) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +166,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +173,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +195,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +202,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +227,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +246,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +256,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +287,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +303,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +320,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +332,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +374,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +383,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +419,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = Theme +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gdk \ +@@ -428,18 +427,14 @@ + -DGDK_DISABLE_DEPRECATED \ + $(GTK_DEP_CFLAGS) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(GTK_DEP_LIBS) + +- + enginedir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/engines +- + engine_LTLIBRARIES = libwimp.la +- + libwimp_la_SOURCES = \ + msw_rc_style.c \ + msw_rc_style.h \ +@@ -450,95 +445,80 @@ + xp_theme_defs.h \ + xp_theme.h + +- + libwimp_la_LDFLAGS = \ + -avoid-version -module -no-undefined -export-dynamic + +- + libwimp_la_LIBADD = $(LDADDS) -lgdi32 +-subdir = modules/engines/ms-windows +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(engine_LTLIBRARIES) +- +-libwimp_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_libwimp_la_OBJECTS = msw_rc_style.lo msw_style.lo msw_theme_main.lo \ +- xp_theme.lo +-libwimp_la_OBJECTS = $(am_libwimp_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/msw_rc_style.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/msw_style.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/msw_theme_main.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/xp_theme.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libwimp_la_SOURCES) +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) +-SOURCES = $(libwimp_la_SOURCES) +- + all: all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/engines/ms-windows/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-engineLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/engines/ms-windows/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/engines/ms-windows/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-engineLTLIBRARIES: $(engine_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(enginedir) +- @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(enginedir)" || $(MKDIR_P) "$(DESTDIR)$(enginedir)" ++ @list='$(engine_LTLIBRARIES)'; test -n "$(enginedir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(engineLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(enginedir)/$$f"; \ +- $(LIBTOOL) --mode=install $(engineLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(enginedir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(enginedir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(enginedir)"; \ ++ } + + uninstall-engineLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(enginedir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(enginedir)/$$p; \ ++ @list='$(engine_LTLIBRARIES)'; test -n "$(enginedir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(enginedir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(enginedir)/$$f"; \ + done + + clean-engineLTLIBRARIES: + -test -z "$(engine_LTLIBRARIES)" || rm -f $(engine_LTLIBRARIES) + @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libwimp.la: $(libwimp_la_OBJECTS) $(libwimp_la_DEPENDENCIES) +- $(LINK) -rpath $(enginedir) $(libwimp_la_LDFLAGS) $(libwimp_la_OBJECTS) $(libwimp_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libwimp_la_LINK) -rpath $(enginedir) $(libwimp_la_OBJECTS) $(libwimp_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -549,37 +529,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xp_theme.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -587,10 +558,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -598,7 +565,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -609,16 +582,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -638,124 +616,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -766,8 +757,9 @@ + all-am: Makefile $(LTLIBRARIES) + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(enginedir) +- ++ for dir in "$(DESTDIR)$(enginedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -787,7 +779,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -801,24 +794,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: install-engineLTLIBRARIES + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -839,28 +854,27 @@ + + ps-am: + +-uninstall-am: uninstall-engineLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-engineLTLIBRARIES + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-engineLTLIBRARIES clean-generic \ +- clean-libtool clean-recursive ctags ctags-recursive distclean \ +- distclean-compile distclean-generic distclean-libtool \ +- distclean-recursive distclean-tags distdir dvi dvi-am \ +- dvi-recursive info info-am info-recursive install install-am \ +- install-data install-data-am install-data-recursive \ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean \ ++ clean-engineLTLIBRARIES clean-generic clean-libtool ctags \ ++ ctags-recursive distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am \ + install-engineLTLIBRARIES install-exec install-exec-am \ +- install-exec-recursive install-info install-info-am \ +- install-info-recursive install-man install-recursive \ +- install-strip installcheck installcheck-am installdirs \ +- installdirs-am installdirs-recursive maintainer-clean \ +- maintainer-clean-generic maintainer-clean-recursive mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ +- mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ +- ps-recursive tags tags-recursive uninstall uninstall-am \ +- uninstall-engineLTLIBRARIES uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am \ ++ uninstall-engineLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -917,6 +931,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in +--- gtk+2.0-2.17.10/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,55 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/engines/ms-windows/Theme/gtk-2.0 ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(themedir)" ++DATA = $(theme_DATA) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +92,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +99,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +121,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +128,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +153,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +172,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +182,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +213,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +229,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +246,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +258,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +300,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +309,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,91 +345,101 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + themedir = $(datadir)/themes/MS-Windows/gtk-2.0 + theme_DATA = gtkrc +-subdir = modules/engines/ms-windows/Theme/gtk-2.0 +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +-DATA = $(theme_DATA) +- +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-am + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/gtk-2.0/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/gtk-2.0/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/gtk-2.0/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-themeDATA_INSTALL = $(INSTALL_DATA) + install-themeDATA: $(theme_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(themedir) +- @list='$(theme_DATA)'; for p in $$list; do \ ++ test -z "$(themedir)" || $(MKDIR_P) "$(DESTDIR)$(themedir)" ++ @list='$(theme_DATA)'; test -n "$(themedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f"; \ +- $(themeDATA_INSTALL) $$d$$p $(DESTDIR)$(themedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(themedir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(themedir)" || exit $$?; \ + done + + uninstall-themeDATA: + @$(NORMAL_UNINSTALL) +- @list='$(theme_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(themedir)/$$f"; \ +- rm -f $(DESTDIR)$(themedir)/$$f; \ +- done ++ @list='$(theme_DATA)'; test -n "$(themedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(themedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(themedir)" && rm -f $$files + tags: TAGS + TAGS: + + ctags: CTAGS + CTAGS: + +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -510,9 +447,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(DATA) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(themedir) ++ for dir in "$(DESTDIR)$(themedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -532,7 +470,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -543,24 +482,46 @@ + + distclean: distclean-am + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool ++distclean-am: clean-am distclean-generic + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-themeDATA + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -579,17 +540,21 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-themeDATA ++uninstall-am: uninstall-themeDATA ++ ++.MAKE: check-am install-am install-strip + + .PHONY: all all-am check check-am check-local clean clean-generic \ + clean-libtool distclean distclean-generic distclean-libtool \ +- distdir dvi dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip install-themeDATA \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am uninstall-themeDATA ++ distdir dvi dvi-am html html-am info info-am install \ ++ install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ ++ install-strip install-themeDATA installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ++ ps ps-am uninstall uninstall-am uninstall-themeDATA + + # call as: $(XVFB_START) && someprogram + +@@ -646,6 +611,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/engines/ms-windows/Theme/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Theme/Makefile.in +--- gtk+2.0-2.17.10/modules/engines/ms-windows/Theme/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/engines/ms-windows/Theme/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,72 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/engines/ms-windows/Theme ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +108,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +115,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +137,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +144,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +169,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +188,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +198,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +229,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +245,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +262,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +274,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +316,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +325,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,31 +361,40 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = gtk-2.0 +-subdir = modules/engines/ms-windows/Theme +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/engines/ms-windows/Theme/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -450,10 +402,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -461,7 +409,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -472,16 +426,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -501,124 +460,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -629,7 +601,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -649,7 +620,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -660,25 +632,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -697,26 +690,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -773,6 +764,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/engines/pixbuf/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/engines/pixbuf/Makefile.in +--- gtk+2.0-2.17.10/modules/engines/pixbuf/Makefile.in 2009-09-01 06:02:59.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/engines/pixbuf/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,92 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ChangeLog ++subdir = modules/engines/pixbuf ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(enginedir)" ++LTLIBRARIES = $(engine_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ ++ $(top_builddir)/gdk/$(gdktargetlib) \ ++ $(top_builddir)/gtk/$(gtktargetlib) ++libpixmap_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libpixmap_la_OBJECTS = pixbuf-draw.lo pixbuf-main.lo \ ++ pixbuf-render.lo pixbuf-rc-style.lo ++libpixmap_la_OBJECTS = $(am_libpixmap_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libpixmap_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(libpixmap_la_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libpixmap_la_SOURCES) ++DIST_SOURCES = $(libpixmap_la_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +129,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +136,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +158,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +165,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +190,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +209,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +219,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +250,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +266,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +283,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +295,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +337,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +346,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +382,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gdk \ +@@ -428,18 +390,14 @@ + -DGDK_DISABLE_DEPRECATED \ + $(GTK_DEP_CFLAGS) + +- + LDADDS = \ + $(GTK_DEP_LIBS) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + enginedir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/engines +- + engine_LTLIBRARIES = libpixmap.la +- + libpixmap_la_SOURCES = \ + pixbuf-draw.c \ + pixbuf-main.c \ +@@ -449,85 +407,78 @@ + pixbuf-style.h \ + pixbuf.h + +- + libpixmap_la_LDFLAGS = -avoid-version -module $(no_undefined) + libpixmap_la_LIBADD = $(LDADDS) +-subdir = modules/engines/pixbuf +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(engine_LTLIBRARIES) +- +-libpixmap_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_libpixmap_la_OBJECTS = pixbuf-draw.lo pixbuf-main.lo pixbuf-render.lo \ +- pixbuf-rc-style.lo +-libpixmap_la_OBJECTS = $(am_libpixmap_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/pixbuf-draw.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-main.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-rc-style.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-render.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libpixmap_la_SOURCES) +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- ChangeLog Makefile.am +-SOURCES = $(libpixmap_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/engines/pixbuf/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-engineLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/engines/pixbuf/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/engines/pixbuf/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-engineLTLIBRARIES: $(engine_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(enginedir) +- @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(enginedir)" || $(MKDIR_P) "$(DESTDIR)$(enginedir)" ++ @list='$(engine_LTLIBRARIES)'; test -n "$(enginedir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(engineLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(enginedir)/$$f"; \ +- $(LIBTOOL) --mode=install $(engineLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(enginedir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(enginedir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(enginedir)"; \ ++ } + + uninstall-engineLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(enginedir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(enginedir)/$$p; \ ++ @list='$(engine_LTLIBRARIES)'; test -n "$(enginedir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(enginedir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(enginedir)/$$f"; \ + done + + clean-engineLTLIBRARIES: + -test -z "$(engine_LTLIBRARIES)" || rm -f $(engine_LTLIBRARIES) + @list='$(engine_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libpixmap.la: $(libpixmap_la_OBJECTS) $(libpixmap_la_DEPENDENCIES) +- $(LINK) -rpath $(enginedir) $(libpixmap_la_LDFLAGS) $(libpixmap_la_OBJECTS) $(libpixmap_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libpixmap_la_LINK) -rpath $(enginedir) $(libpixmap_la_OBJECTS) $(libpixmap_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -538,37 +489,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pixbuf-render.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -576,93 +518,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -670,9 +604,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(enginedir) ++ for dir in "$(DESTDIR)$(enginedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -692,7 +627,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -706,24 +642,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-engineLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -744,20 +702,24 @@ + + ps-am: + +-uninstall-am: uninstall-engineLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-engineLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-engineLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am \ + install-engineLTLIBRARIES install-exec install-exec-am \ +- install-info install-info-am install-man install-strip \ +- installcheck installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-engineLTLIBRARIES \ +- uninstall-info-am ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-engineLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -814,6 +776,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/input/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/input/Makefile.in +--- gtk+2.0-2.17.10/modules/input/Makefile.in 2009-09-01 06:02:59.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/input/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,292 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(dist_imconffile_DATA) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/input ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(moduledir)" \ ++ "$(DESTDIR)$(imconffiledir)" ++LTLIBRARIES = $(module_LTLIBRARIES) $(noinst_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) \ ++ $(top_builddir)/gtk/$(gtktargetlib) $(am__DEPENDENCIES_1) ++im_am_et_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_am_et_la_OBJECTS = imam-et.lo ++im_am_et_la_OBJECTS = $(am_im_am_et_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++im_am_et_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_am_et_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_AM_ET_FALSE@am_im_am_et_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_AM_ET_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_AM_ET_FALSE@ $(moduledir) ++im_cedilla_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_cedilla_la_OBJECTS = imcedilla.lo ++im_cedilla_la_OBJECTS = $(am_im_cedilla_la_OBJECTS) ++im_cedilla_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_cedilla_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_CEDILLA_FALSE@am_im_cedilla_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_CEDILLA_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_CEDILLA_FALSE@ $(moduledir) ++im_cyrillic_translit_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_cyrillic_translit_la_OBJECTS = imcyrillic-translit.lo ++im_cyrillic_translit_la_OBJECTS = \ ++ $(am_im_cyrillic_translit_la_OBJECTS) ++im_cyrillic_translit_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(im_cyrillic_translit_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@am_im_cyrillic_translit_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ $(moduledir) ++im_ime_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_ime_la_OBJECTS = gtkimcontextime.lo imime.lo ++im_ime_la_OBJECTS = $(am_im_ime_la_OBJECTS) ++im_ime_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_ime_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_IME_FALSE@@USE_WIN32_TRUE@am_im_ime_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_IME_FALSE@@USE_WIN32_TRUE@ $(moduledir) ++im_inuktitut_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_inuktitut_la_OBJECTS = iminuktitut.lo ++im_inuktitut_la_OBJECTS = $(am_im_inuktitut_la_OBJECTS) ++im_inuktitut_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(im_inuktitut_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_INUKTITUT_FALSE@am_im_inuktitut_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_INUKTITUT_FALSE@ $(moduledir) ++im_ipa_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_ipa_la_OBJECTS = imipa.lo ++im_ipa_la_OBJECTS = $(am_im_ipa_la_OBJECTS) ++im_ipa_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_ipa_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_IPA_FALSE@am_im_ipa_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_IPA_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_IPA_FALSE@ $(moduledir) ++im_multipress_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_multipress_la_OBJECTS = \ ++ im_multipress_la-gtkimcontextmultipress.lo \ ++ im_multipress_la-immultipress.lo ++im_multipress_la_OBJECTS = $(am_im_multipress_la_OBJECTS) ++im_multipress_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(im_multipress_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_MULTIPRESS_FALSE@am_im_multipress_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_MULTIPRESS_FALSE@ $(moduledir) ++im_thai_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_thai_la_OBJECTS = thai-charprop.lo gtkimcontextthai.lo imthai.lo ++im_thai_la_OBJECTS = $(am_im_thai_la_OBJECTS) ++im_thai_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_thai_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_THAI_FALSE@am_im_thai_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_THAI_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_THAI_FALSE@ $(moduledir) ++im_ti_er_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_ti_er_la_OBJECTS = imti-er.lo ++im_ti_er_la_OBJECTS = $(am_im_ti_er_la_OBJECTS) ++im_ti_er_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_ti_er_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ER_FALSE@am_im_ti_er_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ER_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ER_FALSE@ $(moduledir) ++im_ti_et_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_ti_et_la_OBJECTS = imti-et.lo ++im_ti_et_la_OBJECTS = $(am_im_ti_et_la_OBJECTS) ++im_ti_et_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_ti_et_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ET_FALSE@am_im_ti_et_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ET_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_TI_ET_FALSE@ $(moduledir) ++im_viqr_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_viqr_la_OBJECTS = imviqr.lo ++im_viqr_la_OBJECTS = $(am_im_viqr_la_OBJECTS) ++im_viqr_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_viqr_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_VIQR_FALSE@am_im_viqr_la_rpath = \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_VIQR_FALSE@ -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@INCLUDE_IM_VIQR_FALSE@ $(moduledir) ++im_xim_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_im_xim_la_OBJECTS = gtkimcontextxim.lo imxim.lo ++im_xim_la_OBJECTS = $(am_im_xim_la_OBJECTS) ++im_xim_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(im_xim_la_LDFLAGS) $(LDFLAGS) -o $@ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_X11R6_TRUE@@INCLUDE_IM_XIM_FALSE@am_im_xim_la_rpath = -rpath \ ++@BUILD_DYNAMIC_MODULES_TRUE@@HAVE_X11R6_TRUE@@INCLUDE_IM_XIM_FALSE@ $(moduledir) ++libstatic_im_am_et_la_LIBADD = ++am__objects_1 = imam-et.lo ++am_libstatic_im_am_et_la_OBJECTS = $(am__objects_1) ++libstatic_im_am_et_la_OBJECTS = $(am_libstatic_im_am_et_la_OBJECTS) ++@INCLUDE_IM_AM_ET_TRUE@am_libstatic_im_am_et_la_rpath = ++libstatic_im_cedilla_la_LIBADD = ++am__objects_2 = imcedilla.lo ++am_libstatic_im_cedilla_la_OBJECTS = $(am__objects_2) ++libstatic_im_cedilla_la_OBJECTS = \ ++ $(am_libstatic_im_cedilla_la_OBJECTS) ++@INCLUDE_IM_CEDILLA_TRUE@am_libstatic_im_cedilla_la_rpath = ++libstatic_im_cyrillic_translit_la_LIBADD = ++am__objects_3 = imcyrillic-translit.lo ++am_libstatic_im_cyrillic_translit_la_OBJECTS = $(am__objects_3) ++libstatic_im_cyrillic_translit_la_OBJECTS = \ ++ $(am_libstatic_im_cyrillic_translit_la_OBJECTS) ++@INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@am_libstatic_im_cyrillic_translit_la_rpath = ++libstatic_im_ime_la_DEPENDENCIES = ++am__objects_4 = gtkimcontextime.lo imime.lo ++am_libstatic_im_ime_la_OBJECTS = $(am__objects_4) ++libstatic_im_ime_la_OBJECTS = $(am_libstatic_im_ime_la_OBJECTS) ++@INCLUDE_IM_IME_TRUE@@USE_WIN32_TRUE@am_libstatic_im_ime_la_rpath = ++libstatic_im_inuktitut_la_LIBADD = ++am__objects_5 = iminuktitut.lo ++am_libstatic_im_inuktitut_la_OBJECTS = $(am__objects_5) ++libstatic_im_inuktitut_la_OBJECTS = \ ++ $(am_libstatic_im_inuktitut_la_OBJECTS) ++@INCLUDE_IM_INUKTITUT_TRUE@am_libstatic_im_inuktitut_la_rpath = ++libstatic_im_ipa_la_LIBADD = ++am__objects_6 = imipa.lo ++am_libstatic_im_ipa_la_OBJECTS = $(am__objects_6) ++libstatic_im_ipa_la_OBJECTS = $(am_libstatic_im_ipa_la_OBJECTS) ++@INCLUDE_IM_IPA_TRUE@am_libstatic_im_ipa_la_rpath = ++libstatic_im_multipress_la_LIBADD = ++am__objects_7 = libstatic_im_multipress_la-gtkimcontextmultipress.lo \ ++ libstatic_im_multipress_la-immultipress.lo ++am_libstatic_im_multipress_la_OBJECTS = $(am__objects_7) ++libstatic_im_multipress_la_OBJECTS = \ ++ $(am_libstatic_im_multipress_la_OBJECTS) ++@INCLUDE_IM_MULTIPRESS_TRUE@am_libstatic_im_multipress_la_rpath = ++libstatic_im_thai_la_LIBADD = ++am__objects_8 = thai-charprop.lo gtkimcontextthai.lo imthai.lo ++am_libstatic_im_thai_la_OBJECTS = $(am__objects_8) ++libstatic_im_thai_la_OBJECTS = $(am_libstatic_im_thai_la_OBJECTS) ++@INCLUDE_IM_THAI_TRUE@am_libstatic_im_thai_la_rpath = ++libstatic_im_ti_er_la_LIBADD = ++am__objects_9 = imti-er.lo ++am_libstatic_im_ti_er_la_OBJECTS = $(am__objects_9) ++libstatic_im_ti_er_la_OBJECTS = $(am_libstatic_im_ti_er_la_OBJECTS) ++@INCLUDE_IM_TI_ER_TRUE@am_libstatic_im_ti_er_la_rpath = ++libstatic_im_ti_et_la_LIBADD = ++am__objects_10 = imti-et.lo ++am_libstatic_im_ti_et_la_OBJECTS = $(am__objects_10) ++libstatic_im_ti_et_la_OBJECTS = $(am_libstatic_im_ti_et_la_OBJECTS) ++@INCLUDE_IM_TI_ET_TRUE@am_libstatic_im_ti_et_la_rpath = ++libstatic_im_viqr_la_LIBADD = ++am__objects_11 = imviqr.lo ++am_libstatic_im_viqr_la_OBJECTS = $(am__objects_11) ++libstatic_im_viqr_la_OBJECTS = $(am_libstatic_im_viqr_la_OBJECTS) ++@INCLUDE_IM_VIQR_TRUE@am_libstatic_im_viqr_la_rpath = ++libstatic_im_xim_la_LIBADD = ++am__objects_12 = gtkimcontextxim.lo imxim.lo ++am_libstatic_im_xim_la_OBJECTS = $(am__objects_12) ++libstatic_im_xim_la_OBJECTS = $(am_libstatic_im_xim_la_OBJECTS) ++@HAVE_X11R6_TRUE@@INCLUDE_IM_XIM_TRUE@am_libstatic_im_xim_la_rpath = ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(im_am_et_la_SOURCES) $(im_cedilla_la_SOURCES) \ ++ $(im_cyrillic_translit_la_SOURCES) $(im_ime_la_SOURCES) \ ++ $(im_inuktitut_la_SOURCES) $(im_ipa_la_SOURCES) \ ++ $(im_multipress_la_SOURCES) $(im_thai_la_SOURCES) \ ++ $(im_ti_er_la_SOURCES) $(im_ti_et_la_SOURCES) \ ++ $(im_viqr_la_SOURCES) $(im_xim_la_SOURCES) \ ++ $(libstatic_im_am_et_la_SOURCES) \ ++ $(libstatic_im_cedilla_la_SOURCES) \ ++ $(libstatic_im_cyrillic_translit_la_SOURCES) \ ++ $(libstatic_im_ime_la_SOURCES) \ ++ $(libstatic_im_inuktitut_la_SOURCES) \ ++ $(libstatic_im_ipa_la_SOURCES) \ ++ $(libstatic_im_multipress_la_SOURCES) \ ++ $(libstatic_im_thai_la_SOURCES) \ ++ $(libstatic_im_ti_er_la_SOURCES) \ ++ $(libstatic_im_ti_et_la_SOURCES) \ ++ $(libstatic_im_viqr_la_SOURCES) $(libstatic_im_xim_la_SOURCES) ++DIST_SOURCES = $(im_am_et_la_SOURCES) $(im_cedilla_la_SOURCES) \ ++ $(im_cyrillic_translit_la_SOURCES) $(im_ime_la_SOURCES) \ ++ $(im_inuktitut_la_SOURCES) $(im_ipa_la_SOURCES) \ ++ $(im_multipress_la_SOURCES) $(im_thai_la_SOURCES) \ ++ $(im_ti_er_la_SOURCES) $(im_ti_et_la_SOURCES) \ ++ $(im_viqr_la_SOURCES) $(im_xim_la_SOURCES) \ ++ $(libstatic_im_am_et_la_SOURCES) \ ++ $(libstatic_im_cedilla_la_SOURCES) \ ++ $(libstatic_im_cyrillic_translit_la_SOURCES) \ ++ $(libstatic_im_ime_la_SOURCES) \ ++ $(libstatic_im_inuktitut_la_SOURCES) \ ++ $(libstatic_im_ipa_la_SOURCES) \ ++ $(libstatic_im_multipress_la_SOURCES) \ ++ $(libstatic_im_thai_la_SOURCES) \ ++ $(libstatic_im_ti_er_la_SOURCES) \ ++ $(libstatic_im_ti_et_la_SOURCES) \ ++ $(libstatic_im_viqr_la_SOURCES) $(libstatic_im_xim_la_SOURCES) ++DATA = $(dist_imconffile_DATA) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +330,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +337,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +359,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +366,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +391,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +410,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +420,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +451,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +467,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +484,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +496,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +538,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +547,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +583,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gdk \ +@@ -432,22 +595,18 @@ + $(GTK_DEP_CFLAGS) \ + $(INCLUDED_IMMODULE_DEFINE) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(GTK_DEP_LIBS) + +- + moduledir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/immodules +- + im_xim_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_xim_la_SOURCES = \ + gtkimcontextxim.c \ +@@ -458,42 +617,36 @@ + im_xim_la_LIBADD = $(LDADDS) + @HAVE_X11R6_TRUE@@INCLUDE_IM_XIM_TRUE@STATIC_XIM_MODULE = libstatic-im-xim.la + @HAVE_X11R6_TRUE@@INCLUDE_IM_XIM_FALSE@XIM_MODULE = im-xim.la +- + im_am_et_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_am_et_la_SOURCES = imam-et.c + libstatic_im_am_et_la_SOURCES = $(im_am_et_la_SOURCES) + im_am_et_la_LIBADD = $(LDADDS) + @INCLUDE_IM_AM_ET_TRUE@STATIC_AM_ET_MODULE = libstatic-im-am-et.la + @INCLUDE_IM_AM_ET_FALSE@AM_ET_MODULE = im-am-et.la +- + im_cedilla_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_cedilla_la_SOURCES = imcedilla.c + libstatic_im_cedilla_la_SOURCES = $(im_cedilla_la_SOURCES) + im_cedilla_la_LIBADD = $(LDADDS) + @INCLUDE_IM_CEDILLA_TRUE@STATIC_CEDILLA_MODULE = libstatic-im-cedilla.la + @INCLUDE_IM_CEDILLA_FALSE@CEDILLA_MODULE = im-cedilla.la +- + im_cyrillic_translit_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_cyrillic_translit_la_SOURCES = imcyrillic-translit.c + libstatic_im_cyrillic_translit_la_SOURCES = $(im_cyrillic_translit_la_SOURCES) + im_cyrillic_translit_la_LIBADD = $(LDADDS) + @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@STATIC_CYRILLIC_TRANSLIT_MODULE = libstatic-im-cyrillic-translit.la + @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@CYRILLIC_TRANSLIT_MODULE = im-cyrillic-translit.la +- + im_ti_er_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_ti_er_la_SOURCES = imti-er.c + libstatic_im_ti_er_la_SOURCES = $(im_ti_er_la_SOURCES) + im_ti_er_la_LIBADD = $(LDADDS) + @INCLUDE_IM_TI_ER_TRUE@STATIC_TI_ER_MODULE = libstatic-im-ti-er.la + @INCLUDE_IM_TI_ER_FALSE@TI_ER_MODULE = im-ti-er.la +- + im_ti_et_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_ti_et_la_SOURCES = imti-et.c + libstatic_im_ti_et_la_SOURCES = $(im_ti_et_la_SOURCES) + im_ti_et_la_LIBADD = $(LDADDS) + @INCLUDE_IM_TI_ET_TRUE@STATIC_TI_ET_MODULE = libstatic-im-ti-et.la + @INCLUDE_IM_TI_ET_FALSE@TI_ET_MODULE = im-ti-et.la +- + im_thai_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_thai_la_SOURCES = \ + thai-charprop.c \ +@@ -506,28 +659,24 @@ + im_thai_la_LIBADD = $(LDADDS) + @INCLUDE_IM_THAI_TRUE@STATIC_THAI_MODULE = libstatic-im-thai.la + @INCLUDE_IM_THAI_FALSE@THAI_MODULE = im-thai.la +- + im_viqr_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_viqr_la_SOURCES = imviqr.c + libstatic_im_viqr_la_SOURCES = $(im_viqr_la_SOURCES) + im_viqr_la_LIBADD = $(LDADDS) + @INCLUDE_IM_VIQR_TRUE@STATIC_VIQR_MODULE = libstatic-im-viqr.la + @INCLUDE_IM_VIQR_FALSE@VIQR_MODULE = im-viqr.la +- + im_inuktitut_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_inuktitut_la_SOURCES = iminuktitut.c + libstatic_im_inuktitut_la_SOURCES = $(im_inuktitut_la_SOURCES) + im_inuktitut_la_LIBADD = $(LDADDS) + @INCLUDE_IM_INUKTITUT_TRUE@STATIC_INUKTITUT_MODULE = libstatic-im-inuktitut.la + @INCLUDE_IM_INUKTITUT_FALSE@INUKTITUT_MODULE = im-inuktitut.la +- + im_ipa_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_ipa_la_SOURCES = imipa.c + libstatic_im_ipa_la_SOURCES = $(im_ipa_la_SOURCES) + im_ipa_la_LIBADD = $(LDADDS) + @INCLUDE_IM_IPA_TRUE@STATIC_IPA_MODULE = libstatic-im-ipa.la + @INCLUDE_IM_IPA_FALSE@IPA_MODULE = im-ipa.la +- + im_ime_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) + im_ime_la_SOURCES = \ + gtkimcontextime.c \ +@@ -540,7 +689,6 @@ + libstatic_im_ime_la_LIBADD = -limm32 + @INCLUDE_IM_IME_TRUE@@USE_WIN32_TRUE@STATIC_IME_MODULE = libstatic-im-ime.la + @INCLUDE_IM_IME_FALSE@@USE_WIN32_TRUE@IME_MODULE = im-ime.la +- + multipress_defs = -DMULTIPRESS_LOCALEDIR=\""$(mplocaledir)"\" -DMULTIPRESS_CONFDIR=\""$(sysconfdir)/gtk-2.0"\" + im_multipress_la_CPPFLAGS = $(multipress_defs) + libstatic_im_multipress_la_CPPFLAGS = $(im_multipress_la_CPPFLAGS) +@@ -554,13 +702,11 @@ + im_multipress_la_LIBADD = $(LDADDS) + @INCLUDE_IM_MULTIPRESS_TRUE@STATIC_MULTIPRESS_MODULE = libstatic-im-multipress.la + @INCLUDE_IM_MULTIPRESS_FALSE@MULTIPRESS_MODULE = im-multipress.la +- + imconffiledir = $(sysconfdir)/gtk-2.0 + dist_imconffile_DATA = im-multipress.conf +- ++@CROSS_COMPILING_FALSE@@ENABLE_STATIC_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)" ++@CROSS_COMPILING_FALSE@@ENABLE_STATIC_TRUE@RUN_QUERY_IMMODULES_TEST = false + @CROSS_COMPILING_TRUE@RUN_QUERY_IMMODULES_TEST = false +-@CROSS_COMPILING_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)" +- + @BUILD_DYNAMIC_MODULES_TRUE@module_LTLIBRARIES = \ + @BUILD_DYNAMIC_MODULES_TRUE@ $(AM_ET_MODULE) \ + @BUILD_DYNAMIC_MODULES_TRUE@ $(CEDILLA_MODULE) \ +@@ -575,7 +721,6 @@ + @BUILD_DYNAMIC_MODULES_TRUE@ $(VIQR_MODULE) \ + @BUILD_DYNAMIC_MODULES_TRUE@ $(XIM_MODULE) + +- + noinst_LTLIBRARIES = \ + $(STATIC_AM_ET_MODULE) \ + $(STATIC_CEDILLA_MODULE) \ +@@ -590,234 +735,69 @@ + $(STATIC_VIQR_MODULE) \ + $(STATIC_XIM_MODULE) + +- + CLEANFILES = gtk.immodules +-subdir = modules/input +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(module_LTLIBRARIES) $(noinst_LTLIBRARIES) +- +-im_am_et_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_am_et_la_OBJECTS = imam-et.lo +-im_am_et_la_OBJECTS = $(am_im_am_et_la_OBJECTS) +-im_cedilla_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_cedilla_la_OBJECTS = imcedilla.lo +-im_cedilla_la_OBJECTS = $(am_im_cedilla_la_OBJECTS) +-im_cyrillic_translit_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_cyrillic_translit_la_OBJECTS = imcyrillic-translit.lo +-im_cyrillic_translit_la_OBJECTS = $(am_im_cyrillic_translit_la_OBJECTS) +-im_ime_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_ime_la_OBJECTS = gtkimcontextime.lo imime.lo +-im_ime_la_OBJECTS = $(am_im_ime_la_OBJECTS) +-im_inuktitut_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_inuktitut_la_OBJECTS = iminuktitut.lo +-im_inuktitut_la_OBJECTS = $(am_im_inuktitut_la_OBJECTS) +-im_ipa_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_ipa_la_OBJECTS = imipa.lo +-im_ipa_la_OBJECTS = $(am_im_ipa_la_OBJECTS) +-im_multipress_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_multipress_la_OBJECTS = im_multipress_la-gtkimcontextmultipress.lo \ +- im_multipress_la-immultipress.lo +-im_multipress_la_OBJECTS = $(am_im_multipress_la_OBJECTS) +-im_thai_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_thai_la_OBJECTS = thai-charprop.lo gtkimcontextthai.lo imthai.lo +-im_thai_la_OBJECTS = $(am_im_thai_la_OBJECTS) +-im_ti_er_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_ti_er_la_OBJECTS = imti-er.lo +-im_ti_er_la_OBJECTS = $(am_im_ti_er_la_OBJECTS) +-im_ti_et_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_ti_et_la_OBJECTS = imti-et.lo +-im_ti_et_la_OBJECTS = $(am_im_ti_et_la_OBJECTS) +-im_viqr_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_viqr_la_OBJECTS = imviqr.lo +-im_viqr_la_OBJECTS = $(am_im_viqr_la_OBJECTS) +-im_xim_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_im_xim_la_OBJECTS = gtkimcontextxim.lo imxim.lo +-im_xim_la_OBJECTS = $(am_im_xim_la_OBJECTS) +-libstatic_im_am_et_la_LDFLAGS = +-libstatic_im_am_et_la_LIBADD = +-am__objects_1 = imam-et.lo +-am_libstatic_im_am_et_la_OBJECTS = $(am__objects_1) +-libstatic_im_am_et_la_OBJECTS = $(am_libstatic_im_am_et_la_OBJECTS) +-libstatic_im_cedilla_la_LDFLAGS = +-libstatic_im_cedilla_la_LIBADD = +-am__objects_2 = imcedilla.lo +-am_libstatic_im_cedilla_la_OBJECTS = $(am__objects_2) +-libstatic_im_cedilla_la_OBJECTS = $(am_libstatic_im_cedilla_la_OBJECTS) +-libstatic_im_cyrillic_translit_la_LDFLAGS = +-libstatic_im_cyrillic_translit_la_LIBADD = +-am__objects_3 = imcyrillic-translit.lo +-am_libstatic_im_cyrillic_translit_la_OBJECTS = $(am__objects_3) +-libstatic_im_cyrillic_translit_la_OBJECTS = \ +- $(am_libstatic_im_cyrillic_translit_la_OBJECTS) +-libstatic_im_ime_la_LDFLAGS = +-libstatic_im_ime_la_DEPENDENCIES = +-am__objects_4 = gtkimcontextime.lo imime.lo +-am_libstatic_im_ime_la_OBJECTS = $(am__objects_4) +-libstatic_im_ime_la_OBJECTS = $(am_libstatic_im_ime_la_OBJECTS) +-libstatic_im_inuktitut_la_LDFLAGS = +-libstatic_im_inuktitut_la_LIBADD = +-am__objects_5 = iminuktitut.lo +-am_libstatic_im_inuktitut_la_OBJECTS = $(am__objects_5) +-libstatic_im_inuktitut_la_OBJECTS = \ +- $(am_libstatic_im_inuktitut_la_OBJECTS) +-libstatic_im_ipa_la_LDFLAGS = +-libstatic_im_ipa_la_LIBADD = +-am__objects_6 = imipa.lo +-am_libstatic_im_ipa_la_OBJECTS = $(am__objects_6) +-libstatic_im_ipa_la_OBJECTS = $(am_libstatic_im_ipa_la_OBJECTS) +-libstatic_im_multipress_la_LDFLAGS = +-libstatic_im_multipress_la_LIBADD = +-am__objects_7 = libstatic_im_multipress_la-gtkimcontextmultipress.lo \ +- libstatic_im_multipress_la-immultipress.lo +-am_libstatic_im_multipress_la_OBJECTS = $(am__objects_7) +-libstatic_im_multipress_la_OBJECTS = \ +- $(am_libstatic_im_multipress_la_OBJECTS) +-libstatic_im_thai_la_LDFLAGS = +-libstatic_im_thai_la_LIBADD = +-am__objects_8 = thai-charprop.lo gtkimcontextthai.lo imthai.lo +-am_libstatic_im_thai_la_OBJECTS = $(am__objects_8) +-libstatic_im_thai_la_OBJECTS = $(am_libstatic_im_thai_la_OBJECTS) +-libstatic_im_ti_er_la_LDFLAGS = +-libstatic_im_ti_er_la_LIBADD = +-am__objects_9 = imti-er.lo +-am_libstatic_im_ti_er_la_OBJECTS = $(am__objects_9) +-libstatic_im_ti_er_la_OBJECTS = $(am_libstatic_im_ti_er_la_OBJECTS) +-libstatic_im_ti_et_la_LDFLAGS = +-libstatic_im_ti_et_la_LIBADD = +-am__objects_10 = imti-et.lo +-am_libstatic_im_ti_et_la_OBJECTS = $(am__objects_10) +-libstatic_im_ti_et_la_OBJECTS = $(am_libstatic_im_ti_et_la_OBJECTS) +-libstatic_im_viqr_la_LDFLAGS = +-libstatic_im_viqr_la_LIBADD = +-am__objects_11 = imviqr.lo +-am_libstatic_im_viqr_la_OBJECTS = $(am__objects_11) +-libstatic_im_viqr_la_OBJECTS = $(am_libstatic_im_viqr_la_OBJECTS) +-libstatic_im_xim_la_LDFLAGS = +-libstatic_im_xim_la_LIBADD = +-am__objects_12 = gtkimcontextxim.lo imxim.lo +-am_libstatic_im_xim_la_OBJECTS = $(am__objects_12) +-libstatic_im_xim_la_OBJECTS = $(am_libstatic_im_xim_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gtkimcontextime.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimcontextthai.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkimcontextxim.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/im_multipress_la-immultipress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imam-et.Plo ./$(DEPDIR)/imcedilla.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imcyrillic-translit.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imime.Plo ./$(DEPDIR)/iminuktitut.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imipa.Plo ./$(DEPDIR)/imthai.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imti-er.Plo ./$(DEPDIR)/imti-et.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/imviqr.Plo ./$(DEPDIR)/imxim.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libstatic_im_multipress_la-immultipress.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/thai-charprop.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(im_am_et_la_SOURCES) $(im_cedilla_la_SOURCES) \ +- $(im_cyrillic_translit_la_SOURCES) $(im_ime_la_SOURCES) \ +- $(im_inuktitut_la_SOURCES) $(im_ipa_la_SOURCES) \ +- $(im_multipress_la_SOURCES) $(im_thai_la_SOURCES) \ +- $(im_ti_er_la_SOURCES) $(im_ti_et_la_SOURCES) \ +- $(im_viqr_la_SOURCES) $(im_xim_la_SOURCES) \ +- $(libstatic_im_am_et_la_SOURCES) \ +- $(libstatic_im_cedilla_la_SOURCES) \ +- $(libstatic_im_cyrillic_translit_la_SOURCES) \ +- $(libstatic_im_ime_la_SOURCES) \ +- $(libstatic_im_inuktitut_la_SOURCES) \ +- $(libstatic_im_ipa_la_SOURCES) \ +- $(libstatic_im_multipress_la_SOURCES) \ +- $(libstatic_im_thai_la_SOURCES) \ +- $(libstatic_im_ti_er_la_SOURCES) \ +- $(libstatic_im_ti_et_la_SOURCES) \ +- $(libstatic_im_viqr_la_SOURCES) $(libstatic_im_xim_la_SOURCES) +-DATA = $(dist_imconffile_DATA) +- +-DIST_COMMON = $(dist_imconffile_DATA) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(im_am_et_la_SOURCES) $(im_cedilla_la_SOURCES) $(im_cyrillic_translit_la_SOURCES) $(im_ime_la_SOURCES) $(im_inuktitut_la_SOURCES) $(im_ipa_la_SOURCES) $(im_multipress_la_SOURCES) $(im_thai_la_SOURCES) $(im_ti_er_la_SOURCES) $(im_ti_et_la_SOURCES) $(im_viqr_la_SOURCES) $(im_xim_la_SOURCES) $(libstatic_im_am_et_la_SOURCES) $(libstatic_im_cedilla_la_SOURCES) $(libstatic_im_cyrillic_translit_la_SOURCES) $(libstatic_im_ime_la_SOURCES) $(libstatic_im_inuktitut_la_SOURCES) $(libstatic_im_ipa_la_SOURCES) $(libstatic_im_multipress_la_SOURCES) $(libstatic_im_thai_la_SOURCES) $(libstatic_im_ti_er_la_SOURCES) $(libstatic_im_ti_et_la_SOURCES) $(libstatic_im_viqr_la_SOURCES) $(libstatic_im_xim_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/input/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-moduleLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/input/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/input/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(moduledir) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f"; \ +- $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(moduledir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(moduledir)"; \ ++ } + + uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p; \ ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$f"; \ + done + + clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +@@ -826,61 +806,61 @@ + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + im-am-et.la: $(im_am_et_la_OBJECTS) $(im_am_et_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_am_et_la_LDFLAGS) $(im_am_et_la_OBJECTS) $(im_am_et_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_am_et_la_LINK) $(am_im_am_et_la_rpath) $(im_am_et_la_OBJECTS) $(im_am_et_la_LIBADD) $(LIBS) + im-cedilla.la: $(im_cedilla_la_OBJECTS) $(im_cedilla_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_cedilla_la_LDFLAGS) $(im_cedilla_la_OBJECTS) $(im_cedilla_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_cedilla_la_LINK) $(am_im_cedilla_la_rpath) $(im_cedilla_la_OBJECTS) $(im_cedilla_la_LIBADD) $(LIBS) + im-cyrillic-translit.la: $(im_cyrillic_translit_la_OBJECTS) $(im_cyrillic_translit_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_cyrillic_translit_la_LDFLAGS) $(im_cyrillic_translit_la_OBJECTS) $(im_cyrillic_translit_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_cyrillic_translit_la_LINK) $(am_im_cyrillic_translit_la_rpath) $(im_cyrillic_translit_la_OBJECTS) $(im_cyrillic_translit_la_LIBADD) $(LIBS) + im-ime.la: $(im_ime_la_OBJECTS) $(im_ime_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_ime_la_LDFLAGS) $(im_ime_la_OBJECTS) $(im_ime_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_ime_la_LINK) $(am_im_ime_la_rpath) $(im_ime_la_OBJECTS) $(im_ime_la_LIBADD) $(LIBS) + im-inuktitut.la: $(im_inuktitut_la_OBJECTS) $(im_inuktitut_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_inuktitut_la_LDFLAGS) $(im_inuktitut_la_OBJECTS) $(im_inuktitut_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_inuktitut_la_LINK) $(am_im_inuktitut_la_rpath) $(im_inuktitut_la_OBJECTS) $(im_inuktitut_la_LIBADD) $(LIBS) + im-ipa.la: $(im_ipa_la_OBJECTS) $(im_ipa_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_ipa_la_LDFLAGS) $(im_ipa_la_OBJECTS) $(im_ipa_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_ipa_la_LINK) $(am_im_ipa_la_rpath) $(im_ipa_la_OBJECTS) $(im_ipa_la_LIBADD) $(LIBS) + im-multipress.la: $(im_multipress_la_OBJECTS) $(im_multipress_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_multipress_la_LDFLAGS) $(im_multipress_la_OBJECTS) $(im_multipress_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_multipress_la_LINK) $(am_im_multipress_la_rpath) $(im_multipress_la_OBJECTS) $(im_multipress_la_LIBADD) $(LIBS) + im-thai.la: $(im_thai_la_OBJECTS) $(im_thai_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_thai_la_LDFLAGS) $(im_thai_la_OBJECTS) $(im_thai_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_thai_la_LINK) $(am_im_thai_la_rpath) $(im_thai_la_OBJECTS) $(im_thai_la_LIBADD) $(LIBS) + im-ti-er.la: $(im_ti_er_la_OBJECTS) $(im_ti_er_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_ti_er_la_LDFLAGS) $(im_ti_er_la_OBJECTS) $(im_ti_er_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_ti_er_la_LINK) $(am_im_ti_er_la_rpath) $(im_ti_er_la_OBJECTS) $(im_ti_er_la_LIBADD) $(LIBS) + im-ti-et.la: $(im_ti_et_la_OBJECTS) $(im_ti_et_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_ti_et_la_LDFLAGS) $(im_ti_et_la_OBJECTS) $(im_ti_et_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_ti_et_la_LINK) $(am_im_ti_et_la_rpath) $(im_ti_et_la_OBJECTS) $(im_ti_et_la_LIBADD) $(LIBS) + im-viqr.la: $(im_viqr_la_OBJECTS) $(im_viqr_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_viqr_la_LDFLAGS) $(im_viqr_la_OBJECTS) $(im_viqr_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_viqr_la_LINK) $(am_im_viqr_la_rpath) $(im_viqr_la_OBJECTS) $(im_viqr_la_LIBADD) $(LIBS) + im-xim.la: $(im_xim_la_OBJECTS) $(im_xim_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(im_xim_la_LDFLAGS) $(im_xim_la_OBJECTS) $(im_xim_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(im_xim_la_LINK) $(am_im_xim_la_rpath) $(im_xim_la_OBJECTS) $(im_xim_la_LIBADD) $(LIBS) + libstatic-im-am-et.la: $(libstatic_im_am_et_la_OBJECTS) $(libstatic_im_am_et_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_am_et_la_LDFLAGS) $(libstatic_im_am_et_la_OBJECTS) $(libstatic_im_am_et_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_am_et_la_rpath) $(libstatic_im_am_et_la_OBJECTS) $(libstatic_im_am_et_la_LIBADD) $(LIBS) + libstatic-im-cedilla.la: $(libstatic_im_cedilla_la_OBJECTS) $(libstatic_im_cedilla_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_cedilla_la_LDFLAGS) $(libstatic_im_cedilla_la_OBJECTS) $(libstatic_im_cedilla_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_cedilla_la_rpath) $(libstatic_im_cedilla_la_OBJECTS) $(libstatic_im_cedilla_la_LIBADD) $(LIBS) + libstatic-im-cyrillic-translit.la: $(libstatic_im_cyrillic_translit_la_OBJECTS) $(libstatic_im_cyrillic_translit_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_cyrillic_translit_la_LDFLAGS) $(libstatic_im_cyrillic_translit_la_OBJECTS) $(libstatic_im_cyrillic_translit_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_cyrillic_translit_la_rpath) $(libstatic_im_cyrillic_translit_la_OBJECTS) $(libstatic_im_cyrillic_translit_la_LIBADD) $(LIBS) + libstatic-im-ime.la: $(libstatic_im_ime_la_OBJECTS) $(libstatic_im_ime_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_ime_la_LDFLAGS) $(libstatic_im_ime_la_OBJECTS) $(libstatic_im_ime_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_ime_la_rpath) $(libstatic_im_ime_la_OBJECTS) $(libstatic_im_ime_la_LIBADD) $(LIBS) + libstatic-im-inuktitut.la: $(libstatic_im_inuktitut_la_OBJECTS) $(libstatic_im_inuktitut_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_inuktitut_la_LDFLAGS) $(libstatic_im_inuktitut_la_OBJECTS) $(libstatic_im_inuktitut_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_inuktitut_la_rpath) $(libstatic_im_inuktitut_la_OBJECTS) $(libstatic_im_inuktitut_la_LIBADD) $(LIBS) + libstatic-im-ipa.la: $(libstatic_im_ipa_la_OBJECTS) $(libstatic_im_ipa_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_ipa_la_LDFLAGS) $(libstatic_im_ipa_la_OBJECTS) $(libstatic_im_ipa_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_ipa_la_rpath) $(libstatic_im_ipa_la_OBJECTS) $(libstatic_im_ipa_la_LIBADD) $(LIBS) + libstatic-im-multipress.la: $(libstatic_im_multipress_la_OBJECTS) $(libstatic_im_multipress_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_multipress_la_LDFLAGS) $(libstatic_im_multipress_la_OBJECTS) $(libstatic_im_multipress_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_multipress_la_rpath) $(libstatic_im_multipress_la_OBJECTS) $(libstatic_im_multipress_la_LIBADD) $(LIBS) + libstatic-im-thai.la: $(libstatic_im_thai_la_OBJECTS) $(libstatic_im_thai_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_thai_la_LDFLAGS) $(libstatic_im_thai_la_OBJECTS) $(libstatic_im_thai_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_thai_la_rpath) $(libstatic_im_thai_la_OBJECTS) $(libstatic_im_thai_la_LIBADD) $(LIBS) + libstatic-im-ti-er.la: $(libstatic_im_ti_er_la_OBJECTS) $(libstatic_im_ti_er_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_ti_er_la_LDFLAGS) $(libstatic_im_ti_er_la_OBJECTS) $(libstatic_im_ti_er_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_ti_er_la_rpath) $(libstatic_im_ti_er_la_OBJECTS) $(libstatic_im_ti_er_la_LIBADD) $(LIBS) + libstatic-im-ti-et.la: $(libstatic_im_ti_et_la_OBJECTS) $(libstatic_im_ti_et_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_ti_et_la_LDFLAGS) $(libstatic_im_ti_et_la_OBJECTS) $(libstatic_im_ti_et_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_ti_et_la_rpath) $(libstatic_im_ti_et_la_OBJECTS) $(libstatic_im_ti_et_la_LIBADD) $(LIBS) + libstatic-im-viqr.la: $(libstatic_im_viqr_la_OBJECTS) $(libstatic_im_viqr_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_viqr_la_LDFLAGS) $(libstatic_im_viqr_la_OBJECTS) $(libstatic_im_viqr_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_viqr_la_rpath) $(libstatic_im_viqr_la_OBJECTS) $(libstatic_im_viqr_la_LIBADD) $(LIBS) + libstatic-im-xim.la: $(libstatic_im_xim_la_OBJECTS) $(libstatic_im_xim_la_DEPENDENCIES) +- $(LINK) $(libstatic_im_xim_la_LDFLAGS) $(libstatic_im_xim_la_OBJECTS) $(libstatic_im_xim_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(am_libstatic_im_xim_la_rpath) $(libstatic_im_xim_la_OBJECTS) $(libstatic_im_xim_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -906,291 +886,178 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thai-charprop.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +- +-im_multipress_la-gtkimcontextmultipress.o: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-gtkimcontextmultipress.o -MD -MP -MF "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-gtkimcontextmultipress.o `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='im_multipress_la-gtkimcontextmultipress.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Po' tmpdepfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-gtkimcontextmultipress.o `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c +- +-im_multipress_la-gtkimcontextmultipress.obj: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-gtkimcontextmultipress.obj -MD -MP -MF "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-gtkimcontextmultipress.obj `if test -f 'gtkimcontextmultipress.c'; then $(CYGPATH_W) 'gtkimcontextmultipress.c'; else $(CYGPATH_W) '$(srcdir)/gtkimcontextmultipress.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='im_multipress_la-gtkimcontextmultipress.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Po' tmpdepfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-gtkimcontextmultipress.obj `if test -f 'gtkimcontextmultipress.c'; then $(CYGPATH_W) 'gtkimcontextmultipress.c'; else $(CYGPATH_W) '$(srcdir)/gtkimcontextmultipress.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + im_multipress_la-gtkimcontextmultipress.lo: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-gtkimcontextmultipress.lo -MD -MP -MF "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-gtkimcontextmultipress.lo -MD -MP -MF $(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo -c -o im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Tpo $(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='im_multipress_la-gtkimcontextmultipress.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.Plo' tmpdepfile='$(DEPDIR)/im_multipress_la-gtkimcontextmultipress.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c +- +-im_multipress_la-immultipress.o: immultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-immultipress.o -MD -MP -MF "$(DEPDIR)/im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-immultipress.o `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo" "$(DEPDIR)/im_multipress_la-immultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='im_multipress_la-immultipress.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-immultipress.Po' tmpdepfile='$(DEPDIR)/im_multipress_la-immultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-immultipress.o `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c +- +-im_multipress_la-immultipress.obj: immultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-immultipress.obj -MD -MP -MF "$(DEPDIR)/im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-immultipress.obj `if test -f 'immultipress.c'; then $(CYGPATH_W) 'immultipress.c'; else $(CYGPATH_W) '$(srcdir)/immultipress.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo" "$(DEPDIR)/im_multipress_la-immultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='im_multipress_la-immultipress.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-immultipress.Po' tmpdepfile='$(DEPDIR)/im_multipress_la-immultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-immultipress.obj `if test -f 'immultipress.c'; then $(CYGPATH_W) 'immultipress.c'; else $(CYGPATH_W) '$(srcdir)/immultipress.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c + + im_multipress_la-immultipress.lo: immultipress.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-immultipress.lo -MD -MP -MF "$(DEPDIR)/im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo" "$(DEPDIR)/im_multipress_la-immultipress.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT im_multipress_la-immultipress.lo -MD -MP -MF $(DEPDIR)/im_multipress_la-immultipress.Tpo -c -o im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/im_multipress_la-immultipress.Tpo $(DEPDIR)/im_multipress_la-immultipress.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='im_multipress_la-immultipress.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/im_multipress_la-immultipress.Plo' tmpdepfile='$(DEPDIR)/im_multipress_la-immultipress.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c +- +-libstatic_im_multipress_la-gtkimcontextmultipress.o: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-gtkimcontextmultipress.o -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-gtkimcontextmultipress.o `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='libstatic_im_multipress_la-gtkimcontextmultipress.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Po' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-gtkimcontextmultipress.o `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c +- +-libstatic_im_multipress_la-gtkimcontextmultipress.obj: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-gtkimcontextmultipress.obj -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-gtkimcontextmultipress.obj `if test -f 'gtkimcontextmultipress.c'; then $(CYGPATH_W) 'gtkimcontextmultipress.c'; else $(CYGPATH_W) '$(srcdir)/gtkimcontextmultipress.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='libstatic_im_multipress_la-gtkimcontextmultipress.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Po' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-gtkimcontextmultipress.obj `if test -f 'gtkimcontextmultipress.c'; then $(CYGPATH_W) 'gtkimcontextmultipress.c'; else $(CYGPATH_W) '$(srcdir)/gtkimcontextmultipress.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c + + libstatic_im_multipress_la-gtkimcontextmultipress.lo: gtkimcontextmultipress.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-gtkimcontextmultipress.lo -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-gtkimcontextmultipress.lo -MD -MP -MF $(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo -c -o libstatic_im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Tpo $(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkimcontextmultipress.c' object='libstatic_im_multipress_la-gtkimcontextmultipress.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.Plo' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-gtkimcontextmultipress.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c +- +-libstatic_im_multipress_la-immultipress.o: immultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-immultipress.o -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-immultipress.o `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='libstatic_im_multipress_la-immultipress.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.Po' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-immultipress.o `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c +- +-libstatic_im_multipress_la-immultipress.obj: immultipress.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-immultipress.obj -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-immultipress.obj `if test -f 'immultipress.c'; then $(CYGPATH_W) 'immultipress.c'; else $(CYGPATH_W) '$(srcdir)/immultipress.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='libstatic_im_multipress_la-immultipress.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.Po' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-immultipress.obj `if test -f 'immultipress.c'; then $(CYGPATH_W) 'immultipress.c'; else $(CYGPATH_W) '$(srcdir)/immultipress.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-gtkimcontextmultipress.lo `test -f 'gtkimcontextmultipress.c' || echo '$(srcdir)/'`gtkimcontextmultipress.c + + libstatic_im_multipress_la-immultipress.lo: immultipress.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-immultipress.lo -MD -MP -MF "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libstatic_im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo" "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libstatic_im_multipress_la-immultipress.lo -MD -MP -MF $(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo -c -o libstatic_im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libstatic_im_multipress_la-immultipress.Tpo $(DEPDIR)/libstatic_im_multipress_la-immultipress.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='immultipress.c' object='libstatic_im_multipress_la-immultipress.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.Plo' tmpdepfile='$(DEPDIR)/libstatic_im_multipress_la-immultipress.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatic_im_multipress_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libstatic_im_multipress_la-immultipress.lo `test -f 'immultipress.c' || echo '$(srcdir)/'`immultipress.c + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-dist_imconffileDATA_INSTALL = $(INSTALL_DATA) + install-dist_imconffileDATA: $(dist_imconffile_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(imconffiledir) +- @list='$(dist_imconffile_DATA)'; for p in $$list; do \ ++ test -z "$(imconffiledir)" || $(MKDIR_P) "$(DESTDIR)$(imconffiledir)" ++ @list='$(dist_imconffile_DATA)'; test -n "$(imconffiledir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(dist_imconffileDATA_INSTALL) $$d$$p $(DESTDIR)$(imconffiledir)/$$f"; \ +- $(dist_imconffileDATA_INSTALL) $$d$$p $(DESTDIR)$(imconffiledir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(imconffiledir)'"; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(imconffiledir)" || exit $$?; \ + done + + uninstall-dist_imconffileDATA: + @$(NORMAL_UNINSTALL) +- @list='$(dist_imconffile_DATA)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(imconffiledir)/$$f"; \ +- rm -f $(DESTDIR)$(imconffiledir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(dist_imconffile_DATA)'; test -n "$(imconffiledir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(imconffiledir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(imconffiledir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am ++@CROSS_COMPILING_TRUE@all-local: + all-am: Makefile $(LTLIBRARIES) $(DATA) all-local +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(moduledir) $(DESTDIR)$(imconffiledir) ++ for dir in "$(DESTDIR)$(moduledir)" "$(DESTDIR)$(imconffiledir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -1211,7 +1078,8 @@ + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -1225,12 +1093,16 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: +@@ -1238,13 +1110,30 @@ + install-data-am: install-dist_imconffileDATA install-moduleLTLIBRARIES + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook ++install-dvi: install-dvi-am ++ ++install-dvi-am: + + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -1265,22 +1154,27 @@ + + ps-am: + +-uninstall-am: uninstall-dist_imconffileDATA uninstall-info-am \ +- uninstall-local uninstall-moduleLTLIBRARIES ++uninstall-am: uninstall-dist_imconffileDATA uninstall-local \ ++ uninstall-moduleLTLIBRARIES ++ ++.MAKE: check-am install-am install-data-am install-strip + + .PHONY: CTAGS GTAGS all all-am all-local check check-am check-local \ + clean clean-generic clean-libtool clean-moduleLTLIBRARIES \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-dist_imconffileDATA install-exec \ +- install-exec-am install-info install-info-am install-man \ +- install-moduleLTLIBRARIES install-strip installcheck \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-data-hook \ ++ install-dist_imconffileDATA install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man \ ++ install-moduleLTLIBRARIES install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-dist_imconffileDATA \ +- uninstall-info-am uninstall-local uninstall-moduleLTLIBRARIES ++ uninstall-local uninstall-moduleLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -1363,11 +1257,23 @@ + included-modules: $(noinst_LTLIBRARIES) + + gtk.immodules: Makefile.am $(module_LTLIBRARIES) +- $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules ++ @if $(RUN_QUERY_IMMODULES_TEST) ; then \ ++ echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > gtk.immodules" ; \ ++ $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules; \ ++ else \ ++ echo "***" ; \ ++ echo "*** Warning: gtk.immodules not built" ; \ ++ echo "***" ; \ ++ echo "*** Generate this file manually on host" ; \ ++ echo "*** system using gtk-query-immodules-2.0" ; \ ++ echo "***" ; \ ++ touch gtk.immodules; \ ++ fi + + @CROSS_COMPILING_FALSE@all-local: gtk.immodules + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/Makefile.in +--- gtk+2.0-2.17.10/modules/Makefile.in 2009-09-01 06:02:58.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,12 +33,73 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl + @OS_UNIX_TRUE@am__append_1 = printbackends ++subdir = modules ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = input engines other printbackends ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -52,10 +109,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -63,13 +116,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -86,8 +138,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -95,10 +145,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -124,6 +170,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -142,8 +189,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -154,95 +199,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -266,24 +230,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -291,13 +246,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -309,28 +263,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -339,22 +275,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -378,6 +317,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -386,9 +326,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -419,31 +362,40 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = input engines other $(am__append_1) +-subdir = modules +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = input engines other printbackends + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -451,10 +403,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -462,7 +410,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -473,16 +427,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -502,124 +461,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -630,7 +602,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -650,7 +621,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -661,25 +633,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -698,26 +691,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -774,6 +765,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/other/gail/libgail-util/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/other/gail/libgail-util/Makefile.in +--- gtk+2.0-2.17.10/modules/other/gail/libgail-util/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/other/gail/libgail-util/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,14 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +36,94 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgailutilinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/other/gail/libgail-util ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(libdir)" \ ++ "$(DESTDIR)$(libgailutilincludedir)" ++LTLIBRARIES = $(lib_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libgailutil_la_DEPENDENCIES = $(top_builddir)/gtk/$(gtktargetlib) \ ++ $(top_builddir)/gdk/$(gdktargetlib) $(am__DEPENDENCIES_1) ++am__objects_1 = libgailutil_la-gailmisc.lo \ ++ libgailutil_la-gailtextutil.lo ++am_libgailutil_la_OBJECTS = $(am__objects_1) ++libgailutil_la_OBJECTS = $(am_libgailutil_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgailutil_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(libgailutil_la_CFLAGS) $(CFLAGS) $(libgailutil_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgailutil_la_SOURCES) ++DIST_SOURCES = $(libgailutil_la_SOURCES) ++DATA = $(noinst_DATA) ++HEADERS = $(libgailutilinclude_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +133,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +140,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +162,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +169,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +194,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +213,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +223,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +254,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +270,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +287,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +299,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +341,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +350,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -420,32 +388,24 @@ + + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined + @OS_WIN32_TRUE@export_symbols = -export-symbols $(srcdir)/gailutil.def +- + @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gailutil.lib +- + lib_LTLIBRARIES = libgailutil.la +- + util_c_sources = \ + gailmisc.c \ + gailtextutil.c + +- + libgailutilincludedir = $(includedir)/gail-1.0/libgail-util +- + util_public_h_sources = \ + gailmisc.h \ + gailtextutil.h \ + gail-util.h + +- + libgailutil_la_SOURCES = \ + $(util_c_sources) + +- + libgailutilinclude_HEADERS = \ + $(util_public_h_sources) + +- + libgailutil_la_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gdk \ +@@ -456,102 +416,92 @@ + -DGDK_DISABLE_DEPRECATED\ + -DGTK_DISABLE_DEPRECATED + +- + libgailutil_la_CFLAGS = \ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) \ + $(AM_CFLAGS) + +- + libgailutil_la_LIBADD = \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(GTK_DEP_LIBS) + +- + libgailutil_la_LDFLAGS = \ + -version-info $(GAIL_LT_VERSION_INFO) \ + $(no_undefined) \ + $(export_symbols) \ + $(LDFLAGS) + +-subdir = modules/other/gail/libgail-util +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(lib_LTLIBRARIES) +- +-libgailutil_la_DEPENDENCIES = $(top_builddir)/gtk/$(gtktargetlib) \ +- $(top_builddir)/gdk/$(gdktargetlib) +-am__objects_1 = libgailutil_la-gailmisc.lo \ +- libgailutil_la-gailtextutil.lo +-am_libgailutil_la_OBJECTS = $(am__objects_1) +-libgailutil_la_OBJECTS = $(am_libgailutil_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libgailutil_la-gailmisc.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgailutil_la-gailtextutil.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgailutil_la_SOURCES) +-DATA = $(noinst_DATA) +- +-HEADERS = $(libgailutilinclude_HEADERS) +- +-DIST_COMMON = $(libgailutilinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libgailutil_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/other/gail/libgail-util/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-libLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/other/gail/libgail-util/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/other/gail/libgail-util/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libdir) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ +- $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ ++ } + + uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ ++ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + + clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgailutil.la: $(libgailutil_la_OBJECTS) $(libgailutil_la_DEPENDENCIES) +- $(LINK) -rpath $(libdir) $(libgailutil_la_LDFLAGS) $(libgailutil_la_OBJECTS) $(libgailutil_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgailutil_la_LINK) -rpath $(libdir) $(libgailutil_la_OBJECTS) $(libgailutil_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -560,215 +510,150 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgailutil_la-gailtextutil.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +- +-libgailutil_la-gailmisc.o: gailmisc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailmisc.o -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailmisc.o `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" "$(DEPDIR)/libgailutil_la-gailmisc.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmisc.c' object='libgailutil_la-gailmisc.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailmisc.Po' tmpdepfile='$(DEPDIR)/libgailutil_la-gailmisc.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailmisc.o `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c +- +-libgailutil_la-gailmisc.obj: gailmisc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailmisc.obj -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailmisc.obj `if test -f 'gailmisc.c'; then $(CYGPATH_W) 'gailmisc.c'; else $(CYGPATH_W) '$(srcdir)/gailmisc.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" "$(DEPDIR)/libgailutil_la-gailmisc.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmisc.c' object='libgailutil_la-gailmisc.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailmisc.Po' tmpdepfile='$(DEPDIR)/libgailutil_la-gailmisc.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailmisc.obj `if test -f 'gailmisc.c'; then $(CYGPATH_W) 'gailmisc.c'; else $(CYGPATH_W) '$(srcdir)/gailmisc.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + libgailutil_la-gailmisc.lo: gailmisc.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailmisc.lo -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailmisc.lo `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo" "$(DEPDIR)/libgailutil_la-gailmisc.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailmisc.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailmisc.lo -MD -MP -MF $(DEPDIR)/libgailutil_la-gailmisc.Tpo -c -o libgailutil_la-gailmisc.lo `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgailutil_la-gailmisc.Tpo $(DEPDIR)/libgailutil_la-gailmisc.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmisc.c' object='libgailutil_la-gailmisc.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailmisc.Plo' tmpdepfile='$(DEPDIR)/libgailutil_la-gailmisc.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailmisc.lo `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c +- +-libgailutil_la-gailtextutil.o: gailtextutil.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailtextutil.o -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailtextutil.o `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" "$(DEPDIR)/libgailutil_la-gailtextutil.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextutil.c' object='libgailutil_la-gailtextutil.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailtextutil.Po' tmpdepfile='$(DEPDIR)/libgailutil_la-gailtextutil.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailtextutil.o `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c +- +-libgailutil_la-gailtextutil.obj: gailtextutil.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailtextutil.obj -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailtextutil.obj `if test -f 'gailtextutil.c'; then $(CYGPATH_W) 'gailtextutil.c'; else $(CYGPATH_W) '$(srcdir)/gailtextutil.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" "$(DEPDIR)/libgailutil_la-gailtextutil.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextutil.c' object='libgailutil_la-gailtextutil.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailtextutil.Po' tmpdepfile='$(DEPDIR)/libgailutil_la-gailtextutil.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailtextutil.obj `if test -f 'gailtextutil.c'; then $(CYGPATH_W) 'gailtextutil.c'; else $(CYGPATH_W) '$(srcdir)/gailtextutil.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailmisc.lo `test -f 'gailmisc.c' || echo '$(srcdir)/'`gailmisc.c + + libgailutil_la-gailtextutil.lo: gailtextutil.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailtextutil.lo -MD -MP -MF "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgailutil_la-gailtextutil.lo `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo" "$(DEPDIR)/libgailutil_la-gailtextutil.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgailutil_la-gailtextutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -MT libgailutil_la-gailtextutil.lo -MD -MP -MF $(DEPDIR)/libgailutil_la-gailtextutil.Tpo -c -o libgailutil_la-gailtextutil.lo `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgailutil_la-gailtextutil.Tpo $(DEPDIR)/libgailutil_la-gailtextutil.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextutil.c' object='libgailutil_la-gailtextutil.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgailutil_la-gailtextutil.Plo' tmpdepfile='$(DEPDIR)/libgailutil_la-gailtextutil.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailtextutil.lo `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgailutil_la_CPPFLAGS) $(CPPFLAGS) $(libgailutil_la_CFLAGS) $(CFLAGS) -c -o libgailutil_la-gailtextutil.lo `test -f 'gailtextutil.c' || echo '$(srcdir)/'`gailtextutil.c + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgailutilincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgailutilincludeHEADERS: $(libgailutilinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgailutilincludedir) +- @list='$(libgailutilinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgailutilincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgailutilincludedir)" ++ @list='$(libgailutilinclude_HEADERS)'; test -n "$(libgailutilincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgailutilincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgailutilincludedir)/$$f"; \ +- $(libgailutilincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgailutilincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgailutilincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgailutilincludedir)" || exit $$?; \ + done + + uninstall-libgailutilincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgailutilinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgailutilincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgailutilincludedir)/$$f; \ +- done +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS ++ @list='$(libgailutilinclude_HEADERS)'; test -n "$(libgailutilincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgailutilincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgailutilincludedir)" && rm -f $$files + + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -776,9 +661,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgailutilincludedir) ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgailutilincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -798,7 +684,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -812,24 +699,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-data-local install-libgailutilincludeHEADERS + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: install-libLTLIBRARIES + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -850,21 +759,25 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ ++uninstall-am: uninstall-libLTLIBRARIES \ + uninstall-libgailutilincludeHEADERS uninstall-local + ++.MAKE: check-am install-am install-strip ++ + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libLTLIBRARIES clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-data-local \ +- install-exec install-exec-am install-info install-info-am \ +- install-libLTLIBRARIES install-libgailutilincludeHEADERS \ +- install-man install-strip installcheck installcheck-am \ +- installdirs maintainer-clean maintainer-clean-generic \ +- mostlyclean mostlyclean-compile mostlyclean-generic \ +- mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ +- uninstall-am uninstall-info-am uninstall-libLTLIBRARIES \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-data-local install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-libLTLIBRARIES \ ++ install-libgailutilincludeHEADERS install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am uninstall-libLTLIBRARIES \ + uninstall-libgailutilincludeHEADERS uninstall-local + + # call as: $(XVFB_START) && someprogram +@@ -943,6 +856,7 @@ + uninstall-local: uninstall-ms-lib uninstall-def-file + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/other/gail/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/other/gail/Makefile.in +--- gtk+2.0-2.17.10/modules/other/gail/Makefile.in 2009-09-01 06:02:59.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/other/gail/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,162 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(libgailinclude_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ChangeLog ++subdir = modules/other/gail ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(moduledir)" \ ++ "$(DESTDIR)$(libgailincludedir)" ++LTLIBRARIES = $(module_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libgail_la_DEPENDENCIES = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ ++ $(top_builddir)/gdk/$(gdktargetlib) \ ++ $(top_builddir)/gtk/$(gtktargetlib) \ ++ $(top_builddir)/modules/other/gail/libgail-util/libgailutil.la \ ++ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) ++am__objects_1 = libgail_la-gail.lo libgail_la-gailadjustment.lo \ ++ libgail_la-gailarrow.lo libgail_la-gailbooleancell.lo \ ++ libgail_la-gailbox.lo libgail_la-gailbutton.lo \ ++ libgail_la-gailcalendar.lo libgail_la-gailcell.lo \ ++ libgail_la-gailcellparent.lo libgail_la-gailcheckmenuitem.lo \ ++ libgail_la-gailchecksubmenuitem.lo libgail_la-gailclist.lo \ ++ libgail_la-gailclistcell.lo libgail_la-gailcombo.lo \ ++ libgail_la-gailcombobox.lo libgail_la-gailcontainer.lo \ ++ libgail_la-gailcontainercell.lo libgail_la-gailentry.lo \ ++ libgail_la-gailexpander.lo libgail_la-gailframe.lo \ ++ libgail_la-gailimage.lo libgail_la-gailimagecell.lo \ ++ libgail_la-gailitem.lo libgail_la-gaillabel.lo \ ++ libgail_la-gaillist.lo libgail_la-gailmenu.lo \ ++ libgail_la-gailmenushell.lo libgail_la-gailmenuitem.lo \ ++ libgail_la-gailnotebook.lo libgail_la-gailnotebookpage.lo \ ++ libgail_la-gailobject.lo libgail_la-gailoptionmenu.lo \ ++ libgail_la-gailpaned.lo libgail_la-gailpixmap.lo \ ++ libgail_la-gailprogressbar.lo libgail_la-gailradiobutton.lo \ ++ libgail_la-gailradiomenuitem.lo \ ++ libgail_la-gailradiosubmenuitem.lo libgail_la-gailrange.lo \ ++ libgail_la-gailrenderercell.lo libgail_la-gailscale.lo \ ++ libgail_la-gailscalebutton.lo libgail_la-gailscrollbar.lo \ ++ libgail_la-gailscrolledwindow.lo libgail_la-gailseparator.lo \ ++ libgail_la-gailspinbutton.lo libgail_la-gailsubmenuitem.lo \ ++ libgail_la-gailstatusbar.lo libgail_la-gailtextcell.lo \ ++ libgail_la-gailtextview.lo libgail_la-gailtogglebutton.lo \ ++ libgail_la-gailtoplevel.lo libgail_la-gailtreeview.lo \ ++ libgail_la-gailutil.lo libgail_la-gailwidget.lo \ ++ libgail_la-gailwindow.lo ++am__objects_2 = ++am_libgail_la_OBJECTS = $(am__objects_1) $(am__objects_2) \ ++ $(am__objects_2) ++libgail_la_OBJECTS = $(am_libgail_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libgail_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgail_la_CFLAGS) \ ++ $(CFLAGS) $(libgail_la_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libgail_la_SOURCES) ++DIST_SOURCES = $(libgail_la_SOURCES) ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++HEADERS = $(libgailinclude_HEADERS) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +200,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +207,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +229,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +236,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +261,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +280,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +290,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +321,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +337,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +354,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +366,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +408,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +417,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,14 +453,10 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = libgail-util tests +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + moduledir = $(libdir)/gtk-2.0/modules + module_LTLIBRARIES = libgail.la +- + gail_c_sources = \ + gail-private-macros.h \ + gail.c \ +@@ -485,9 +516,7 @@ + gailwidget.c \ + gailwindow.c + +- + libgailincludedir = $(includedir)/gail-1.0/gail +- + gail_private_h_sources = \ + gail.h \ + gailadjustment.h \ +@@ -546,21 +575,17 @@ + gailutil.h \ + gailwindow.h + +- + gail_public_h_sources = \ + gailwidget.h + +- + libgail_la_SOURCES = \ + $(gail_c_sources) \ + $(gail_public_h_sources) \ + $(gail_private_h_sources) + +- + libgailinclude_HEADERS = \ + $(gail_public_h_sources) + +- + libgail_la_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/modules/other \ +@@ -573,13 +598,11 @@ + -DGTK_DISABLE_DEPRECATED \ + $(AM_CPPFLAGS) + +- + libgail_la_CFLAGS = \ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) \ + $(AM_CFLAGS) + +- + libgail_la_LIBADD = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ +@@ -588,180 +611,81 @@ + $(GTK_DEP_LIBS) \ + $(INTLLIBS) + +- + libgail_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version \ + $(no_undefined) \ + $(LDFLAGS) + +-subdir = modules/other/gail +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(module_LTLIBRARIES) +- +-libgail_la_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) \ +- $(top_builddir)/modules/other/gail/libgail-util/libgailutil.la +-am__objects_1 = libgail_la-gail.lo libgail_la-gailadjustment.lo \ +- libgail_la-gailarrow.lo libgail_la-gailbooleancell.lo \ +- libgail_la-gailbox.lo libgail_la-gailbutton.lo \ +- libgail_la-gailcalendar.lo libgail_la-gailcell.lo \ +- libgail_la-gailcellparent.lo libgail_la-gailcheckmenuitem.lo \ +- libgail_la-gailchecksubmenuitem.lo libgail_la-gailclist.lo \ +- libgail_la-gailclistcell.lo libgail_la-gailcombo.lo \ +- libgail_la-gailcombobox.lo libgail_la-gailcontainer.lo \ +- libgail_la-gailcontainercell.lo libgail_la-gailentry.lo \ +- libgail_la-gailexpander.lo libgail_la-gailframe.lo \ +- libgail_la-gailimage.lo libgail_la-gailimagecell.lo \ +- libgail_la-gailitem.lo libgail_la-gaillabel.lo \ +- libgail_la-gaillist.lo libgail_la-gailmenu.lo \ +- libgail_la-gailmenushell.lo libgail_la-gailmenuitem.lo \ +- libgail_la-gailnotebook.lo libgail_la-gailnotebookpage.lo \ +- libgail_la-gailobject.lo libgail_la-gailoptionmenu.lo \ +- libgail_la-gailpaned.lo libgail_la-gailpixmap.lo \ +- libgail_la-gailprogressbar.lo libgail_la-gailradiobutton.lo \ +- libgail_la-gailradiomenuitem.lo \ +- libgail_la-gailradiosubmenuitem.lo libgail_la-gailrange.lo \ +- libgail_la-gailrenderercell.lo libgail_la-gailscale.lo \ +- libgail_la-gailscalebutton.lo libgail_la-gailscrollbar.lo \ +- libgail_la-gailscrolledwindow.lo libgail_la-gailseparator.lo \ +- libgail_la-gailspinbutton.lo libgail_la-gailsubmenuitem.lo \ +- libgail_la-gailstatusbar.lo libgail_la-gailtextcell.lo \ +- libgail_la-gailtextview.lo libgail_la-gailtogglebutton.lo \ +- libgail_la-gailtoplevel.lo libgail_la-gailtreeview.lo \ +- libgail_la-gailutil.lo libgail_la-gailwidget.lo \ +- libgail_la-gailwindow.lo +-am__objects_2 = +-am_libgail_la_OBJECTS = $(am__objects_1) $(am__objects_2) \ +- $(am__objects_2) +-libgail_la_OBJECTS = $(am_libgail_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libgail_la-gail.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailadjustment.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailarrow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailbooleancell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailbox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcalendar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcellparent.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcheckmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailchecksubmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailclist.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailclistcell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcombo.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcombobox.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcontainer.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailcontainercell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailentry.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailexpander.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailframe.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailimage.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailimagecell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gaillabel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gaillist.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailmenu.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailmenushell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailnotebook.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailnotebookpage.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailobject.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailoptionmenu.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailpaned.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailpixmap.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailprogressbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailradiobutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailradiomenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailradiosubmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailrange.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailrenderercell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailscale.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailscalebutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailscrollbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailscrolledwindow.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailseparator.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailspinbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailstatusbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailsubmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailtextcell.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailtextview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailtogglebutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailtoplevel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailtreeview.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailutil.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailwidget.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libgail_la-gailwindow.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libgail_la_SOURCES) +-HEADERS = $(libgailinclude_HEADERS) +- +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(libgailinclude_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl ChangeLog Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) +-SOURCES = $(libgail_la_SOURCES) +- + all: all-recursive + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/other/gail/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-moduleLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/other/gail/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/other/gail/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(moduledir) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f"; \ +- $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(moduledir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(moduledir)"; \ ++ } + + uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p; \ ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$f"; \ + done + + clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libgail.la: $(libgail_la_OBJECTS) $(libgail_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(libgail_la_LDFLAGS) $(libgail_la_OBJECTS) $(libgail_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libgail_la_LINK) -rpath $(moduledir) $(libgail_la_OBJECTS) $(libgail_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -824,1913 +748,502 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgail_la-gailwindow.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +- +-libgail_la-gail.o: gail.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gail.o -MD -MP -MF "$(DEPDIR)/libgail_la-gail.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gail.o `test -f 'gail.c' || echo '$(srcdir)/'`gail.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gail.Tpo" "$(DEPDIR)/libgail_la-gail.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gail.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gail.c' object='libgail_la-gail.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gail.Po' tmpdepfile='$(DEPDIR)/libgail_la-gail.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gail.o `test -f 'gail.c' || echo '$(srcdir)/'`gail.c +- +-libgail_la-gail.obj: gail.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gail.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gail.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gail.obj `if test -f 'gail.c'; then $(CYGPATH_W) 'gail.c'; else $(CYGPATH_W) '$(srcdir)/gail.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gail.Tpo" "$(DEPDIR)/libgail_la-gail.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gail.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gail.c' object='libgail_la-gail.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gail.Po' tmpdepfile='$(DEPDIR)/libgail_la-gail.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gail.obj `if test -f 'gail.c'; then $(CYGPATH_W) 'gail.c'; else $(CYGPATH_W) '$(srcdir)/gail.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + libgail_la-gail.lo: gail.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gail.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gail.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gail.lo `test -f 'gail.c' || echo '$(srcdir)/'`gail.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gail.Tpo" "$(DEPDIR)/libgail_la-gail.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gail.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gail.lo -MD -MP -MF $(DEPDIR)/libgail_la-gail.Tpo -c -o libgail_la-gail.lo `test -f 'gail.c' || echo '$(srcdir)/'`gail.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gail.Tpo $(DEPDIR)/libgail_la-gail.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gail.c' object='libgail_la-gail.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gail.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gail.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gail.lo `test -f 'gail.c' || echo '$(srcdir)/'`gail.c +- +-libgail_la-gailadjustment.o: gailadjustment.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailadjustment.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailadjustment.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailadjustment.o `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo" "$(DEPDIR)/libgail_la-gailadjustment.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailadjustment.c' object='libgail_la-gailadjustment.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailadjustment.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailadjustment.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailadjustment.o `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c +- +-libgail_la-gailadjustment.obj: gailadjustment.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailadjustment.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailadjustment.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailadjustment.obj `if test -f 'gailadjustment.c'; then $(CYGPATH_W) 'gailadjustment.c'; else $(CYGPATH_W) '$(srcdir)/gailadjustment.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo" "$(DEPDIR)/libgail_la-gailadjustment.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailadjustment.c' object='libgail_la-gailadjustment.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailadjustment.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailadjustment.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailadjustment.obj `if test -f 'gailadjustment.c'; then $(CYGPATH_W) 'gailadjustment.c'; else $(CYGPATH_W) '$(srcdir)/gailadjustment.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gail.lo `test -f 'gail.c' || echo '$(srcdir)/'`gail.c + + libgail_la-gailadjustment.lo: gailadjustment.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailadjustment.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailadjustment.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailadjustment.lo `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo" "$(DEPDIR)/libgail_la-gailadjustment.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailadjustment.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailadjustment.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailadjustment.Tpo -c -o libgail_la-gailadjustment.lo `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailadjustment.Tpo $(DEPDIR)/libgail_la-gailadjustment.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailadjustment.c' object='libgail_la-gailadjustment.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailadjustment.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailadjustment.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailadjustment.lo `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c +- +-libgail_la-gailarrow.o: gailarrow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailarrow.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailarrow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailarrow.o `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailarrow.Tpo" "$(DEPDIR)/libgail_la-gailarrow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailarrow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailarrow.c' object='libgail_la-gailarrow.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailarrow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailarrow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailarrow.o `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c +- +-libgail_la-gailarrow.obj: gailarrow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailarrow.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailarrow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailarrow.obj `if test -f 'gailarrow.c'; then $(CYGPATH_W) 'gailarrow.c'; else $(CYGPATH_W) '$(srcdir)/gailarrow.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailarrow.Tpo" "$(DEPDIR)/libgail_la-gailarrow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailarrow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailarrow.c' object='libgail_la-gailarrow.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailarrow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailarrow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailarrow.obj `if test -f 'gailarrow.c'; then $(CYGPATH_W) 'gailarrow.c'; else $(CYGPATH_W) '$(srcdir)/gailarrow.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailadjustment.lo `test -f 'gailadjustment.c' || echo '$(srcdir)/'`gailadjustment.c + + libgail_la-gailarrow.lo: gailarrow.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailarrow.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailarrow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailarrow.lo `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailarrow.Tpo" "$(DEPDIR)/libgail_la-gailarrow.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailarrow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailarrow.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailarrow.Tpo -c -o libgail_la-gailarrow.lo `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailarrow.Tpo $(DEPDIR)/libgail_la-gailarrow.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailarrow.c' object='libgail_la-gailarrow.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailarrow.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailarrow.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailarrow.lo `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c +- +-libgail_la-gailbooleancell.o: gailbooleancell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbooleancell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbooleancell.o `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" "$(DEPDIR)/libgail_la-gailbooleancell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbooleancell.c' object='libgail_la-gailbooleancell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbooleancell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbooleancell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbooleancell.o `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c +- +-libgail_la-gailbooleancell.obj: gailbooleancell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbooleancell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbooleancell.obj `if test -f 'gailbooleancell.c'; then $(CYGPATH_W) 'gailbooleancell.c'; else $(CYGPATH_W) '$(srcdir)/gailbooleancell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" "$(DEPDIR)/libgail_la-gailbooleancell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbooleancell.c' object='libgail_la-gailbooleancell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbooleancell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbooleancell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbooleancell.obj `if test -f 'gailbooleancell.c'; then $(CYGPATH_W) 'gailbooleancell.c'; else $(CYGPATH_W) '$(srcdir)/gailbooleancell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailarrow.lo `test -f 'gailarrow.c' || echo '$(srcdir)/'`gailarrow.c + + libgail_la-gailbooleancell.lo: gailbooleancell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbooleancell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbooleancell.lo `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo" "$(DEPDIR)/libgail_la-gailbooleancell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbooleancell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbooleancell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailbooleancell.Tpo -c -o libgail_la-gailbooleancell.lo `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailbooleancell.Tpo $(DEPDIR)/libgail_la-gailbooleancell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbooleancell.c' object='libgail_la-gailbooleancell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbooleancell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailbooleancell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbooleancell.lo `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c +- +-libgail_la-gailbox.o: gailbox.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbox.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailbox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbox.o `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbox.Tpo" "$(DEPDIR)/libgail_la-gailbox.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbox.c' object='libgail_la-gailbox.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbox.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbox.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbox.o `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c +- +-libgail_la-gailbox.obj: gailbox.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbox.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailbox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbox.obj `if test -f 'gailbox.c'; then $(CYGPATH_W) 'gailbox.c'; else $(CYGPATH_W) '$(srcdir)/gailbox.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbox.Tpo" "$(DEPDIR)/libgail_la-gailbox.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbox.c' object='libgail_la-gailbox.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbox.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbox.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbox.obj `if test -f 'gailbox.c'; then $(CYGPATH_W) 'gailbox.c'; else $(CYGPATH_W) '$(srcdir)/gailbox.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbooleancell.lo `test -f 'gailbooleancell.c' || echo '$(srcdir)/'`gailbooleancell.c + + libgail_la-gailbox.lo: gailbox.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbox.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailbox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbox.lo `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbox.Tpo" "$(DEPDIR)/libgail_la-gailbox.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbox.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailbox.Tpo -c -o libgail_la-gailbox.lo `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailbox.Tpo $(DEPDIR)/libgail_la-gailbox.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbox.c' object='libgail_la-gailbox.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbox.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailbox.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbox.lo `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c +- +-libgail_la-gailbutton.o: gailbutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbutton.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbutton.o `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbutton.Tpo" "$(DEPDIR)/libgail_la-gailbutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbutton.c' object='libgail_la-gailbutton.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbutton.o `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c +- +-libgail_la-gailbutton.obj: gailbutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbutton.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbutton.obj `if test -f 'gailbutton.c'; then $(CYGPATH_W) 'gailbutton.c'; else $(CYGPATH_W) '$(srcdir)/gailbutton.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbutton.Tpo" "$(DEPDIR)/libgail_la-gailbutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbutton.c' object='libgail_la-gailbutton.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailbutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbutton.obj `if test -f 'gailbutton.c'; then $(CYGPATH_W) 'gailbutton.c'; else $(CYGPATH_W) '$(srcdir)/gailbutton.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbox.lo `test -f 'gailbox.c' || echo '$(srcdir)/'`gailbox.c + + libgail_la-gailbutton.lo: gailbutton.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbutton.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailbutton.lo `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailbutton.Tpo" "$(DEPDIR)/libgail_la-gailbutton.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailbutton.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailbutton.Tpo -c -o libgail_la-gailbutton.lo `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailbutton.Tpo $(DEPDIR)/libgail_la-gailbutton.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailbutton.c' object='libgail_la-gailbutton.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailbutton.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailbutton.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbutton.lo `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c +- +-libgail_la-gailcalendar.o: gailcalendar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcalendar.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcalendar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcalendar.o `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo" "$(DEPDIR)/libgail_la-gailcalendar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcalendar.c' object='libgail_la-gailcalendar.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcalendar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcalendar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcalendar.o `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c +- +-libgail_la-gailcalendar.obj: gailcalendar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcalendar.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcalendar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcalendar.obj `if test -f 'gailcalendar.c'; then $(CYGPATH_W) 'gailcalendar.c'; else $(CYGPATH_W) '$(srcdir)/gailcalendar.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo" "$(DEPDIR)/libgail_la-gailcalendar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcalendar.c' object='libgail_la-gailcalendar.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcalendar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcalendar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcalendar.obj `if test -f 'gailcalendar.c'; then $(CYGPATH_W) 'gailcalendar.c'; else $(CYGPATH_W) '$(srcdir)/gailcalendar.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailbutton.lo `test -f 'gailbutton.c' || echo '$(srcdir)/'`gailbutton.c + + libgail_la-gailcalendar.lo: gailcalendar.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcalendar.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcalendar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcalendar.lo `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo" "$(DEPDIR)/libgail_la-gailcalendar.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcalendar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcalendar.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcalendar.Tpo -c -o libgail_la-gailcalendar.lo `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcalendar.Tpo $(DEPDIR)/libgail_la-gailcalendar.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcalendar.c' object='libgail_la-gailcalendar.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcalendar.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcalendar.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcalendar.lo `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c +- +-libgail_la-gailcell.o: gailcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcell.o `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcell.Tpo" "$(DEPDIR)/libgail_la-gailcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcell.c' object='libgail_la-gailcell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcell.o `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c +- +-libgail_la-gailcell.obj: gailcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcell.obj `if test -f 'gailcell.c'; then $(CYGPATH_W) 'gailcell.c'; else $(CYGPATH_W) '$(srcdir)/gailcell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcell.Tpo" "$(DEPDIR)/libgail_la-gailcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcell.c' object='libgail_la-gailcell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcell.obj `if test -f 'gailcell.c'; then $(CYGPATH_W) 'gailcell.c'; else $(CYGPATH_W) '$(srcdir)/gailcell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcalendar.lo `test -f 'gailcalendar.c' || echo '$(srcdir)/'`gailcalendar.c + + libgail_la-gailcell.lo: gailcell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcell.lo `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcell.Tpo" "$(DEPDIR)/libgail_la-gailcell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcell.Tpo -c -o libgail_la-gailcell.lo `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcell.Tpo $(DEPDIR)/libgail_la-gailcell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcell.c' object='libgail_la-gailcell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcell.lo `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c +- +-libgail_la-gailcellparent.o: gailcellparent.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcellparent.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcellparent.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcellparent.o `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo" "$(DEPDIR)/libgail_la-gailcellparent.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcellparent.c' object='libgail_la-gailcellparent.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcellparent.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcellparent.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcellparent.o `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c +- +-libgail_la-gailcellparent.obj: gailcellparent.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcellparent.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcellparent.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcellparent.obj `if test -f 'gailcellparent.c'; then $(CYGPATH_W) 'gailcellparent.c'; else $(CYGPATH_W) '$(srcdir)/gailcellparent.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo" "$(DEPDIR)/libgail_la-gailcellparent.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcellparent.c' object='libgail_la-gailcellparent.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcellparent.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcellparent.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcellparent.obj `if test -f 'gailcellparent.c'; then $(CYGPATH_W) 'gailcellparent.c'; else $(CYGPATH_W) '$(srcdir)/gailcellparent.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcell.lo `test -f 'gailcell.c' || echo '$(srcdir)/'`gailcell.c + + libgail_la-gailcellparent.lo: gailcellparent.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcellparent.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcellparent.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcellparent.lo `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo" "$(DEPDIR)/libgail_la-gailcellparent.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcellparent.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcellparent.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcellparent.Tpo -c -o libgail_la-gailcellparent.lo `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcellparent.Tpo $(DEPDIR)/libgail_la-gailcellparent.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcellparent.c' object='libgail_la-gailcellparent.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcellparent.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcellparent.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcellparent.lo `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c +- +-libgail_la-gailcheckmenuitem.o: gailcheckmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcheckmenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcheckmenuitem.o `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailcheckmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcheckmenuitem.c' object='libgail_la-gailcheckmenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcheckmenuitem.o `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c +- +-libgail_la-gailcheckmenuitem.obj: gailcheckmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcheckmenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcheckmenuitem.obj `if test -f 'gailcheckmenuitem.c'; then $(CYGPATH_W) 'gailcheckmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailcheckmenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailcheckmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcheckmenuitem.c' object='libgail_la-gailcheckmenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcheckmenuitem.obj `if test -f 'gailcheckmenuitem.c'; then $(CYGPATH_W) 'gailcheckmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailcheckmenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcellparent.lo `test -f 'gailcellparent.c' || echo '$(srcdir)/'`gailcellparent.c + + libgail_la-gailcheckmenuitem.lo: gailcheckmenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcheckmenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcheckmenuitem.lo `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailcheckmenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcheckmenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo -c -o libgail_la-gailcheckmenuitem.lo `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcheckmenuitem.Tpo $(DEPDIR)/libgail_la-gailcheckmenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcheckmenuitem.c' object='libgail_la-gailcheckmenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcheckmenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcheckmenuitem.lo `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c +- +-libgail_la-gailchecksubmenuitem.o: gailchecksubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailchecksubmenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailchecksubmenuitem.o `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailchecksubmenuitem.c' object='libgail_la-gailchecksubmenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailchecksubmenuitem.o `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c +- +-libgail_la-gailchecksubmenuitem.obj: gailchecksubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailchecksubmenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailchecksubmenuitem.obj `if test -f 'gailchecksubmenuitem.c'; then $(CYGPATH_W) 'gailchecksubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailchecksubmenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailchecksubmenuitem.c' object='libgail_la-gailchecksubmenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailchecksubmenuitem.obj `if test -f 'gailchecksubmenuitem.c'; then $(CYGPATH_W) 'gailchecksubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailchecksubmenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcheckmenuitem.lo `test -f 'gailcheckmenuitem.c' || echo '$(srcdir)/'`gailcheckmenuitem.c + + libgail_la-gailchecksubmenuitem.lo: gailchecksubmenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailchecksubmenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailchecksubmenuitem.lo `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailchecksubmenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo -c -o libgail_la-gailchecksubmenuitem.lo `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailchecksubmenuitem.Tpo $(DEPDIR)/libgail_la-gailchecksubmenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailchecksubmenuitem.c' object='libgail_la-gailchecksubmenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailchecksubmenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailchecksubmenuitem.lo `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c +- +-libgail_la-gailclist.o: gailclist.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclist.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailclist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclist.o `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclist.Tpo" "$(DEPDIR)/libgail_la-gailclist.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclist.c' object='libgail_la-gailclist.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclist.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailclist.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclist.o `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c +- +-libgail_la-gailclist.obj: gailclist.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclist.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailclist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclist.obj `if test -f 'gailclist.c'; then $(CYGPATH_W) 'gailclist.c'; else $(CYGPATH_W) '$(srcdir)/gailclist.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclist.Tpo" "$(DEPDIR)/libgail_la-gailclist.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclist.c' object='libgail_la-gailclist.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclist.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailclist.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclist.obj `if test -f 'gailclist.c'; then $(CYGPATH_W) 'gailclist.c'; else $(CYGPATH_W) '$(srcdir)/gailclist.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailchecksubmenuitem.lo `test -f 'gailchecksubmenuitem.c' || echo '$(srcdir)/'`gailchecksubmenuitem.c + + libgail_la-gailclist.lo: gailclist.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclist.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailclist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclist.lo `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclist.Tpo" "$(DEPDIR)/libgail_la-gailclist.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclist.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailclist.Tpo -c -o libgail_la-gailclist.lo `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailclist.Tpo $(DEPDIR)/libgail_la-gailclist.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclist.c' object='libgail_la-gailclist.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclist.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailclist.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclist.lo `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c +- +-libgail_la-gailclistcell.o: gailclistcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclistcell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailclistcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclistcell.o `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo" "$(DEPDIR)/libgail_la-gailclistcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclistcell.c' object='libgail_la-gailclistcell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclistcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailclistcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclistcell.o `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c +- +-libgail_la-gailclistcell.obj: gailclistcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclistcell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailclistcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclistcell.obj `if test -f 'gailclistcell.c'; then $(CYGPATH_W) 'gailclistcell.c'; else $(CYGPATH_W) '$(srcdir)/gailclistcell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo" "$(DEPDIR)/libgail_la-gailclistcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclistcell.c' object='libgail_la-gailclistcell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclistcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailclistcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclistcell.obj `if test -f 'gailclistcell.c'; then $(CYGPATH_W) 'gailclistcell.c'; else $(CYGPATH_W) '$(srcdir)/gailclistcell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclist.lo `test -f 'gailclist.c' || echo '$(srcdir)/'`gailclist.c + + libgail_la-gailclistcell.lo: gailclistcell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclistcell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailclistcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailclistcell.lo `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo" "$(DEPDIR)/libgail_la-gailclistcell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailclistcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailclistcell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailclistcell.Tpo -c -o libgail_la-gailclistcell.lo `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailclistcell.Tpo $(DEPDIR)/libgail_la-gailclistcell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailclistcell.c' object='libgail_la-gailclistcell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailclistcell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailclistcell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclistcell.lo `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c +- +-libgail_la-gailcombo.o: gailcombo.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombo.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombo.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombo.o `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombo.Tpo" "$(DEPDIR)/libgail_la-gailcombo.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombo.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombo.c' object='libgail_la-gailcombo.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombo.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcombo.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombo.o `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c +- +-libgail_la-gailcombo.obj: gailcombo.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombo.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombo.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombo.obj `if test -f 'gailcombo.c'; then $(CYGPATH_W) 'gailcombo.c'; else $(CYGPATH_W) '$(srcdir)/gailcombo.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombo.Tpo" "$(DEPDIR)/libgail_la-gailcombo.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombo.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombo.c' object='libgail_la-gailcombo.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombo.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcombo.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombo.obj `if test -f 'gailcombo.c'; then $(CYGPATH_W) 'gailcombo.c'; else $(CYGPATH_W) '$(srcdir)/gailcombo.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailclistcell.lo `test -f 'gailclistcell.c' || echo '$(srcdir)/'`gailclistcell.c + + libgail_la-gailcombo.lo: gailcombo.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombo.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombo.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombo.lo `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombo.Tpo" "$(DEPDIR)/libgail_la-gailcombo.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombo.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombo.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcombo.Tpo -c -o libgail_la-gailcombo.lo `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcombo.Tpo $(DEPDIR)/libgail_la-gailcombo.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombo.c' object='libgail_la-gailcombo.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombo.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcombo.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombo.lo `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c +- +-libgail_la-gailcombobox.o: gailcombobox.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombobox.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombobox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombobox.o `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo" "$(DEPDIR)/libgail_la-gailcombobox.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombobox.c' object='libgail_la-gailcombobox.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombobox.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcombobox.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombobox.o `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c +- +-libgail_la-gailcombobox.obj: gailcombobox.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombobox.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombobox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombobox.obj `if test -f 'gailcombobox.c'; then $(CYGPATH_W) 'gailcombobox.c'; else $(CYGPATH_W) '$(srcdir)/gailcombobox.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo" "$(DEPDIR)/libgail_la-gailcombobox.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombobox.c' object='libgail_la-gailcombobox.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombobox.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcombobox.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombobox.obj `if test -f 'gailcombobox.c'; then $(CYGPATH_W) 'gailcombobox.c'; else $(CYGPATH_W) '$(srcdir)/gailcombobox.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombo.lo `test -f 'gailcombo.c' || echo '$(srcdir)/'`gailcombo.c + + libgail_la-gailcombobox.lo: gailcombobox.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombobox.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcombobox.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcombobox.lo `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo" "$(DEPDIR)/libgail_la-gailcombobox.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcombobox.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcombobox.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcombobox.Tpo -c -o libgail_la-gailcombobox.lo `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcombobox.Tpo $(DEPDIR)/libgail_la-gailcombobox.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcombobox.c' object='libgail_la-gailcombobox.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcombobox.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcombobox.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombobox.lo `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c +- +-libgail_la-gailcontainer.o: gailcontainer.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainer.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainer.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainer.o `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo" "$(DEPDIR)/libgail_la-gailcontainer.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainer.c' object='libgail_la-gailcontainer.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainer.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainer.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainer.o `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c +- +-libgail_la-gailcontainer.obj: gailcontainer.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainer.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainer.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainer.obj `if test -f 'gailcontainer.c'; then $(CYGPATH_W) 'gailcontainer.c'; else $(CYGPATH_W) '$(srcdir)/gailcontainer.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo" "$(DEPDIR)/libgail_la-gailcontainer.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainer.c' object='libgail_la-gailcontainer.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainer.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainer.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainer.obj `if test -f 'gailcontainer.c'; then $(CYGPATH_W) 'gailcontainer.c'; else $(CYGPATH_W) '$(srcdir)/gailcontainer.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcombobox.lo `test -f 'gailcombobox.c' || echo '$(srcdir)/'`gailcombobox.c + + libgail_la-gailcontainer.lo: gailcontainer.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainer.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainer.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainer.lo `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo" "$(DEPDIR)/libgail_la-gailcontainer.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainer.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainer.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcontainer.Tpo -c -o libgail_la-gailcontainer.lo `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcontainer.Tpo $(DEPDIR)/libgail_la-gailcontainer.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainer.c' object='libgail_la-gailcontainer.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainer.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainer.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainer.lo `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c +- +-libgail_la-gailcontainercell.o: gailcontainercell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainercell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainercell.o `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" "$(DEPDIR)/libgail_la-gailcontainercell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainercell.c' object='libgail_la-gailcontainercell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainercell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainercell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainercell.o `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c +- +-libgail_la-gailcontainercell.obj: gailcontainercell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainercell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainercell.obj `if test -f 'gailcontainercell.c'; then $(CYGPATH_W) 'gailcontainercell.c'; else $(CYGPATH_W) '$(srcdir)/gailcontainercell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" "$(DEPDIR)/libgail_la-gailcontainercell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainercell.c' object='libgail_la-gailcontainercell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainercell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainercell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainercell.obj `if test -f 'gailcontainercell.c'; then $(CYGPATH_W) 'gailcontainercell.c'; else $(CYGPATH_W) '$(srcdir)/gailcontainercell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainer.lo `test -f 'gailcontainer.c' || echo '$(srcdir)/'`gailcontainer.c + + libgail_la-gailcontainercell.lo: gailcontainercell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainercell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailcontainercell.lo `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo" "$(DEPDIR)/libgail_la-gailcontainercell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailcontainercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailcontainercell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailcontainercell.Tpo -c -o libgail_la-gailcontainercell.lo `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailcontainercell.Tpo $(DEPDIR)/libgail_la-gailcontainercell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailcontainercell.c' object='libgail_la-gailcontainercell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailcontainercell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailcontainercell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainercell.lo `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c +- +-libgail_la-gailentry.o: gailentry.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailentry.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailentry.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailentry.o `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailentry.Tpo" "$(DEPDIR)/libgail_la-gailentry.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailentry.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailentry.c' object='libgail_la-gailentry.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailentry.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailentry.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailentry.o `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c +- +-libgail_la-gailentry.obj: gailentry.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailentry.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailentry.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailentry.obj `if test -f 'gailentry.c'; then $(CYGPATH_W) 'gailentry.c'; else $(CYGPATH_W) '$(srcdir)/gailentry.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailentry.Tpo" "$(DEPDIR)/libgail_la-gailentry.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailentry.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailentry.c' object='libgail_la-gailentry.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailentry.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailentry.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailentry.obj `if test -f 'gailentry.c'; then $(CYGPATH_W) 'gailentry.c'; else $(CYGPATH_W) '$(srcdir)/gailentry.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailcontainercell.lo `test -f 'gailcontainercell.c' || echo '$(srcdir)/'`gailcontainercell.c + + libgail_la-gailentry.lo: gailentry.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailentry.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailentry.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailentry.lo `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailentry.Tpo" "$(DEPDIR)/libgail_la-gailentry.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailentry.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailentry.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailentry.Tpo -c -o libgail_la-gailentry.lo `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailentry.Tpo $(DEPDIR)/libgail_la-gailentry.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailentry.c' object='libgail_la-gailentry.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailentry.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailentry.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailentry.lo `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c +- +-libgail_la-gailexpander.o: gailexpander.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailexpander.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailexpander.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailexpander.o `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailexpander.Tpo" "$(DEPDIR)/libgail_la-gailexpander.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailexpander.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailexpander.c' object='libgail_la-gailexpander.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailexpander.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailexpander.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailexpander.o `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c +- +-libgail_la-gailexpander.obj: gailexpander.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailexpander.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailexpander.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailexpander.obj `if test -f 'gailexpander.c'; then $(CYGPATH_W) 'gailexpander.c'; else $(CYGPATH_W) '$(srcdir)/gailexpander.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailexpander.Tpo" "$(DEPDIR)/libgail_la-gailexpander.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailexpander.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailexpander.c' object='libgail_la-gailexpander.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailexpander.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailexpander.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailexpander.obj `if test -f 'gailexpander.c'; then $(CYGPATH_W) 'gailexpander.c'; else $(CYGPATH_W) '$(srcdir)/gailexpander.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailentry.lo `test -f 'gailentry.c' || echo '$(srcdir)/'`gailentry.c + + libgail_la-gailexpander.lo: gailexpander.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailexpander.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailexpander.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailexpander.lo `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailexpander.Tpo" "$(DEPDIR)/libgail_la-gailexpander.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailexpander.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailexpander.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailexpander.Tpo -c -o libgail_la-gailexpander.lo `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailexpander.Tpo $(DEPDIR)/libgail_la-gailexpander.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailexpander.c' object='libgail_la-gailexpander.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailexpander.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailexpander.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailexpander.lo `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c +- +-libgail_la-gailframe.o: gailframe.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailframe.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailframe.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailframe.o `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailframe.Tpo" "$(DEPDIR)/libgail_la-gailframe.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailframe.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailframe.c' object='libgail_la-gailframe.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailframe.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailframe.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailframe.o `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c +- +-libgail_la-gailframe.obj: gailframe.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailframe.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailframe.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailframe.obj `if test -f 'gailframe.c'; then $(CYGPATH_W) 'gailframe.c'; else $(CYGPATH_W) '$(srcdir)/gailframe.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailframe.Tpo" "$(DEPDIR)/libgail_la-gailframe.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailframe.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailframe.c' object='libgail_la-gailframe.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailframe.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailframe.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailframe.obj `if test -f 'gailframe.c'; then $(CYGPATH_W) 'gailframe.c'; else $(CYGPATH_W) '$(srcdir)/gailframe.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailexpander.lo `test -f 'gailexpander.c' || echo '$(srcdir)/'`gailexpander.c + + libgail_la-gailframe.lo: gailframe.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailframe.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailframe.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailframe.lo `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailframe.Tpo" "$(DEPDIR)/libgail_la-gailframe.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailframe.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailframe.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailframe.Tpo -c -o libgail_la-gailframe.lo `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailframe.Tpo $(DEPDIR)/libgail_la-gailframe.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailframe.c' object='libgail_la-gailframe.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailframe.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailframe.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailframe.lo `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c +- +-libgail_la-gailimage.o: gailimage.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimage.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailimage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimage.o `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimage.Tpo" "$(DEPDIR)/libgail_la-gailimage.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimage.c' object='libgail_la-gailimage.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimage.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailimage.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimage.o `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c +- +-libgail_la-gailimage.obj: gailimage.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimage.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailimage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimage.obj `if test -f 'gailimage.c'; then $(CYGPATH_W) 'gailimage.c'; else $(CYGPATH_W) '$(srcdir)/gailimage.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimage.Tpo" "$(DEPDIR)/libgail_la-gailimage.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimage.c' object='libgail_la-gailimage.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimage.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailimage.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimage.obj `if test -f 'gailimage.c'; then $(CYGPATH_W) 'gailimage.c'; else $(CYGPATH_W) '$(srcdir)/gailimage.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailframe.lo `test -f 'gailframe.c' || echo '$(srcdir)/'`gailframe.c + + libgail_la-gailimage.lo: gailimage.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimage.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailimage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimage.lo `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimage.Tpo" "$(DEPDIR)/libgail_la-gailimage.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimage.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailimage.Tpo -c -o libgail_la-gailimage.lo `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailimage.Tpo $(DEPDIR)/libgail_la-gailimage.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimage.c' object='libgail_la-gailimage.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimage.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailimage.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimage.lo `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c +- +-libgail_la-gailimagecell.o: gailimagecell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimagecell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailimagecell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimagecell.o `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo" "$(DEPDIR)/libgail_la-gailimagecell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimagecell.c' object='libgail_la-gailimagecell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimagecell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailimagecell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimagecell.o `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c +- +-libgail_la-gailimagecell.obj: gailimagecell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimagecell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailimagecell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimagecell.obj `if test -f 'gailimagecell.c'; then $(CYGPATH_W) 'gailimagecell.c'; else $(CYGPATH_W) '$(srcdir)/gailimagecell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo" "$(DEPDIR)/libgail_la-gailimagecell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimagecell.c' object='libgail_la-gailimagecell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimagecell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailimagecell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimagecell.obj `if test -f 'gailimagecell.c'; then $(CYGPATH_W) 'gailimagecell.c'; else $(CYGPATH_W) '$(srcdir)/gailimagecell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimage.lo `test -f 'gailimage.c' || echo '$(srcdir)/'`gailimage.c + + libgail_la-gailimagecell.lo: gailimagecell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimagecell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailimagecell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailimagecell.lo `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo" "$(DEPDIR)/libgail_la-gailimagecell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailimagecell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailimagecell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailimagecell.Tpo -c -o libgail_la-gailimagecell.lo `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailimagecell.Tpo $(DEPDIR)/libgail_la-gailimagecell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailimagecell.c' object='libgail_la-gailimagecell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailimagecell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailimagecell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimagecell.lo `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c +- +-libgail_la-gailitem.o: gailitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailitem.o `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailitem.Tpo" "$(DEPDIR)/libgail_la-gailitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailitem.c' object='libgail_la-gailitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailitem.o `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c +- +-libgail_la-gailitem.obj: gailitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailitem.obj `if test -f 'gailitem.c'; then $(CYGPATH_W) 'gailitem.c'; else $(CYGPATH_W) '$(srcdir)/gailitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailitem.Tpo" "$(DEPDIR)/libgail_la-gailitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailitem.c' object='libgail_la-gailitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailitem.obj `if test -f 'gailitem.c'; then $(CYGPATH_W) 'gailitem.c'; else $(CYGPATH_W) '$(srcdir)/gailitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailimagecell.lo `test -f 'gailimagecell.c' || echo '$(srcdir)/'`gailimagecell.c + + libgail_la-gailitem.lo: gailitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailitem.lo `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailitem.Tpo" "$(DEPDIR)/libgail_la-gailitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailitem.Tpo -c -o libgail_la-gailitem.lo `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailitem.Tpo $(DEPDIR)/libgail_la-gailitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailitem.c' object='libgail_la-gailitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailitem.lo `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c +- +-libgail_la-gaillabel.o: gaillabel.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillabel.o -MD -MP -MF "$(DEPDIR)/libgail_la-gaillabel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillabel.o `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillabel.Tpo" "$(DEPDIR)/libgail_la-gaillabel.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillabel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillabel.c' object='libgail_la-gaillabel.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillabel.Po' tmpdepfile='$(DEPDIR)/libgail_la-gaillabel.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillabel.o `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c +- +-libgail_la-gaillabel.obj: gaillabel.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillabel.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gaillabel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillabel.obj `if test -f 'gaillabel.c'; then $(CYGPATH_W) 'gaillabel.c'; else $(CYGPATH_W) '$(srcdir)/gaillabel.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillabel.Tpo" "$(DEPDIR)/libgail_la-gaillabel.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillabel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillabel.c' object='libgail_la-gaillabel.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillabel.Po' tmpdepfile='$(DEPDIR)/libgail_la-gaillabel.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillabel.obj `if test -f 'gaillabel.c'; then $(CYGPATH_W) 'gaillabel.c'; else $(CYGPATH_W) '$(srcdir)/gaillabel.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailitem.lo `test -f 'gailitem.c' || echo '$(srcdir)/'`gailitem.c + + libgail_la-gaillabel.lo: gaillabel.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillabel.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gaillabel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillabel.lo `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillabel.Tpo" "$(DEPDIR)/libgail_la-gaillabel.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillabel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillabel.lo -MD -MP -MF $(DEPDIR)/libgail_la-gaillabel.Tpo -c -o libgail_la-gaillabel.lo `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gaillabel.Tpo $(DEPDIR)/libgail_la-gaillabel.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillabel.c' object='libgail_la-gaillabel.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillabel.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gaillabel.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillabel.lo `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c +- +-libgail_la-gaillist.o: gaillist.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillist.o -MD -MP -MF "$(DEPDIR)/libgail_la-gaillist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillist.o `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillist.Tpo" "$(DEPDIR)/libgail_la-gaillist.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillist.c' object='libgail_la-gaillist.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillist.Po' tmpdepfile='$(DEPDIR)/libgail_la-gaillist.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillist.o `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c +- +-libgail_la-gaillist.obj: gaillist.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillist.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gaillist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillist.obj `if test -f 'gaillist.c'; then $(CYGPATH_W) 'gaillist.c'; else $(CYGPATH_W) '$(srcdir)/gaillist.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillist.Tpo" "$(DEPDIR)/libgail_la-gaillist.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillist.c' object='libgail_la-gaillist.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillist.Po' tmpdepfile='$(DEPDIR)/libgail_la-gaillist.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillist.obj `if test -f 'gaillist.c'; then $(CYGPATH_W) 'gaillist.c'; else $(CYGPATH_W) '$(srcdir)/gaillist.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillabel.lo `test -f 'gaillabel.c' || echo '$(srcdir)/'`gaillabel.c + + libgail_la-gaillist.lo: gaillist.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillist.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gaillist.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gaillist.lo `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gaillist.Tpo" "$(DEPDIR)/libgail_la-gaillist.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gaillist.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gaillist.lo -MD -MP -MF $(DEPDIR)/libgail_la-gaillist.Tpo -c -o libgail_la-gaillist.lo `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gaillist.Tpo $(DEPDIR)/libgail_la-gaillist.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gaillist.c' object='libgail_la-gaillist.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gaillist.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gaillist.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillist.lo `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c +- +-libgail_la-gailmenu.o: gailmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenu.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenu.o `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenu.Tpo" "$(DEPDIR)/libgail_la-gailmenu.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenu.c' object='libgail_la-gailmenu.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenu.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenu.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenu.o `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c +- +-libgail_la-gailmenu.obj: gailmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenu.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenu.obj `if test -f 'gailmenu.c'; then $(CYGPATH_W) 'gailmenu.c'; else $(CYGPATH_W) '$(srcdir)/gailmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenu.Tpo" "$(DEPDIR)/libgail_la-gailmenu.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenu.c' object='libgail_la-gailmenu.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenu.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenu.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenu.obj `if test -f 'gailmenu.c'; then $(CYGPATH_W) 'gailmenu.c'; else $(CYGPATH_W) '$(srcdir)/gailmenu.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gaillist.lo `test -f 'gaillist.c' || echo '$(srcdir)/'`gaillist.c + + libgail_la-gailmenu.lo: gailmenu.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenu.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenu.lo `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenu.Tpo" "$(DEPDIR)/libgail_la-gailmenu.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenu.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailmenu.Tpo -c -o libgail_la-gailmenu.lo `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailmenu.Tpo $(DEPDIR)/libgail_la-gailmenu.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenu.c' object='libgail_la-gailmenu.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenu.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailmenu.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenu.lo `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c +- +-libgail_la-gailmenushell.o: gailmenushell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenushell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenushell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenushell.o `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo" "$(DEPDIR)/libgail_la-gailmenushell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenushell.c' object='libgail_la-gailmenushell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenushell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenushell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenushell.o `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c +- +-libgail_la-gailmenushell.obj: gailmenushell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenushell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenushell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenushell.obj `if test -f 'gailmenushell.c'; then $(CYGPATH_W) 'gailmenushell.c'; else $(CYGPATH_W) '$(srcdir)/gailmenushell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo" "$(DEPDIR)/libgail_la-gailmenushell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenushell.c' object='libgail_la-gailmenushell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenushell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenushell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenushell.obj `if test -f 'gailmenushell.c'; then $(CYGPATH_W) 'gailmenushell.c'; else $(CYGPATH_W) '$(srcdir)/gailmenushell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenu.lo `test -f 'gailmenu.c' || echo '$(srcdir)/'`gailmenu.c + + libgail_la-gailmenushell.lo: gailmenushell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenushell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenushell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenushell.lo `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo" "$(DEPDIR)/libgail_la-gailmenushell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenushell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenushell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailmenushell.Tpo -c -o libgail_la-gailmenushell.lo `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailmenushell.Tpo $(DEPDIR)/libgail_la-gailmenushell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenushell.c' object='libgail_la-gailmenushell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenushell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailmenushell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenushell.lo `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c +- +-libgail_la-gailmenuitem.o: gailmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenuitem.o `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenuitem.c' object='libgail_la-gailmenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenuitem.o `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c +- +-libgail_la-gailmenuitem.obj: gailmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenuitem.obj `if test -f 'gailmenuitem.c'; then $(CYGPATH_W) 'gailmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailmenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenuitem.c' object='libgail_la-gailmenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenuitem.obj `if test -f 'gailmenuitem.c'; then $(CYGPATH_W) 'gailmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailmenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenushell.lo `test -f 'gailmenushell.c' || echo '$(srcdir)/'`gailmenushell.c + + libgail_la-gailmenuitem.lo: gailmenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailmenuitem.lo `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailmenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailmenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailmenuitem.Tpo -c -o libgail_la-gailmenuitem.lo `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailmenuitem.Tpo $(DEPDIR)/libgail_la-gailmenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailmenuitem.c' object='libgail_la-gailmenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailmenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailmenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenuitem.lo `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c +- +-libgail_la-gailnotebook.o: gailnotebook.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebook.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebook.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebook.o `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo" "$(DEPDIR)/libgail_la-gailnotebook.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebook.c' object='libgail_la-gailnotebook.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebook.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebook.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebook.o `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c +- +-libgail_la-gailnotebook.obj: gailnotebook.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebook.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebook.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebook.obj `if test -f 'gailnotebook.c'; then $(CYGPATH_W) 'gailnotebook.c'; else $(CYGPATH_W) '$(srcdir)/gailnotebook.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo" "$(DEPDIR)/libgail_la-gailnotebook.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebook.c' object='libgail_la-gailnotebook.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebook.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebook.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebook.obj `if test -f 'gailnotebook.c'; then $(CYGPATH_W) 'gailnotebook.c'; else $(CYGPATH_W) '$(srcdir)/gailnotebook.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailmenuitem.lo `test -f 'gailmenuitem.c' || echo '$(srcdir)/'`gailmenuitem.c + + libgail_la-gailnotebook.lo: gailnotebook.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebook.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebook.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebook.lo `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo" "$(DEPDIR)/libgail_la-gailnotebook.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebook.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebook.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailnotebook.Tpo -c -o libgail_la-gailnotebook.lo `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailnotebook.Tpo $(DEPDIR)/libgail_la-gailnotebook.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebook.c' object='libgail_la-gailnotebook.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebook.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebook.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebook.lo `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c +- +-libgail_la-gailnotebookpage.o: gailnotebookpage.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebookpage.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebookpage.o `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" "$(DEPDIR)/libgail_la-gailnotebookpage.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebookpage.c' object='libgail_la-gailnotebookpage.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebookpage.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebookpage.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebookpage.o `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c +- +-libgail_la-gailnotebookpage.obj: gailnotebookpage.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebookpage.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebookpage.obj `if test -f 'gailnotebookpage.c'; then $(CYGPATH_W) 'gailnotebookpage.c'; else $(CYGPATH_W) '$(srcdir)/gailnotebookpage.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" "$(DEPDIR)/libgail_la-gailnotebookpage.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebookpage.c' object='libgail_la-gailnotebookpage.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebookpage.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebookpage.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebookpage.obj `if test -f 'gailnotebookpage.c'; then $(CYGPATH_W) 'gailnotebookpage.c'; else $(CYGPATH_W) '$(srcdir)/gailnotebookpage.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebook.lo `test -f 'gailnotebook.c' || echo '$(srcdir)/'`gailnotebook.c + + libgail_la-gailnotebookpage.lo: gailnotebookpage.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebookpage.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailnotebookpage.lo `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo" "$(DEPDIR)/libgail_la-gailnotebookpage.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailnotebookpage.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailnotebookpage.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailnotebookpage.Tpo -c -o libgail_la-gailnotebookpage.lo `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailnotebookpage.Tpo $(DEPDIR)/libgail_la-gailnotebookpage.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailnotebookpage.c' object='libgail_la-gailnotebookpage.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailnotebookpage.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailnotebookpage.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebookpage.lo `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c +- +-libgail_la-gailobject.o: gailobject.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailobject.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailobject.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailobject.o `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailobject.Tpo" "$(DEPDIR)/libgail_la-gailobject.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailobject.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailobject.c' object='libgail_la-gailobject.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailobject.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailobject.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailobject.o `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c +- +-libgail_la-gailobject.obj: gailobject.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailobject.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailobject.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailobject.obj `if test -f 'gailobject.c'; then $(CYGPATH_W) 'gailobject.c'; else $(CYGPATH_W) '$(srcdir)/gailobject.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailobject.Tpo" "$(DEPDIR)/libgail_la-gailobject.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailobject.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailobject.c' object='libgail_la-gailobject.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailobject.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailobject.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailobject.obj `if test -f 'gailobject.c'; then $(CYGPATH_W) 'gailobject.c'; else $(CYGPATH_W) '$(srcdir)/gailobject.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailnotebookpage.lo `test -f 'gailnotebookpage.c' || echo '$(srcdir)/'`gailnotebookpage.c + + libgail_la-gailobject.lo: gailobject.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailobject.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailobject.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailobject.lo `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailobject.Tpo" "$(DEPDIR)/libgail_la-gailobject.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailobject.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailobject.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailobject.Tpo -c -o libgail_la-gailobject.lo `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailobject.Tpo $(DEPDIR)/libgail_la-gailobject.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailobject.c' object='libgail_la-gailobject.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailobject.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailobject.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailobject.lo `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c +- +-libgail_la-gailoptionmenu.o: gailoptionmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailoptionmenu.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailoptionmenu.o `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" "$(DEPDIR)/libgail_la-gailoptionmenu.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailoptionmenu.c' object='libgail_la-gailoptionmenu.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailoptionmenu.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailoptionmenu.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailoptionmenu.o `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c +- +-libgail_la-gailoptionmenu.obj: gailoptionmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailoptionmenu.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailoptionmenu.obj `if test -f 'gailoptionmenu.c'; then $(CYGPATH_W) 'gailoptionmenu.c'; else $(CYGPATH_W) '$(srcdir)/gailoptionmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" "$(DEPDIR)/libgail_la-gailoptionmenu.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailoptionmenu.c' object='libgail_la-gailoptionmenu.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailoptionmenu.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailoptionmenu.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailoptionmenu.obj `if test -f 'gailoptionmenu.c'; then $(CYGPATH_W) 'gailoptionmenu.c'; else $(CYGPATH_W) '$(srcdir)/gailoptionmenu.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailobject.lo `test -f 'gailobject.c' || echo '$(srcdir)/'`gailobject.c + + libgail_la-gailoptionmenu.lo: gailoptionmenu.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailoptionmenu.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailoptionmenu.lo `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo" "$(DEPDIR)/libgail_la-gailoptionmenu.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailoptionmenu.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailoptionmenu.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailoptionmenu.Tpo -c -o libgail_la-gailoptionmenu.lo `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailoptionmenu.Tpo $(DEPDIR)/libgail_la-gailoptionmenu.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailoptionmenu.c' object='libgail_la-gailoptionmenu.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailoptionmenu.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailoptionmenu.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailoptionmenu.lo `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c +- +-libgail_la-gailpaned.o: gailpaned.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpaned.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailpaned.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpaned.o `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpaned.Tpo" "$(DEPDIR)/libgail_la-gailpaned.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpaned.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpaned.c' object='libgail_la-gailpaned.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpaned.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailpaned.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpaned.o `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c +- +-libgail_la-gailpaned.obj: gailpaned.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpaned.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailpaned.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpaned.obj `if test -f 'gailpaned.c'; then $(CYGPATH_W) 'gailpaned.c'; else $(CYGPATH_W) '$(srcdir)/gailpaned.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpaned.Tpo" "$(DEPDIR)/libgail_la-gailpaned.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpaned.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpaned.c' object='libgail_la-gailpaned.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpaned.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailpaned.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpaned.obj `if test -f 'gailpaned.c'; then $(CYGPATH_W) 'gailpaned.c'; else $(CYGPATH_W) '$(srcdir)/gailpaned.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailoptionmenu.lo `test -f 'gailoptionmenu.c' || echo '$(srcdir)/'`gailoptionmenu.c + + libgail_la-gailpaned.lo: gailpaned.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpaned.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailpaned.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpaned.lo `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpaned.Tpo" "$(DEPDIR)/libgail_la-gailpaned.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpaned.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpaned.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailpaned.Tpo -c -o libgail_la-gailpaned.lo `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailpaned.Tpo $(DEPDIR)/libgail_la-gailpaned.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpaned.c' object='libgail_la-gailpaned.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpaned.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailpaned.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpaned.lo `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c +- +-libgail_la-gailpixmap.o: gailpixmap.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpixmap.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailpixmap.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpixmap.o `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo" "$(DEPDIR)/libgail_la-gailpixmap.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpixmap.c' object='libgail_la-gailpixmap.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpixmap.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailpixmap.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpixmap.o `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c +- +-libgail_la-gailpixmap.obj: gailpixmap.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpixmap.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailpixmap.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpixmap.obj `if test -f 'gailpixmap.c'; then $(CYGPATH_W) 'gailpixmap.c'; else $(CYGPATH_W) '$(srcdir)/gailpixmap.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo" "$(DEPDIR)/libgail_la-gailpixmap.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpixmap.c' object='libgail_la-gailpixmap.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpixmap.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailpixmap.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpixmap.obj `if test -f 'gailpixmap.c'; then $(CYGPATH_W) 'gailpixmap.c'; else $(CYGPATH_W) '$(srcdir)/gailpixmap.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpaned.lo `test -f 'gailpaned.c' || echo '$(srcdir)/'`gailpaned.c + + libgail_la-gailpixmap.lo: gailpixmap.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpixmap.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailpixmap.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailpixmap.lo `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo" "$(DEPDIR)/libgail_la-gailpixmap.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailpixmap.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailpixmap.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailpixmap.Tpo -c -o libgail_la-gailpixmap.lo `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailpixmap.Tpo $(DEPDIR)/libgail_la-gailpixmap.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailpixmap.c' object='libgail_la-gailpixmap.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailpixmap.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailpixmap.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpixmap.lo `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c +- +-libgail_la-gailprogressbar.o: gailprogressbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailprogressbar.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailprogressbar.o `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" "$(DEPDIR)/libgail_la-gailprogressbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailprogressbar.c' object='libgail_la-gailprogressbar.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailprogressbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailprogressbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailprogressbar.o `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c +- +-libgail_la-gailprogressbar.obj: gailprogressbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailprogressbar.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailprogressbar.obj `if test -f 'gailprogressbar.c'; then $(CYGPATH_W) 'gailprogressbar.c'; else $(CYGPATH_W) '$(srcdir)/gailprogressbar.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" "$(DEPDIR)/libgail_la-gailprogressbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailprogressbar.c' object='libgail_la-gailprogressbar.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailprogressbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailprogressbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailprogressbar.obj `if test -f 'gailprogressbar.c'; then $(CYGPATH_W) 'gailprogressbar.c'; else $(CYGPATH_W) '$(srcdir)/gailprogressbar.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailpixmap.lo `test -f 'gailpixmap.c' || echo '$(srcdir)/'`gailpixmap.c + + libgail_la-gailprogressbar.lo: gailprogressbar.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailprogressbar.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailprogressbar.lo `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo" "$(DEPDIR)/libgail_la-gailprogressbar.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailprogressbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailprogressbar.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailprogressbar.Tpo -c -o libgail_la-gailprogressbar.lo `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailprogressbar.Tpo $(DEPDIR)/libgail_la-gailprogressbar.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailprogressbar.c' object='libgail_la-gailprogressbar.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailprogressbar.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailprogressbar.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailprogressbar.lo `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c +- +-libgail_la-gailradiobutton.o: gailradiobutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiobutton.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiobutton.o `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" "$(DEPDIR)/libgail_la-gailradiobutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiobutton.c' object='libgail_la-gailradiobutton.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiobutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiobutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiobutton.o `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c +- +-libgail_la-gailradiobutton.obj: gailradiobutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiobutton.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiobutton.obj `if test -f 'gailradiobutton.c'; then $(CYGPATH_W) 'gailradiobutton.c'; else $(CYGPATH_W) '$(srcdir)/gailradiobutton.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" "$(DEPDIR)/libgail_la-gailradiobutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiobutton.c' object='libgail_la-gailradiobutton.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiobutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiobutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiobutton.obj `if test -f 'gailradiobutton.c'; then $(CYGPATH_W) 'gailradiobutton.c'; else $(CYGPATH_W) '$(srcdir)/gailradiobutton.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailprogressbar.lo `test -f 'gailprogressbar.c' || echo '$(srcdir)/'`gailprogressbar.c + + libgail_la-gailradiobutton.lo: gailradiobutton.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiobutton.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiobutton.lo `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo" "$(DEPDIR)/libgail_la-gailradiobutton.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiobutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiobutton.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailradiobutton.Tpo -c -o libgail_la-gailradiobutton.lo `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailradiobutton.Tpo $(DEPDIR)/libgail_la-gailradiobutton.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiobutton.c' object='libgail_la-gailradiobutton.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiobutton.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailradiobutton.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiobutton.lo `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c +- +-libgail_la-gailradiomenuitem.o: gailradiomenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiomenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiomenuitem.o `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiomenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiomenuitem.c' object='libgail_la-gailradiomenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiomenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiomenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiomenuitem.o `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c +- +-libgail_la-gailradiomenuitem.obj: gailradiomenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiomenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiomenuitem.obj `if test -f 'gailradiomenuitem.c'; then $(CYGPATH_W) 'gailradiomenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailradiomenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiomenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiomenuitem.c' object='libgail_la-gailradiomenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiomenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiomenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiomenuitem.obj `if test -f 'gailradiomenuitem.c'; then $(CYGPATH_W) 'gailradiomenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailradiomenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiobutton.lo `test -f 'gailradiobutton.c' || echo '$(srcdir)/'`gailradiobutton.c + + libgail_la-gailradiomenuitem.lo: gailradiomenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiomenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiomenuitem.lo `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiomenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiomenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiomenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailradiomenuitem.Tpo -c -o libgail_la-gailradiomenuitem.lo `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailradiomenuitem.Tpo $(DEPDIR)/libgail_la-gailradiomenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiomenuitem.c' object='libgail_la-gailradiomenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiomenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailradiomenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiomenuitem.lo `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c +- +-libgail_la-gailradiosubmenuitem.o: gailradiosubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiosubmenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiosubmenuitem.o `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiosubmenuitem.c' object='libgail_la-gailradiosubmenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiosubmenuitem.o `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c +- +-libgail_la-gailradiosubmenuitem.obj: gailradiosubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiosubmenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiosubmenuitem.obj `if test -f 'gailradiosubmenuitem.c'; then $(CYGPATH_W) 'gailradiosubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailradiosubmenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiosubmenuitem.c' object='libgail_la-gailradiosubmenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiosubmenuitem.obj `if test -f 'gailradiosubmenuitem.c'; then $(CYGPATH_W) 'gailradiosubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailradiosubmenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiomenuitem.lo `test -f 'gailradiomenuitem.c' || echo '$(srcdir)/'`gailradiomenuitem.c + + libgail_la-gailradiosubmenuitem.lo: gailradiosubmenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiosubmenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailradiosubmenuitem.lo `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailradiosubmenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo -c -o libgail_la-gailradiosubmenuitem.lo `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailradiosubmenuitem.Tpo $(DEPDIR)/libgail_la-gailradiosubmenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailradiosubmenuitem.c' object='libgail_la-gailradiosubmenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailradiosubmenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiosubmenuitem.lo `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c +- +-libgail_la-gailrange.o: gailrange.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrange.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailrange.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrange.o `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrange.Tpo" "$(DEPDIR)/libgail_la-gailrange.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrange.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrange.c' object='libgail_la-gailrange.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrange.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailrange.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrange.o `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c +- +-libgail_la-gailrange.obj: gailrange.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrange.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailrange.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrange.obj `if test -f 'gailrange.c'; then $(CYGPATH_W) 'gailrange.c'; else $(CYGPATH_W) '$(srcdir)/gailrange.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrange.Tpo" "$(DEPDIR)/libgail_la-gailrange.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrange.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrange.c' object='libgail_la-gailrange.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrange.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailrange.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrange.obj `if test -f 'gailrange.c'; then $(CYGPATH_W) 'gailrange.c'; else $(CYGPATH_W) '$(srcdir)/gailrange.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailradiosubmenuitem.lo `test -f 'gailradiosubmenuitem.c' || echo '$(srcdir)/'`gailradiosubmenuitem.c + + libgail_la-gailrange.lo: gailrange.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrange.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailrange.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrange.lo `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrange.Tpo" "$(DEPDIR)/libgail_la-gailrange.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrange.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrange.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailrange.Tpo -c -o libgail_la-gailrange.lo `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailrange.Tpo $(DEPDIR)/libgail_la-gailrange.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrange.c' object='libgail_la-gailrange.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrange.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailrange.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrange.lo `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c +- +-libgail_la-gailrenderercell.o: gailrenderercell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrenderercell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrenderercell.o `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" "$(DEPDIR)/libgail_la-gailrenderercell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrenderercell.c' object='libgail_la-gailrenderercell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrenderercell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailrenderercell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrenderercell.o `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c +- +-libgail_la-gailrenderercell.obj: gailrenderercell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrenderercell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrenderercell.obj `if test -f 'gailrenderercell.c'; then $(CYGPATH_W) 'gailrenderercell.c'; else $(CYGPATH_W) '$(srcdir)/gailrenderercell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" "$(DEPDIR)/libgail_la-gailrenderercell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrenderercell.c' object='libgail_la-gailrenderercell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrenderercell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailrenderercell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrenderercell.obj `if test -f 'gailrenderercell.c'; then $(CYGPATH_W) 'gailrenderercell.c'; else $(CYGPATH_W) '$(srcdir)/gailrenderercell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrange.lo `test -f 'gailrange.c' || echo '$(srcdir)/'`gailrange.c + + libgail_la-gailrenderercell.lo: gailrenderercell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrenderercell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailrenderercell.lo `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo" "$(DEPDIR)/libgail_la-gailrenderercell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailrenderercell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailrenderercell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailrenderercell.Tpo -c -o libgail_la-gailrenderercell.lo `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailrenderercell.Tpo $(DEPDIR)/libgail_la-gailrenderercell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailrenderercell.c' object='libgail_la-gailrenderercell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailrenderercell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailrenderercell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrenderercell.lo `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c +- +-libgail_la-gailscale.o: gailscale.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscale.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailscale.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscale.o `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscale.Tpo" "$(DEPDIR)/libgail_la-gailscale.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscale.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscale.c' object='libgail_la-gailscale.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscale.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscale.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscale.o `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c +- +-libgail_la-gailscale.obj: gailscale.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscale.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailscale.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscale.obj `if test -f 'gailscale.c'; then $(CYGPATH_W) 'gailscale.c'; else $(CYGPATH_W) '$(srcdir)/gailscale.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscale.Tpo" "$(DEPDIR)/libgail_la-gailscale.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscale.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscale.c' object='libgail_la-gailscale.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscale.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscale.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscale.obj `if test -f 'gailscale.c'; then $(CYGPATH_W) 'gailscale.c'; else $(CYGPATH_W) '$(srcdir)/gailscale.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailrenderercell.lo `test -f 'gailrenderercell.c' || echo '$(srcdir)/'`gailrenderercell.c + + libgail_la-gailscale.lo: gailscale.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscale.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailscale.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscale.lo `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscale.Tpo" "$(DEPDIR)/libgail_la-gailscale.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscale.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscale.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailscale.Tpo -c -o libgail_la-gailscale.lo `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailscale.Tpo $(DEPDIR)/libgail_la-gailscale.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscale.c' object='libgail_la-gailscale.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscale.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailscale.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscale.lo `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c +- +-libgail_la-gailscalebutton.o: gailscalebutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscalebutton.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscalebutton.o `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" "$(DEPDIR)/libgail_la-gailscalebutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscalebutton.c' object='libgail_la-gailscalebutton.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscalebutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscalebutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscalebutton.o `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c +- +-libgail_la-gailscalebutton.obj: gailscalebutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscalebutton.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscalebutton.obj `if test -f 'gailscalebutton.c'; then $(CYGPATH_W) 'gailscalebutton.c'; else $(CYGPATH_W) '$(srcdir)/gailscalebutton.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" "$(DEPDIR)/libgail_la-gailscalebutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscalebutton.c' object='libgail_la-gailscalebutton.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscalebutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscalebutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscalebutton.obj `if test -f 'gailscalebutton.c'; then $(CYGPATH_W) 'gailscalebutton.c'; else $(CYGPATH_W) '$(srcdir)/gailscalebutton.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscale.lo `test -f 'gailscale.c' || echo '$(srcdir)/'`gailscale.c + + libgail_la-gailscalebutton.lo: gailscalebutton.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscalebutton.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscalebutton.lo `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo" "$(DEPDIR)/libgail_la-gailscalebutton.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscalebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscalebutton.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailscalebutton.Tpo -c -o libgail_la-gailscalebutton.lo `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailscalebutton.Tpo $(DEPDIR)/libgail_la-gailscalebutton.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscalebutton.c' object='libgail_la-gailscalebutton.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscalebutton.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailscalebutton.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscalebutton.lo `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c +- +-libgail_la-gailscrollbar.o: gailscrollbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrollbar.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrollbar.o `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" "$(DEPDIR)/libgail_la-gailscrollbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrollbar.c' object='libgail_la-gailscrollbar.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrollbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscrollbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrollbar.o `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c +- +-libgail_la-gailscrollbar.obj: gailscrollbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrollbar.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrollbar.obj `if test -f 'gailscrollbar.c'; then $(CYGPATH_W) 'gailscrollbar.c'; else $(CYGPATH_W) '$(srcdir)/gailscrollbar.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" "$(DEPDIR)/libgail_la-gailscrollbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrollbar.c' object='libgail_la-gailscrollbar.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrollbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscrollbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrollbar.obj `if test -f 'gailscrollbar.c'; then $(CYGPATH_W) 'gailscrollbar.c'; else $(CYGPATH_W) '$(srcdir)/gailscrollbar.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscalebutton.lo `test -f 'gailscalebutton.c' || echo '$(srcdir)/'`gailscalebutton.c + + libgail_la-gailscrollbar.lo: gailscrollbar.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrollbar.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrollbar.lo `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo" "$(DEPDIR)/libgail_la-gailscrollbar.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrollbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrollbar.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailscrollbar.Tpo -c -o libgail_la-gailscrollbar.lo `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailscrollbar.Tpo $(DEPDIR)/libgail_la-gailscrollbar.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrollbar.c' object='libgail_la-gailscrollbar.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrollbar.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailscrollbar.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrollbar.lo `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c +- +-libgail_la-gailscrolledwindow.o: gailscrolledwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrolledwindow.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrolledwindow.o `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" "$(DEPDIR)/libgail_la-gailscrolledwindow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrolledwindow.c' object='libgail_la-gailscrolledwindow.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrolledwindow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscrolledwindow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrolledwindow.o `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c +- +-libgail_la-gailscrolledwindow.obj: gailscrolledwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrolledwindow.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrolledwindow.obj `if test -f 'gailscrolledwindow.c'; then $(CYGPATH_W) 'gailscrolledwindow.c'; else $(CYGPATH_W) '$(srcdir)/gailscrolledwindow.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" "$(DEPDIR)/libgail_la-gailscrolledwindow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrolledwindow.c' object='libgail_la-gailscrolledwindow.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrolledwindow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailscrolledwindow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrolledwindow.obj `if test -f 'gailscrolledwindow.c'; then $(CYGPATH_W) 'gailscrolledwindow.c'; else $(CYGPATH_W) '$(srcdir)/gailscrolledwindow.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrollbar.lo `test -f 'gailscrollbar.c' || echo '$(srcdir)/'`gailscrollbar.c + + libgail_la-gailscrolledwindow.lo: gailscrolledwindow.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrolledwindow.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailscrolledwindow.lo `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo" "$(DEPDIR)/libgail_la-gailscrolledwindow.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailscrolledwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailscrolledwindow.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailscrolledwindow.Tpo -c -o libgail_la-gailscrolledwindow.lo `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailscrolledwindow.Tpo $(DEPDIR)/libgail_la-gailscrolledwindow.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailscrolledwindow.c' object='libgail_la-gailscrolledwindow.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailscrolledwindow.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailscrolledwindow.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrolledwindow.lo `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c +- +-libgail_la-gailseparator.o: gailseparator.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailseparator.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailseparator.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailseparator.o `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailseparator.Tpo" "$(DEPDIR)/libgail_la-gailseparator.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailseparator.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailseparator.c' object='libgail_la-gailseparator.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailseparator.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailseparator.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailseparator.o `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c +- +-libgail_la-gailseparator.obj: gailseparator.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailseparator.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailseparator.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailseparator.obj `if test -f 'gailseparator.c'; then $(CYGPATH_W) 'gailseparator.c'; else $(CYGPATH_W) '$(srcdir)/gailseparator.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailseparator.Tpo" "$(DEPDIR)/libgail_la-gailseparator.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailseparator.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailseparator.c' object='libgail_la-gailseparator.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailseparator.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailseparator.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailseparator.obj `if test -f 'gailseparator.c'; then $(CYGPATH_W) 'gailseparator.c'; else $(CYGPATH_W) '$(srcdir)/gailseparator.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailscrolledwindow.lo `test -f 'gailscrolledwindow.c' || echo '$(srcdir)/'`gailscrolledwindow.c + + libgail_la-gailseparator.lo: gailseparator.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailseparator.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailseparator.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailseparator.lo `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailseparator.Tpo" "$(DEPDIR)/libgail_la-gailseparator.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailseparator.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailseparator.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailseparator.Tpo -c -o libgail_la-gailseparator.lo `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailseparator.Tpo $(DEPDIR)/libgail_la-gailseparator.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailseparator.c' object='libgail_la-gailseparator.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailseparator.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailseparator.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailseparator.lo `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c +- +-libgail_la-gailspinbutton.o: gailspinbutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailspinbutton.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailspinbutton.o `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" "$(DEPDIR)/libgail_la-gailspinbutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailspinbutton.c' object='libgail_la-gailspinbutton.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailspinbutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailspinbutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailspinbutton.o `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c +- +-libgail_la-gailspinbutton.obj: gailspinbutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailspinbutton.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailspinbutton.obj `if test -f 'gailspinbutton.c'; then $(CYGPATH_W) 'gailspinbutton.c'; else $(CYGPATH_W) '$(srcdir)/gailspinbutton.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" "$(DEPDIR)/libgail_la-gailspinbutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailspinbutton.c' object='libgail_la-gailspinbutton.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailspinbutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailspinbutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailspinbutton.obj `if test -f 'gailspinbutton.c'; then $(CYGPATH_W) 'gailspinbutton.c'; else $(CYGPATH_W) '$(srcdir)/gailspinbutton.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailseparator.lo `test -f 'gailseparator.c' || echo '$(srcdir)/'`gailseparator.c + + libgail_la-gailspinbutton.lo: gailspinbutton.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailspinbutton.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailspinbutton.lo `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo" "$(DEPDIR)/libgail_la-gailspinbutton.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailspinbutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailspinbutton.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailspinbutton.Tpo -c -o libgail_la-gailspinbutton.lo `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailspinbutton.Tpo $(DEPDIR)/libgail_la-gailspinbutton.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailspinbutton.c' object='libgail_la-gailspinbutton.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailspinbutton.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailspinbutton.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailspinbutton.lo `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c +- +-libgail_la-gailsubmenuitem.o: gailsubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailsubmenuitem.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailsubmenuitem.o `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailsubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailsubmenuitem.c' object='libgail_la-gailsubmenuitem.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailsubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailsubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailsubmenuitem.o `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c +- +-libgail_la-gailsubmenuitem.obj: gailsubmenuitem.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailsubmenuitem.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailsubmenuitem.obj `if test -f 'gailsubmenuitem.c'; then $(CYGPATH_W) 'gailsubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailsubmenuitem.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailsubmenuitem.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailsubmenuitem.c' object='libgail_la-gailsubmenuitem.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailsubmenuitem.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailsubmenuitem.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailsubmenuitem.obj `if test -f 'gailsubmenuitem.c'; then $(CYGPATH_W) 'gailsubmenuitem.c'; else $(CYGPATH_W) '$(srcdir)/gailsubmenuitem.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailspinbutton.lo `test -f 'gailspinbutton.c' || echo '$(srcdir)/'`gailspinbutton.c + + libgail_la-gailsubmenuitem.lo: gailsubmenuitem.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailsubmenuitem.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailsubmenuitem.lo `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo" "$(DEPDIR)/libgail_la-gailsubmenuitem.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailsubmenuitem.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailsubmenuitem.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailsubmenuitem.Tpo -c -o libgail_la-gailsubmenuitem.lo `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailsubmenuitem.Tpo $(DEPDIR)/libgail_la-gailsubmenuitem.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailsubmenuitem.c' object='libgail_la-gailsubmenuitem.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailsubmenuitem.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailsubmenuitem.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailsubmenuitem.lo `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c +- +-libgail_la-gailstatusbar.o: gailstatusbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailstatusbar.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailstatusbar.o `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" "$(DEPDIR)/libgail_la-gailstatusbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailstatusbar.c' object='libgail_la-gailstatusbar.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailstatusbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailstatusbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailstatusbar.o `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c +- +-libgail_la-gailstatusbar.obj: gailstatusbar.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailstatusbar.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailstatusbar.obj `if test -f 'gailstatusbar.c'; then $(CYGPATH_W) 'gailstatusbar.c'; else $(CYGPATH_W) '$(srcdir)/gailstatusbar.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" "$(DEPDIR)/libgail_la-gailstatusbar.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailstatusbar.c' object='libgail_la-gailstatusbar.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailstatusbar.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailstatusbar.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailstatusbar.obj `if test -f 'gailstatusbar.c'; then $(CYGPATH_W) 'gailstatusbar.c'; else $(CYGPATH_W) '$(srcdir)/gailstatusbar.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailsubmenuitem.lo `test -f 'gailsubmenuitem.c' || echo '$(srcdir)/'`gailsubmenuitem.c + + libgail_la-gailstatusbar.lo: gailstatusbar.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailstatusbar.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailstatusbar.lo `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo" "$(DEPDIR)/libgail_la-gailstatusbar.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailstatusbar.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailstatusbar.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailstatusbar.Tpo -c -o libgail_la-gailstatusbar.lo `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailstatusbar.Tpo $(DEPDIR)/libgail_la-gailstatusbar.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailstatusbar.c' object='libgail_la-gailstatusbar.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailstatusbar.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailstatusbar.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailstatusbar.lo `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c +- +-libgail_la-gailtextcell.o: gailtextcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextcell.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextcell.o `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo" "$(DEPDIR)/libgail_la-gailtextcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextcell.c' object='libgail_la-gailtextcell.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtextcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextcell.o `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c +- +-libgail_la-gailtextcell.obj: gailtextcell.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextcell.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextcell.obj `if test -f 'gailtextcell.c'; then $(CYGPATH_W) 'gailtextcell.c'; else $(CYGPATH_W) '$(srcdir)/gailtextcell.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo" "$(DEPDIR)/libgail_la-gailtextcell.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextcell.c' object='libgail_la-gailtextcell.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextcell.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtextcell.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextcell.obj `if test -f 'gailtextcell.c'; then $(CYGPATH_W) 'gailtextcell.c'; else $(CYGPATH_W) '$(srcdir)/gailtextcell.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailstatusbar.lo `test -f 'gailstatusbar.c' || echo '$(srcdir)/'`gailstatusbar.c + + libgail_la-gailtextcell.lo: gailtextcell.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextcell.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextcell.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextcell.lo `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo" "$(DEPDIR)/libgail_la-gailtextcell.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextcell.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextcell.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailtextcell.Tpo -c -o libgail_la-gailtextcell.lo `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailtextcell.Tpo $(DEPDIR)/libgail_la-gailtextcell.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextcell.c' object='libgail_la-gailtextcell.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextcell.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailtextcell.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextcell.lo `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c +- +-libgail_la-gailtextview.o: gailtextview.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextview.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextview.o `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextview.Tpo" "$(DEPDIR)/libgail_la-gailtextview.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextview.c' object='libgail_la-gailtextview.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextview.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtextview.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextview.o `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c +- +-libgail_la-gailtextview.obj: gailtextview.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextview.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextview.obj `if test -f 'gailtextview.c'; then $(CYGPATH_W) 'gailtextview.c'; else $(CYGPATH_W) '$(srcdir)/gailtextview.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextview.Tpo" "$(DEPDIR)/libgail_la-gailtextview.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextview.c' object='libgail_la-gailtextview.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextview.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtextview.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextview.obj `if test -f 'gailtextview.c'; then $(CYGPATH_W) 'gailtextview.c'; else $(CYGPATH_W) '$(srcdir)/gailtextview.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextcell.lo `test -f 'gailtextcell.c' || echo '$(srcdir)/'`gailtextcell.c + + libgail_la-gailtextview.lo: gailtextview.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextview.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailtextview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtextview.lo `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtextview.Tpo" "$(DEPDIR)/libgail_la-gailtextview.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtextview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtextview.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailtextview.Tpo -c -o libgail_la-gailtextview.lo `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailtextview.Tpo $(DEPDIR)/libgail_la-gailtextview.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtextview.c' object='libgail_la-gailtextview.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtextview.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailtextview.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextview.lo `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c +- +-libgail_la-gailtogglebutton.o: gailtogglebutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtogglebutton.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtogglebutton.o `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" "$(DEPDIR)/libgail_la-gailtogglebutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtogglebutton.c' object='libgail_la-gailtogglebutton.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtogglebutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtogglebutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtogglebutton.o `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c +- +-libgail_la-gailtogglebutton.obj: gailtogglebutton.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtogglebutton.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtogglebutton.obj `if test -f 'gailtogglebutton.c'; then $(CYGPATH_W) 'gailtogglebutton.c'; else $(CYGPATH_W) '$(srcdir)/gailtogglebutton.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" "$(DEPDIR)/libgail_la-gailtogglebutton.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtogglebutton.c' object='libgail_la-gailtogglebutton.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtogglebutton.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtogglebutton.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtogglebutton.obj `if test -f 'gailtogglebutton.c'; then $(CYGPATH_W) 'gailtogglebutton.c'; else $(CYGPATH_W) '$(srcdir)/gailtogglebutton.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtextview.lo `test -f 'gailtextview.c' || echo '$(srcdir)/'`gailtextview.c + + libgail_la-gailtogglebutton.lo: gailtogglebutton.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtogglebutton.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtogglebutton.lo `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo" "$(DEPDIR)/libgail_la-gailtogglebutton.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtogglebutton.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtogglebutton.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailtogglebutton.Tpo -c -o libgail_la-gailtogglebutton.lo `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailtogglebutton.Tpo $(DEPDIR)/libgail_la-gailtogglebutton.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtogglebutton.c' object='libgail_la-gailtogglebutton.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtogglebutton.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailtogglebutton.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtogglebutton.lo `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c +- +-libgail_la-gailtoplevel.o: gailtoplevel.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtoplevel.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtoplevel.o `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" "$(DEPDIR)/libgail_la-gailtoplevel.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtoplevel.c' object='libgail_la-gailtoplevel.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtoplevel.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtoplevel.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtoplevel.o `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c +- +-libgail_la-gailtoplevel.obj: gailtoplevel.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtoplevel.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtoplevel.obj `if test -f 'gailtoplevel.c'; then $(CYGPATH_W) 'gailtoplevel.c'; else $(CYGPATH_W) '$(srcdir)/gailtoplevel.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" "$(DEPDIR)/libgail_la-gailtoplevel.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtoplevel.c' object='libgail_la-gailtoplevel.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtoplevel.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtoplevel.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtoplevel.obj `if test -f 'gailtoplevel.c'; then $(CYGPATH_W) 'gailtoplevel.c'; else $(CYGPATH_W) '$(srcdir)/gailtoplevel.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtogglebutton.lo `test -f 'gailtogglebutton.c' || echo '$(srcdir)/'`gailtogglebutton.c + + libgail_la-gailtoplevel.lo: gailtoplevel.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtoplevel.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtoplevel.lo `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo" "$(DEPDIR)/libgail_la-gailtoplevel.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtoplevel.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtoplevel.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailtoplevel.Tpo -c -o libgail_la-gailtoplevel.lo `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailtoplevel.Tpo $(DEPDIR)/libgail_la-gailtoplevel.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtoplevel.c' object='libgail_la-gailtoplevel.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtoplevel.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailtoplevel.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtoplevel.lo `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c +- +-libgail_la-gailtreeview.o: gailtreeview.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtreeview.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailtreeview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtreeview.o `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo" "$(DEPDIR)/libgail_la-gailtreeview.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtreeview.c' object='libgail_la-gailtreeview.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtreeview.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtreeview.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtreeview.o `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c +- +-libgail_la-gailtreeview.obj: gailtreeview.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtreeview.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailtreeview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtreeview.obj `if test -f 'gailtreeview.c'; then $(CYGPATH_W) 'gailtreeview.c'; else $(CYGPATH_W) '$(srcdir)/gailtreeview.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo" "$(DEPDIR)/libgail_la-gailtreeview.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtreeview.c' object='libgail_la-gailtreeview.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtreeview.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailtreeview.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtreeview.obj `if test -f 'gailtreeview.c'; then $(CYGPATH_W) 'gailtreeview.c'; else $(CYGPATH_W) '$(srcdir)/gailtreeview.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtoplevel.lo `test -f 'gailtoplevel.c' || echo '$(srcdir)/'`gailtoplevel.c + + libgail_la-gailtreeview.lo: gailtreeview.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtreeview.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailtreeview.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailtreeview.lo `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo" "$(DEPDIR)/libgail_la-gailtreeview.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailtreeview.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailtreeview.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailtreeview.Tpo -c -o libgail_la-gailtreeview.lo `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailtreeview.Tpo $(DEPDIR)/libgail_la-gailtreeview.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailtreeview.c' object='libgail_la-gailtreeview.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailtreeview.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailtreeview.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtreeview.lo `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c +- +-libgail_la-gailutil.o: gailutil.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailutil.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailutil.o `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailutil.Tpo" "$(DEPDIR)/libgail_la-gailutil.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailutil.c' object='libgail_la-gailutil.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailutil.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailutil.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailutil.o `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c +- +-libgail_la-gailutil.obj: gailutil.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailutil.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailutil.obj `if test -f 'gailutil.c'; then $(CYGPATH_W) 'gailutil.c'; else $(CYGPATH_W) '$(srcdir)/gailutil.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailutil.Tpo" "$(DEPDIR)/libgail_la-gailutil.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailutil.c' object='libgail_la-gailutil.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailutil.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailutil.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailutil.obj `if test -f 'gailutil.c'; then $(CYGPATH_W) 'gailutil.c'; else $(CYGPATH_W) '$(srcdir)/gailutil.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailtreeview.lo `test -f 'gailtreeview.c' || echo '$(srcdir)/'`gailtreeview.c + + libgail_la-gailutil.lo: gailutil.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailutil.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailutil.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailutil.lo `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailutil.Tpo" "$(DEPDIR)/libgail_la-gailutil.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailutil.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailutil.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailutil.Tpo -c -o libgail_la-gailutil.lo `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailutil.Tpo $(DEPDIR)/libgail_la-gailutil.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailutil.c' object='libgail_la-gailutil.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailutil.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailutil.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailutil.lo `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c +- +-libgail_la-gailwidget.o: gailwidget.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwidget.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailwidget.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwidget.o `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwidget.Tpo" "$(DEPDIR)/libgail_la-gailwidget.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwidget.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwidget.c' object='libgail_la-gailwidget.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwidget.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailwidget.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwidget.o `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c +- +-libgail_la-gailwidget.obj: gailwidget.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwidget.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailwidget.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwidget.obj `if test -f 'gailwidget.c'; then $(CYGPATH_W) 'gailwidget.c'; else $(CYGPATH_W) '$(srcdir)/gailwidget.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwidget.Tpo" "$(DEPDIR)/libgail_la-gailwidget.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwidget.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwidget.c' object='libgail_la-gailwidget.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwidget.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailwidget.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwidget.obj `if test -f 'gailwidget.c'; then $(CYGPATH_W) 'gailwidget.c'; else $(CYGPATH_W) '$(srcdir)/gailwidget.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailutil.lo `test -f 'gailutil.c' || echo '$(srcdir)/'`gailutil.c + + libgail_la-gailwidget.lo: gailwidget.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwidget.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailwidget.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwidget.lo `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwidget.Tpo" "$(DEPDIR)/libgail_la-gailwidget.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwidget.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwidget.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailwidget.Tpo -c -o libgail_la-gailwidget.lo `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailwidget.Tpo $(DEPDIR)/libgail_la-gailwidget.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwidget.c' object='libgail_la-gailwidget.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwidget.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailwidget.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwidget.lo `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c +- +-libgail_la-gailwindow.o: gailwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwindow.o -MD -MP -MF "$(DEPDIR)/libgail_la-gailwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwindow.o `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwindow.Tpo" "$(DEPDIR)/libgail_la-gailwindow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwindow.c' object='libgail_la-gailwindow.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwindow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailwindow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwindow.o `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c +- +-libgail_la-gailwindow.obj: gailwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwindow.obj -MD -MP -MF "$(DEPDIR)/libgail_la-gailwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwindow.obj `if test -f 'gailwindow.c'; then $(CYGPATH_W) 'gailwindow.c'; else $(CYGPATH_W) '$(srcdir)/gailwindow.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwindow.Tpo" "$(DEPDIR)/libgail_la-gailwindow.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwindow.c' object='libgail_la-gailwindow.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwindow.Po' tmpdepfile='$(DEPDIR)/libgail_la-gailwindow.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwindow.obj `if test -f 'gailwindow.c'; then $(CYGPATH_W) 'gailwindow.c'; else $(CYGPATH_W) '$(srcdir)/gailwindow.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwidget.lo `test -f 'gailwidget.c' || echo '$(srcdir)/'`gailwidget.c + + libgail_la-gailwindow.lo: gailwindow.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwindow.lo -MD -MP -MF "$(DEPDIR)/libgail_la-gailwindow.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libgail_la-gailwindow.lo `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgail_la-gailwindow.Tpo" "$(DEPDIR)/libgail_la-gailwindow.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libgail_la-gailwindow.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -MT libgail_la-gailwindow.lo -MD -MP -MF $(DEPDIR)/libgail_la-gailwindow.Tpo -c -o libgail_la-gailwindow.lo `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgail_la-gailwindow.Tpo $(DEPDIR)/libgail_la-gailwindow.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gailwindow.c' object='libgail_la-gailwindow.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libgail_la-gailwindow.Plo' tmpdepfile='$(DEPDIR)/libgail_la-gailwindow.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwindow.lo `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgail_la_CPPFLAGS) $(CPPFLAGS) $(libgail_la_CFLAGS) $(CFLAGS) -c -o libgail_la-gailwindow.lo `test -f 'gailwindow.c' || echo '$(srcdir)/'`gailwindow.c + + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs +- +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +-libgailincludeHEADERS_INSTALL = $(INSTALL_HEADER) + install-libgailincludeHEADERS: $(libgailinclude_HEADERS) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(libgailincludedir) +- @list='$(libgailinclude_HEADERS)'; for p in $$list; do \ ++ test -z "$(libgailincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libgailincludedir)" ++ @list='$(libgailinclude_HEADERS)'; test -n "$(libgailincludedir)" || list=; \ ++ for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(libgailincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgailincludedir)/$$f"; \ +- $(libgailincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgailincludedir)/$$f; \ ++ echo "$$d$$p"; \ ++ done | $(am__base_list) | \ ++ while read files; do \ ++ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libgailincludedir)'"; \ ++ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libgailincludedir)" || exit $$?; \ + done + + uninstall-libgailincludeHEADERS: + @$(NORMAL_UNINSTALL) +- @list='$(libgailinclude_HEADERS)'; for p in $$list; do \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " rm -f $(DESTDIR)$(libgailincludedir)/$$f"; \ +- rm -f $(DESTDIR)$(libgailincludedir)/$$f; \ +- done ++ @list='$(libgailinclude_HEADERS)'; test -n "$(libgailincludedir)" || list=; \ ++ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ ++ test -n "$$files" || exit 0; \ ++ echo " ( cd '$(DESTDIR)$(libgailincludedir)' && rm -f" $$files ")"; \ ++ cd "$(DESTDIR)$(libgailincludedir)" && rm -f $$files + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. +@@ -2739,7 +1252,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -2750,16 +1269,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -2779,124 +1303,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -2907,8 +1444,9 @@ + all-am: Makefile $(LTLIBRARIES) $(HEADERS) + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(moduledir) $(DESTDIR)$(libgailincludedir) +- ++ for dir in "$(DESTDIR)$(moduledir)" "$(DESTDIR)$(libgailincludedir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -2928,7 +1466,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -2942,24 +1481,47 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + +-install-data-am: install-libgailincludeHEADERS install-moduleLTLIBRARIES ++install-data-am: install-libgailincludeHEADERS \ ++ install-moduleLTLIBRARIES ++ ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: + + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -2980,30 +1542,28 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-libgailincludeHEADERS \ ++uninstall-am: uninstall-libgailincludeHEADERS \ + uninstall-moduleLTLIBRARIES + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool \ +- clean-moduleLTLIBRARIES clean-recursive ctags ctags-recursive \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-recursive distclean-tags distdir dvi dvi-am \ +- dvi-recursive info info-am info-recursive install install-am \ +- install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive \ +- install-libgailincludeHEADERS install-man \ +- install-moduleLTLIBRARIES install-recursive install-strip \ +- installcheck installcheck-am installdirs installdirs-am \ +- installdirs-recursive maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ +- pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ +- tags-recursive uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-libgailincludeHEADERS \ +- uninstall-moduleLTLIBRARIES uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool clean-moduleLTLIBRARIES ctags ctags-recursive \ ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-libgailincludeHEADERS install-man \ ++ install-moduleLTLIBRARIES install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am \ ++ uninstall-libgailincludeHEADERS uninstall-moduleLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -3060,6 +1620,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/other/gail/tests/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/other/gail/tests/Makefile.in +--- gtk+2.0-2.17.10/modules/other/gail/tests/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/other/gail/tests/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,235 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/other/gail/tests ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(moduledir)" ++LTLIBRARIES = $(module_LTLIBRARIES) $(noinst_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++@OS_WIN32_FALSE@libferret_la_DEPENDENCIES = \ ++@OS_WIN32_FALSE@ $(top_builddir)/gtk/$(gtktargetlib) \ ++@OS_WIN32_FALSE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) ++am__libferret_la_SOURCES_DIST = testlib.c testlib.h ferret.c ++@OS_WIN32_FALSE@am_libferret_la_OBJECTS = testlib.lo ferret.lo ++libferret_la_OBJECTS = $(am_libferret_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libferret_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(libferret_la_LDFLAGS) $(LDFLAGS) -o $@ ++@OS_WIN32_FALSE@am_libferret_la_rpath = -rpath $(moduledir) ++libtestaction_la_LIBADD = ++am_libtestaction_la_OBJECTS = testaction.lo ++libtestaction_la_OBJECTS = $(am_libtestaction_la_OBJECTS) ++libtestaction_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestaction_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestbutton_la_LIBADD = ++am_libtestbutton_la_OBJECTS = testlib.lo testbutton.lo ++libtestbutton_la_OBJECTS = $(am_libtestbutton_la_OBJECTS) ++libtestbutton_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestbutton_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestcombo_la_LIBADD = ++am_libtestcombo_la_OBJECTS = testlib.lo testcombo.lo ++libtestcombo_la_OBJECTS = $(am_libtestcombo_la_OBJECTS) ++libtestcombo_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestcombo_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestcomponent_la_LIBADD = ++am_libtestcomponent_la_OBJECTS = testcomponent.lo ++libtestcomponent_la_OBJECTS = $(am_libtestcomponent_la_OBJECTS) ++libtestcomponent_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestcomponent_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtestimage_la_LIBADD = ++am_libtestimage_la_OBJECTS = testimage.lo ++libtestimage_la_OBJECTS = $(am_libtestimage_la_OBJECTS) ++libtestimage_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestimage_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestmenuitem_la_LIBADD = ++am_libtestmenuitem_la_OBJECTS = testlib.lo testmenuitem.lo ++libtestmenuitem_la_OBJECTS = $(am_libtestmenuitem_la_OBJECTS) ++libtestmenuitem_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestmenuitem_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtestnotebook_la_LIBADD = ++am_libtestnotebook_la_OBJECTS = testlib.lo testnotebook.lo ++libtestnotebook_la_OBJECTS = $(am_libtestnotebook_la_OBJECTS) ++libtestnotebook_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestnotebook_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtestobject_la_LIBADD = ++am_libtestobject_la_OBJECTS = testlib.lo testobject.lo ++libtestobject_la_OBJECTS = $(am_libtestobject_la_OBJECTS) ++libtestobject_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestobject_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestoptionmenu_la_LIBADD = ++am_libtestoptionmenu_la_OBJECTS = testlib.lo testoptionmenu.lo ++libtestoptionmenu_la_OBJECTS = $(am_libtestoptionmenu_la_OBJECTS) ++libtestoptionmenu_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestoptionmenu_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtestpaned_la_LIBADD = ++am_libtestpaned_la_OBJECTS = testlib.lo testpaned.lo ++libtestpaned_la_OBJECTS = $(am_libtestpaned_la_OBJECTS) ++libtestpaned_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestpaned_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestprops_la_LIBADD = ++am_libtestprops_la_OBJECTS = testlib.lo testprops.lo ++libtestprops_la_OBJECTS = $(am_libtestprops_la_OBJECTS) ++libtestprops_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestprops_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtestselection_la_LIBADD = ++am_libtestselection_la_OBJECTS = testselection.lo ++libtestselection_la_OBJECTS = $(am_libtestselection_la_OBJECTS) ++libtestselection_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestselection_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libteststatusbar_la_LIBADD = ++am_libteststatusbar_la_OBJECTS = teststatusbar.lo ++libteststatusbar_la_OBJECTS = $(am_libteststatusbar_la_OBJECTS) ++libteststatusbar_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libteststatusbar_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtesttable_la_LIBADD = ++am_libtesttable_la_OBJECTS = testlib.lo testtextlib.lo testtable.lo ++libtesttable_la_OBJECTS = $(am_libtesttable_la_OBJECTS) ++libtesttable_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtesttable_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++libtesttext_la_LIBADD = ++am_libtesttext_la_OBJECTS = testlib.lo testtextlib.lo testtext.lo ++libtesttext_la_OBJECTS = $(am_libtesttext_la_OBJECTS) ++libtesttext_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtesttext_la_LDFLAGS) $(LDFLAGS) -o \ ++ $@ ++libtesttoplevel_la_LIBADD = ++am_libtesttoplevel_la_OBJECTS = testlib.lo testtoplevel.lo ++libtesttoplevel_la_OBJECTS = $(am_libtesttoplevel_la_OBJECTS) ++libtesttoplevel_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtesttoplevel_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtesttreetable_la_LIBADD = ++am_libtesttreetable_la_OBJECTS = testlib.lo testtreetable.lo ++libtesttreetable_la_OBJECTS = $(am_libtesttreetable_la_OBJECTS) ++libtesttreetable_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtesttreetable_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++libtestvalues_la_LIBADD = ++am_libtestvalues_la_OBJECTS = testvalues.lo ++libtestvalues_la_OBJECTS = $(am_libtestvalues_la_OBJECTS) ++libtestvalues_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libtestvalues_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libferret_la_SOURCES) $(libtestaction_la_SOURCES) \ ++ $(libtestbutton_la_SOURCES) $(libtestcombo_la_SOURCES) \ ++ $(libtestcomponent_la_SOURCES) $(libtestimage_la_SOURCES) \ ++ $(libtestmenuitem_la_SOURCES) $(libtestnotebook_la_SOURCES) \ ++ $(libtestobject_la_SOURCES) $(libtestoptionmenu_la_SOURCES) \ ++ $(libtestpaned_la_SOURCES) $(libtestprops_la_SOURCES) \ ++ $(libtestselection_la_SOURCES) $(libteststatusbar_la_SOURCES) \ ++ $(libtesttable_la_SOURCES) $(libtesttext_la_SOURCES) \ ++ $(libtesttoplevel_la_SOURCES) $(libtesttreetable_la_SOURCES) \ ++ $(libtestvalues_la_SOURCES) ++DIST_SOURCES = $(am__libferret_la_SOURCES_DIST) \ ++ $(libtestaction_la_SOURCES) $(libtestbutton_la_SOURCES) \ ++ $(libtestcombo_la_SOURCES) $(libtestcomponent_la_SOURCES) \ ++ $(libtestimage_la_SOURCES) $(libtestmenuitem_la_SOURCES) \ ++ $(libtestnotebook_la_SOURCES) $(libtestobject_la_SOURCES) \ ++ $(libtestoptionmenu_la_SOURCES) $(libtestpaned_la_SOURCES) \ ++ $(libtestprops_la_SOURCES) $(libtestselection_la_SOURCES) \ ++ $(libteststatusbar_la_SOURCES) $(libtesttable_la_SOURCES) \ ++ $(libtesttext_la_SOURCES) $(libtesttoplevel_la_SOURCES) \ ++ $(libtesttreetable_la_SOURCES) $(libtestvalues_la_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +272,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +279,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +301,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +308,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +333,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +352,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +362,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +393,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +409,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +426,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +438,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +480,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +489,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,15 +525,11 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + moduledir = $(libdir)/gtk-2.0/modules +- + @OS_WIN32_FALSE@module_LTLIBRARIES = \ + @OS_WIN32_FALSE@ libferret.la + +- + noinst_LTLIBRARIES = \ + libtestaction.la \ + libtestbutton.la \ +@@ -447,7 +550,6 @@ + libtesttreetable.la \ + libtestvalues.la + +- + AM_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gdk \ +@@ -457,34 +559,28 @@ + -DGDK_DISABLE_DEPRECATED\ + -DGTK_DISABLE_DEPRECATED + +- + AM_CFLAGS = \ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) + +- + @OS_WIN32_FALSE@libferret_la_SOURCES = \ + @OS_WIN32_FALSE@ testlib.c \ + @OS_WIN32_FALSE@ testlib.h \ + @OS_WIN32_FALSE@ ferret.c + +- + @OS_WIN32_FALSE@libferret_la_LDFLAGS = \ + @OS_WIN32_FALSE@ -rpath $(moduledir) -module -avoid-version \ + @OS_WIN32_FALSE@ $(no_undefined) \ + @OS_WIN32_FALSE@ $(LDFLAGS) + +- + @OS_WIN32_FALSE@libferret_la_LIBADD = \ + @OS_WIN32_FALSE@ $(top_builddir)/gtk/$(gtktargetlib) \ + @OS_WIN32_FALSE@ $(GTK_DEP_LIBS) \ + @OS_WIN32_FALSE@ $(GAIL_INET_LIBS) + +- + libtestaction_la_SOURCES = \ + testaction.c + +- + libtestaction_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -492,13 +588,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestbutton_la_SOURCES = \ + testlib.c \ + testlib.h \ + testbutton.c + +- + libtestbutton_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -506,13 +600,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestcombo_la_SOURCES = \ + testlib.c \ + testlib.h \ + testcombo.c + +- + libtestcombo_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -520,11 +612,9 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestcomponent_la_SOURCES = \ + testcomponent.c + +- + libtestcomponent_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -532,11 +622,9 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestimage_la_SOURCES = \ + testimage.c + +- + libtestimage_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -544,13 +632,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestmenuitem_la_SOURCES = \ + testlib.c \ + testlib.h \ + testmenuitem.c + +- + libtestmenuitem_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -558,13 +644,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestnotebook_la_SOURCES = \ + testlib.c \ + testlib.h \ + testnotebook.c + +- + libtestnotebook_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -572,13 +656,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestobject_la_SOURCES = \ + testlib.c \ + testlib.h \ + testobject.c + +- + libtestobject_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -586,13 +668,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestoptionmenu_la_SOURCES = \ + testlib.c \ + testlib.h \ + testoptionmenu.c + +- + libtestoptionmenu_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -600,13 +680,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestpaned_la_SOURCES = \ + testlib.c \ + testlib.h \ + testpaned.c + +- + libtestpaned_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -614,13 +692,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestprops_la_SOURCES = \ + testlib.c \ + testlib.h \ + testprops.c + +- + libtestprops_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -628,11 +704,9 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestselection_la_SOURCES = \ + testselection.c + +- + libtestselection_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -640,11 +714,9 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libteststatusbar_la_SOURCES = \ + teststatusbar.c + +- + libteststatusbar_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -652,7 +724,6 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtesttable_la_SOURCES = \ + testlib.c \ + testlib.h \ +@@ -660,7 +731,6 @@ + testtextlib.h \ + testtable.c + +- + libtesttable_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -668,7 +738,6 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtesttext_la_SOURCES = \ + testlib.c \ + testlib.h \ +@@ -676,7 +745,6 @@ + testtextlib.h \ + testtext.c + +- + libtesttext_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -684,13 +752,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtesttoplevel_la_SOURCES = \ + testlib.c \ + testlib.h \ + testtoplevel.c + +- + libtesttoplevel_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -698,13 +764,11 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtesttreetable_la_SOURCES = \ + testlib.c \ + testlib.h \ + testtreetable.c + +- + libtesttreetable_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -712,11 +776,9 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +- + libtestvalues_la_SOURCES = \ + testvalues.c + +- + libtestvalues_la_LDFLAGS = \ + -rpath $(moduledir) -module -avoid-version $(no_undefined) \ + $(top_builddir)/gtk/$(gtktargetlib) \ +@@ -724,150 +786,68 @@ + $(GTK_DEP_LIBS) \ + $(LDFLAGS) + +-subdir = modules/other/gail/tests +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(module_LTLIBRARIES) $(noinst_LTLIBRARIES) +- +-@OS_WIN32_TRUE@libferret_la_DEPENDENCIES = +-@OS_WIN32_FALSE@libferret_la_DEPENDENCIES = \ +-@OS_WIN32_FALSE@ $(top_builddir)/gtk/$(gtktargetlib) +-am__libferret_la_SOURCES_DIST = testlib.c testlib.h ferret.c +-@OS_WIN32_FALSE@am_libferret_la_OBJECTS = testlib.lo ferret.lo +-libferret_la_OBJECTS = $(am_libferret_la_OBJECTS) +-libtestaction_la_LIBADD = +-am_libtestaction_la_OBJECTS = testaction.lo +-libtestaction_la_OBJECTS = $(am_libtestaction_la_OBJECTS) +-libtestbutton_la_LIBADD = +-am_libtestbutton_la_OBJECTS = testlib.lo testbutton.lo +-libtestbutton_la_OBJECTS = $(am_libtestbutton_la_OBJECTS) +-libtestcombo_la_LIBADD = +-am_libtestcombo_la_OBJECTS = testlib.lo testcombo.lo +-libtestcombo_la_OBJECTS = $(am_libtestcombo_la_OBJECTS) +-libtestcomponent_la_LIBADD = +-am_libtestcomponent_la_OBJECTS = testcomponent.lo +-libtestcomponent_la_OBJECTS = $(am_libtestcomponent_la_OBJECTS) +-libtestimage_la_LIBADD = +-am_libtestimage_la_OBJECTS = testimage.lo +-libtestimage_la_OBJECTS = $(am_libtestimage_la_OBJECTS) +-libtestmenuitem_la_LIBADD = +-am_libtestmenuitem_la_OBJECTS = testlib.lo testmenuitem.lo +-libtestmenuitem_la_OBJECTS = $(am_libtestmenuitem_la_OBJECTS) +-libtestnotebook_la_LIBADD = +-am_libtestnotebook_la_OBJECTS = testlib.lo testnotebook.lo +-libtestnotebook_la_OBJECTS = $(am_libtestnotebook_la_OBJECTS) +-libtestobject_la_LIBADD = +-am_libtestobject_la_OBJECTS = testlib.lo testobject.lo +-libtestobject_la_OBJECTS = $(am_libtestobject_la_OBJECTS) +-libtestoptionmenu_la_LIBADD = +-am_libtestoptionmenu_la_OBJECTS = testlib.lo testoptionmenu.lo +-libtestoptionmenu_la_OBJECTS = $(am_libtestoptionmenu_la_OBJECTS) +-libtestpaned_la_LIBADD = +-am_libtestpaned_la_OBJECTS = testlib.lo testpaned.lo +-libtestpaned_la_OBJECTS = $(am_libtestpaned_la_OBJECTS) +-libtestprops_la_LIBADD = +-am_libtestprops_la_OBJECTS = testlib.lo testprops.lo +-libtestprops_la_OBJECTS = $(am_libtestprops_la_OBJECTS) +-libtestselection_la_LIBADD = +-am_libtestselection_la_OBJECTS = testselection.lo +-libtestselection_la_OBJECTS = $(am_libtestselection_la_OBJECTS) +-libteststatusbar_la_LIBADD = +-am_libteststatusbar_la_OBJECTS = teststatusbar.lo +-libteststatusbar_la_OBJECTS = $(am_libteststatusbar_la_OBJECTS) +-libtesttable_la_LIBADD = +-am_libtesttable_la_OBJECTS = testlib.lo testtextlib.lo testtable.lo +-libtesttable_la_OBJECTS = $(am_libtesttable_la_OBJECTS) +-libtesttext_la_LIBADD = +-am_libtesttext_la_OBJECTS = testlib.lo testtextlib.lo testtext.lo +-libtesttext_la_OBJECTS = $(am_libtesttext_la_OBJECTS) +-libtesttoplevel_la_LIBADD = +-am_libtesttoplevel_la_OBJECTS = testlib.lo testtoplevel.lo +-libtesttoplevel_la_OBJECTS = $(am_libtesttoplevel_la_OBJECTS) +-libtesttreetable_la_LIBADD = +-am_libtesttreetable_la_OBJECTS = testlib.lo testtreetable.lo +-libtesttreetable_la_OBJECTS = $(am_libtesttreetable_la_OBJECTS) +-libtestvalues_la_LIBADD = +-am_libtestvalues_la_OBJECTS = testvalues.lo +-libtestvalues_la_OBJECTS = $(am_libtestvalues_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ferret.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testaction.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testbutton.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcombo.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcomponent.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testimage.Plo ./$(DEPDIR)/testlib.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmenuitem.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testnotebook.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testobject.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testoptionmenu.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testpaned.Plo ./$(DEPDIR)/testprops.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testselection.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/teststatusbar.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtable.Plo ./$(DEPDIR)/testtext.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtextlib.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtoplevel.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreetable.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testvalues.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__libferret_la_SOURCES_DIST) \ +- $(libtestaction_la_SOURCES) $(libtestbutton_la_SOURCES) \ +- $(libtestcombo_la_SOURCES) $(libtestcomponent_la_SOURCES) \ +- $(libtestimage_la_SOURCES) $(libtestmenuitem_la_SOURCES) \ +- $(libtestnotebook_la_SOURCES) $(libtestobject_la_SOURCES) \ +- $(libtestoptionmenu_la_SOURCES) $(libtestpaned_la_SOURCES) \ +- $(libtestprops_la_SOURCES) $(libtestselection_la_SOURCES) \ +- $(libteststatusbar_la_SOURCES) $(libtesttable_la_SOURCES) \ +- $(libtesttext_la_SOURCES) $(libtesttoplevel_la_SOURCES) \ +- $(libtesttreetable_la_SOURCES) $(libtestvalues_la_SOURCES) +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(libferret_la_SOURCES) $(libtestaction_la_SOURCES) $(libtestbutton_la_SOURCES) $(libtestcombo_la_SOURCES) $(libtestcomponent_la_SOURCES) $(libtestimage_la_SOURCES) $(libtestmenuitem_la_SOURCES) $(libtestnotebook_la_SOURCES) $(libtestobject_la_SOURCES) $(libtestoptionmenu_la_SOURCES) $(libtestpaned_la_SOURCES) $(libtestprops_la_SOURCES) $(libtestselection_la_SOURCES) $(libteststatusbar_la_SOURCES) $(libtesttable_la_SOURCES) $(libtesttext_la_SOURCES) $(libtesttoplevel_la_SOURCES) $(libtesttreetable_la_SOURCES) $(libtestvalues_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/other/gail/tests/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-moduleLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/other/gail/tests/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/other/gail/tests/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-moduleLTLIBRARIES: $(module_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(moduledir) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(moduledir)" || $(MKDIR_P) "$(DESTDIR)$(moduledir)" ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f"; \ +- $(LIBTOOL) --mode=install $(moduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(moduledir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(moduledir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(moduledir)"; \ ++ } + + uninstall-moduleLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(module_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(moduledir)/$$p; \ ++ @list='$(module_LTLIBRARIES)'; test -n "$(moduledir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(moduledir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(moduledir)/$$f"; \ + done + + clean-moduleLTLIBRARIES: + -test -z "$(module_LTLIBRARIES)" || rm -f $(module_LTLIBRARIES) + @list='$(module_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +@@ -876,51 +856,51 @@ + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libferret.la: $(libferret_la_OBJECTS) $(libferret_la_DEPENDENCIES) +- $(LINK) -rpath $(moduledir) $(libferret_la_LDFLAGS) $(libferret_la_OBJECTS) $(libferret_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libferret_la_LINK) $(am_libferret_la_rpath) $(libferret_la_OBJECTS) $(libferret_la_LIBADD) $(LIBS) + libtestaction.la: $(libtestaction_la_OBJECTS) $(libtestaction_la_DEPENDENCIES) +- $(LINK) $(libtestaction_la_LDFLAGS) $(libtestaction_la_OBJECTS) $(libtestaction_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestaction_la_LINK) $(libtestaction_la_OBJECTS) $(libtestaction_la_LIBADD) $(LIBS) + libtestbutton.la: $(libtestbutton_la_OBJECTS) $(libtestbutton_la_DEPENDENCIES) +- $(LINK) $(libtestbutton_la_LDFLAGS) $(libtestbutton_la_OBJECTS) $(libtestbutton_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestbutton_la_LINK) $(libtestbutton_la_OBJECTS) $(libtestbutton_la_LIBADD) $(LIBS) + libtestcombo.la: $(libtestcombo_la_OBJECTS) $(libtestcombo_la_DEPENDENCIES) +- $(LINK) $(libtestcombo_la_LDFLAGS) $(libtestcombo_la_OBJECTS) $(libtestcombo_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestcombo_la_LINK) $(libtestcombo_la_OBJECTS) $(libtestcombo_la_LIBADD) $(LIBS) + libtestcomponent.la: $(libtestcomponent_la_OBJECTS) $(libtestcomponent_la_DEPENDENCIES) +- $(LINK) $(libtestcomponent_la_LDFLAGS) $(libtestcomponent_la_OBJECTS) $(libtestcomponent_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestcomponent_la_LINK) $(libtestcomponent_la_OBJECTS) $(libtestcomponent_la_LIBADD) $(LIBS) + libtestimage.la: $(libtestimage_la_OBJECTS) $(libtestimage_la_DEPENDENCIES) +- $(LINK) $(libtestimage_la_LDFLAGS) $(libtestimage_la_OBJECTS) $(libtestimage_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestimage_la_LINK) $(libtestimage_la_OBJECTS) $(libtestimage_la_LIBADD) $(LIBS) + libtestmenuitem.la: $(libtestmenuitem_la_OBJECTS) $(libtestmenuitem_la_DEPENDENCIES) +- $(LINK) $(libtestmenuitem_la_LDFLAGS) $(libtestmenuitem_la_OBJECTS) $(libtestmenuitem_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestmenuitem_la_LINK) $(libtestmenuitem_la_OBJECTS) $(libtestmenuitem_la_LIBADD) $(LIBS) + libtestnotebook.la: $(libtestnotebook_la_OBJECTS) $(libtestnotebook_la_DEPENDENCIES) +- $(LINK) $(libtestnotebook_la_LDFLAGS) $(libtestnotebook_la_OBJECTS) $(libtestnotebook_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestnotebook_la_LINK) $(libtestnotebook_la_OBJECTS) $(libtestnotebook_la_LIBADD) $(LIBS) + libtestobject.la: $(libtestobject_la_OBJECTS) $(libtestobject_la_DEPENDENCIES) +- $(LINK) $(libtestobject_la_LDFLAGS) $(libtestobject_la_OBJECTS) $(libtestobject_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestobject_la_LINK) $(libtestobject_la_OBJECTS) $(libtestobject_la_LIBADD) $(LIBS) + libtestoptionmenu.la: $(libtestoptionmenu_la_OBJECTS) $(libtestoptionmenu_la_DEPENDENCIES) +- $(LINK) $(libtestoptionmenu_la_LDFLAGS) $(libtestoptionmenu_la_OBJECTS) $(libtestoptionmenu_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestoptionmenu_la_LINK) $(libtestoptionmenu_la_OBJECTS) $(libtestoptionmenu_la_LIBADD) $(LIBS) + libtestpaned.la: $(libtestpaned_la_OBJECTS) $(libtestpaned_la_DEPENDENCIES) +- $(LINK) $(libtestpaned_la_LDFLAGS) $(libtestpaned_la_OBJECTS) $(libtestpaned_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestpaned_la_LINK) $(libtestpaned_la_OBJECTS) $(libtestpaned_la_LIBADD) $(LIBS) + libtestprops.la: $(libtestprops_la_OBJECTS) $(libtestprops_la_DEPENDENCIES) +- $(LINK) $(libtestprops_la_LDFLAGS) $(libtestprops_la_OBJECTS) $(libtestprops_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestprops_la_LINK) $(libtestprops_la_OBJECTS) $(libtestprops_la_LIBADD) $(LIBS) + libtestselection.la: $(libtestselection_la_OBJECTS) $(libtestselection_la_DEPENDENCIES) +- $(LINK) $(libtestselection_la_LDFLAGS) $(libtestselection_la_OBJECTS) $(libtestselection_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestselection_la_LINK) $(libtestselection_la_OBJECTS) $(libtestselection_la_LIBADD) $(LIBS) + libteststatusbar.la: $(libteststatusbar_la_OBJECTS) $(libteststatusbar_la_DEPENDENCIES) +- $(LINK) $(libteststatusbar_la_LDFLAGS) $(libteststatusbar_la_OBJECTS) $(libteststatusbar_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libteststatusbar_la_LINK) $(libteststatusbar_la_OBJECTS) $(libteststatusbar_la_LIBADD) $(LIBS) + libtesttable.la: $(libtesttable_la_OBJECTS) $(libtesttable_la_DEPENDENCIES) +- $(LINK) $(libtesttable_la_LDFLAGS) $(libtesttable_la_OBJECTS) $(libtesttable_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtesttable_la_LINK) $(libtesttable_la_OBJECTS) $(libtesttable_la_LIBADD) $(LIBS) + libtesttext.la: $(libtesttext_la_OBJECTS) $(libtesttext_la_DEPENDENCIES) +- $(LINK) $(libtesttext_la_LDFLAGS) $(libtesttext_la_OBJECTS) $(libtesttext_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtesttext_la_LINK) $(libtesttext_la_OBJECTS) $(libtesttext_la_LIBADD) $(LIBS) + libtesttoplevel.la: $(libtesttoplevel_la_OBJECTS) $(libtesttoplevel_la_DEPENDENCIES) +- $(LINK) $(libtesttoplevel_la_LDFLAGS) $(libtesttoplevel_la_OBJECTS) $(libtesttoplevel_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtesttoplevel_la_LINK) $(libtesttoplevel_la_OBJECTS) $(libtesttoplevel_la_LIBADD) $(LIBS) + libtesttreetable.la: $(libtesttreetable_la_OBJECTS) $(libtesttreetable_la_DEPENDENCIES) +- $(LINK) $(libtesttreetable_la_LDFLAGS) $(libtesttreetable_la_OBJECTS) $(libtesttreetable_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtesttreetable_la_LINK) $(libtesttreetable_la_OBJECTS) $(libtesttreetable_la_LIBADD) $(LIBS) + libtestvalues.la: $(libtestvalues_la_OBJECTS) $(libtestvalues_la_DEPENDENCIES) +- $(LINK) $(libtestvalues_la_LDFLAGS) $(libtestvalues_la_OBJECTS) $(libtestvalues_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libtestvalues_la_LINK) $(libtestvalues_la_OBJECTS) $(libtestvalues_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -948,37 +928,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testvalues.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -986,93 +957,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -1080,9 +1043,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(moduledir) ++ for dir in "$(DESTDIR)$(moduledir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -1102,7 +1066,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -1116,24 +1081,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-moduleLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -1154,20 +1141,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am uninstall-moduleLTLIBRARIES ++uninstall-am: uninstall-moduleLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-moduleLTLIBRARIES \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ +- dvi-am info info-am install install-am install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-moduleLTLIBRARIES \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am \ +- uninstall-moduleLTLIBRARIES ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man \ ++ install-moduleLTLIBRARIES install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am uninstall-moduleLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -1224,6 +1215,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/other/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/other/Makefile.in +--- gtk+2.0-2.17.10/modules/other/Makefile.in 2009-09-01 06:02:59.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/other/Makefile.in 2009-09-01 18:44:03.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +33,72 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++subdir = modules/other ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DIST_SUBDIRS = $(SUBDIRS) ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +108,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +115,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +137,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +144,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +169,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +188,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +198,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +229,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +245,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +262,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +274,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +316,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +325,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,31 +361,40 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = gail +-subdir = modules/other +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-DIST_SUBDIRS = $(SUBDIRS) + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/other/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/other/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/other/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -450,10 +402,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -461,7 +409,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -472,16 +426,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -501,124 +460,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -629,7 +601,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -649,7 +620,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -660,25 +632,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -697,26 +690,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -773,6 +764,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/cups/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/cups/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/cups/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/cups/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,94 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/printbackends/cups ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(backenddir)" ++LTLIBRARIES = $(backend_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(top_builddir)/gtk/$(gtktargetlib) \ ++ $(top_builddir)/gdk/$(gdktargetlib) $(am__DEPENDENCIES_1) ++libprintbackend_cups_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ ++ $(am__DEPENDENCIES_1) ++am_libprintbackend_cups_la_OBJECTS = gtkprintbackendcups.lo \ ++ gtkprintercups.lo gtkcupsutils.lo ++libprintbackend_cups_la_OBJECTS = \ ++ $(am_libprintbackend_cups_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libprintbackend_cups_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libprintbackend_cups_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libprintbackend_cups_la_SOURCES) ++DIST_SOURCES = $(libprintbackend_cups_la_SOURCES) ++HEADERS = $(noinst_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +132,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +139,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +161,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +168,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +193,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +212,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +222,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +253,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +269,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +286,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +298,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +340,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +349,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +385,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gtk \ +@@ -432,107 +397,95 @@ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) + +- + LDADDS = \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(GTK_DEP_LIBS) + +- + backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends +- + backend_LTLIBRARIES = libprintbackend-cups.la +- + libprintbackend_cups_la_SOURCES = \ + gtkprintbackendcups.c \ + gtkprintercups.c \ + gtkcupsutils.c + +- + noinst_HEADERS = \ + gtkprintbackendcups.h \ + gtkprintercups.h \ + gtkcupsutils.h + +- + libprintbackend_cups_la_LDFLAGS = -avoid-version -module $(no_undefined) + libprintbackend_cups_la_LIBADD = $(LDADDS) $(CUPS_LIBS) +-subdir = modules/printbackends/cups +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(backend_LTLIBRARIES) +- +-libprintbackend_cups_la_DEPENDENCIES = \ +- $(top_builddir)/gtk/$(gtktargetlib) \ +- $(top_builddir)/gdk/$(gdktargetlib) +-am_libprintbackend_cups_la_OBJECTS = gtkprintbackendcups.lo \ +- gtkprintercups.lo gtkcupsutils.lo +-libprintbackend_cups_la_OBJECTS = $(am_libprintbackend_cups_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gtkcupsutils.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintbackendcups.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprintercups.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libprintbackend_cups_la_SOURCES) +-HEADERS = $(noinst_HEADERS) +- +-DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libprintbackend_cups_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/cups/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-backendLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/cups/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/cups/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-backendLTLIBRARIES: $(backend_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(backenddir) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(backenddir)" || $(MKDIR_P) "$(DESTDIR)$(backenddir)" ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f"; \ +- $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(backenddir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(backenddir)"; \ ++ } + + uninstall-backendLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p; \ ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(backenddir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(backenddir)/$$f"; \ + done + + clean-backendLTLIBRARIES: + -test -z "$(backend_LTLIBRARIES)" || rm -f $(backend_LTLIBRARIES) + @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libprintbackend-cups.la: $(libprintbackend_cups_la_OBJECTS) $(libprintbackend_cups_la_DEPENDENCIES) +- $(LINK) -rpath $(backenddir) $(libprintbackend_cups_la_LDFLAGS) $(libprintbackend_cups_la_OBJECTS) $(libprintbackend_cups_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libprintbackend_cups_la_LINK) -rpath $(backenddir) $(libprintbackend_cups_la_OBJECTS) $(libprintbackend_cups_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -542,37 +495,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkprintercups.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -580,93 +524,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -674,9 +610,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(backenddir) ++ for dir in "$(DESTDIR)$(backenddir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -696,7 +633,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -710,24 +648,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-backendLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -748,20 +708,24 @@ + + ps-am: + +-uninstall-am: uninstall-backendLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-backendLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-backendLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-backendLTLIBRARIES install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-backendLTLIBRARIES \ +- uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am \ ++ install-backendLTLIBRARIES install-data install-data-am \ ++ install-dvi install-dvi-am install-exec install-exec-am \ ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-backendLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -818,6 +782,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/file/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/file/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/file/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/file/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,93 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/printbackends/file ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(backenddir)" ++LTLIBRARIES = $(backend_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libprintbackend_file_la_DEPENDENCIES = \ ++ $(top_builddir)/gtk/$(gtktargetlib) \ ++ $(top_builddir)/gdk/$(gdktargetlib) $(am__DEPENDENCIES_1) ++am_libprintbackend_file_la_OBJECTS = \ ++ libprintbackend_file_la-gtkprintbackendfile.lo ++libprintbackend_file_la_OBJECTS = \ ++ $(am_libprintbackend_file_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libprintbackend_file_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(libprintbackend_file_la_CFLAGS) $(CFLAGS) \ ++ $(libprintbackend_file_la_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libprintbackend_file_la_SOURCES) ++DIST_SOURCES = $(libprintbackend_file_la_SOURCES) ++HEADERS = $(noinst_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +131,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +138,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +160,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +167,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +192,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +211,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +221,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +252,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +268,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +285,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +297,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +339,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +348,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,17 +384,12 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends +- + backend_LTLIBRARIES = libprintbackend-file.la +- + libprintbackend_file_la_SOURCES = \ + gtkprintbackendfile.c + +- + libprintbackend_file_la_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gtk \ +@@ -438,100 +399,91 @@ + -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ + $(AM_CPPFLAGS) + +- + libprintbackend_file_la_CFLAGS = \ + $(GTK_DEP_CFLAGS) \ + $(AM_CFLAGS) + +- + libprintbackend_file_la_LDFLAGS = \ + -avoid-version -module $(no_undefined) + +- + libprintbackend_file_la_LIBADD = \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(GTK_DEP_LIBS) + +- + noinst_HEADERS = \ + gtkprintbackendfile.h + +-subdir = modules/printbackends/file +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(backend_LTLIBRARIES) +- +-libprintbackend_file_la_DEPENDENCIES = \ +- $(top_builddir)/gtk/$(gtktargetlib) \ +- $(top_builddir)/gdk/$(gdktargetlib) +-am_libprintbackend_file_la_OBJECTS = \ +- libprintbackend_file_la-gtkprintbackendfile.lo +-libprintbackend_file_la_OBJECTS = $(am_libprintbackend_file_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libprintbackend_file_la_SOURCES) +-HEADERS = $(noinst_HEADERS) +- +-DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libprintbackend_file_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/file/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-backendLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/file/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/file/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-backendLTLIBRARIES: $(backend_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(backenddir) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(backenddir)" || $(MKDIR_P) "$(DESTDIR)$(backenddir)" ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f"; \ +- $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(backenddir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(backenddir)"; \ ++ } + + uninstall-backendLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p; \ ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(backenddir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(backenddir)/$$f"; \ + done + + clean-backendLTLIBRARIES: + -test -z "$(backend_LTLIBRARIES)" || rm -f $(backend_LTLIBRARIES) + @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libprintbackend-file.la: $(libprintbackend_file_la_OBJECTS) $(libprintbackend_file_la_DEPENDENCIES) +- $(LINK) -rpath $(backenddir) $(libprintbackend_file_la_LDFLAGS) $(libprintbackend_file_la_OBJECTS) $(libprintbackend_file_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libprintbackend_file_la_LINK) -rpath $(backenddir) $(libprintbackend_file_la_OBJECTS) $(libprintbackend_file_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -539,70 +491,36 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +- +-libprintbackend_file_la-gtkprintbackendfile.o: gtkprintbackendfile.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -MT libprintbackend_file_la-gtkprintbackendfile.o -MD -MP -MF "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_file_la-gtkprintbackendfile.o `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendfile.c' object='libprintbackend_file_la-gtkprintbackendfile.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Po' tmpdepfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_file_la-gtkprintbackendfile.o `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c +- +-libprintbackend_file_la-gtkprintbackendfile.obj: gtkprintbackendfile.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -MT libprintbackend_file_la-gtkprintbackendfile.obj -MD -MP -MF "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_file_la-gtkprintbackendfile.obj `if test -f 'gtkprintbackendfile.c'; then $(CYGPATH_W) 'gtkprintbackendfile.c'; else $(CYGPATH_W) '$(srcdir)/gtkprintbackendfile.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendfile.c' object='libprintbackend_file_la-gtkprintbackendfile.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Po' tmpdepfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_file_la-gtkprintbackendfile.obj `if test -f 'gtkprintbackendfile.c'; then $(CYGPATH_W) 'gtkprintbackendfile.c'; else $(CYGPATH_W) '$(srcdir)/gtkprintbackendfile.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + libprintbackend_file_la-gtkprintbackendfile.lo: gtkprintbackendfile.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -MT libprintbackend_file_la-gtkprintbackendfile.lo -MD -MP -MF "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_file_la-gtkprintbackendfile.lo `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo" "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -MT libprintbackend_file_la-gtkprintbackendfile.lo -MD -MP -MF $(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo -c -o libprintbackend_file_la-gtkprintbackendfile.lo `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Tpo $(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendfile.c' object='libprintbackend_file_la-gtkprintbackendfile.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.Plo' tmpdepfile='$(DEPDIR)/libprintbackend_file_la-gtkprintbackendfile.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_file_la-gtkprintbackendfile.lo `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_file_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_file_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_file_la-gtkprintbackendfile.lo `test -f 'gtkprintbackendfile.c' || echo '$(srcdir)/'`gtkprintbackendfile.c + + mostlyclean-libtool: + -rm -f *.lo +@@ -610,93 +528,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -704,9 +614,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(backenddir) ++ for dir in "$(DESTDIR)$(backenddir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -726,7 +637,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -740,24 +652,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-backendLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -778,20 +712,24 @@ + + ps-am: + +-uninstall-am: uninstall-backendLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-backendLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-backendLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-backendLTLIBRARIES install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-backendLTLIBRARIES \ +- uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am \ ++ install-backendLTLIBRARIES install-data install-data-am \ ++ install-dvi install-dvi-am install-exec install-exec-am \ ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-backendLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -848,6 +786,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/lpr/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/lpr/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/lpr/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/lpr/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,91 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/printbackends/lpr ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(backenddir)" ++LTLIBRARIES = $(backend_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gtk/$(gtktargetlib) ++libprintbackend_lpr_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libprintbackend_lpr_la_OBJECTS = gtkprintbackendlpr.lo ++libprintbackend_lpr_la_OBJECTS = $(am_libprintbackend_lpr_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libprintbackend_lpr_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libprintbackend_lpr_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libprintbackend_lpr_la_SOURCES) ++DIST_SOURCES = $(libprintbackend_lpr_la_SOURCES) ++HEADERS = $(noinst_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +129,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +136,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +158,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +165,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +190,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +209,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +219,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +250,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +266,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +283,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +295,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +337,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +346,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,9 +382,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gtk \ +@@ -431,98 +393,90 @@ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) + +- + LDADDS = \ + $(GTK_DEP_LIBS) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends +- + backend_LTLIBRARIES = libprintbackend-lpr.la +- + libprintbackend_lpr_la_SOURCES = \ + gtkprintbackendlpr.c + +- + noinst_HEADERS = \ + gtkprintbackendlpr.h + +- + libprintbackend_lpr_la_LDFLAGS = -avoid-version -module $(no_undefined) + libprintbackend_lpr_la_LIBADD = $(LDADDS) +-subdir = modules/printbackends/lpr +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(backend_LTLIBRARIES) +- +-libprintbackend_lpr_la_DEPENDENCIES = \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_libprintbackend_lpr_la_OBJECTS = gtkprintbackendlpr.lo +-libprintbackend_lpr_la_OBJECTS = $(am_libprintbackend_lpr_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gtkprintbackendlpr.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libprintbackend_lpr_la_SOURCES) +-HEADERS = $(noinst_HEADERS) +- +-DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libprintbackend_lpr_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/lpr/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-backendLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/lpr/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/lpr/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-backendLTLIBRARIES: $(backend_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(backenddir) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(backenddir)" || $(MKDIR_P) "$(DESTDIR)$(backenddir)" ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f"; \ +- $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(backenddir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(backenddir)"; \ ++ } + + uninstall-backendLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p; \ ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(backenddir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(backenddir)/$$f"; \ + done + + clean-backendLTLIBRARIES: + -test -z "$(backend_LTLIBRARIES)" || rm -f $(backend_LTLIBRARIES) + @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libprintbackend-lpr.la: $(libprintbackend_lpr_la_OBJECTS) $(libprintbackend_lpr_la_DEPENDENCIES) +- $(LINK) -rpath $(backenddir) $(libprintbackend_lpr_la_LDFLAGS) $(libprintbackend_lpr_la_OBJECTS) $(libprintbackend_lpr_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libprintbackend_lpr_la_LINK) -rpath $(backenddir) $(libprintbackend_lpr_la_OBJECTS) $(libprintbackend_lpr_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -530,37 +484,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkprintbackendlpr.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -568,93 +513,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -662,9 +599,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(backenddir) ++ for dir in "$(DESTDIR)$(backenddir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -684,7 +622,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -698,24 +637,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-backendLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -736,20 +697,24 @@ + + ps-am: + +-uninstall-am: uninstall-backendLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-backendLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-backendLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-backendLTLIBRARIES install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-backendLTLIBRARIES \ +- uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am \ ++ install-backendLTLIBRARIES install-data install-data-am \ ++ install-dvi install-dvi-am install-exec install-exec-am \ ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-backendLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -806,6 +771,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/Makefile.in 2009-09-01 18:44:04.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -15,17 +16,12 @@ + @SET_MAKE@ + + # GTK+ - The GIMP Toolkit +- +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,14 +33,74 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl + @HAVE_CUPS_TRUE@am__append_1 = cups + @TEST_PRINT_BACKEND_TRUE@am__append_2 = test + @HAVE_PAPI_TRUE@am__append_3 = papi ++subdir = modules/printbackends ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++SOURCES = ++DIST_SOURCES = ++RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ++ html-recursive info-recursive install-data-recursive \ ++ install-dvi-recursive install-exec-recursive \ ++ install-html-recursive install-info-recursive \ ++ install-pdf-recursive install-ps-recursive install-recursive \ ++ installcheck-recursive installdirs-recursive pdf-recursive \ ++ ps-recursive uninstall-recursive ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive ++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ ++ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ ++ distdir ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ++am__relativize = \ ++ dir0=`pwd`; \ ++ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ ++ sed_rest='s,^[^/]*/*,,'; \ ++ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ ++ sed_butlast='s,/*[^/]*$$,,'; \ ++ while test -n "$$dir1"; do \ ++ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ ++ if test "$$first" != "."; then \ ++ if test "$$first" = ".."; then \ ++ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ ++ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ ++ else \ ++ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ ++ if test "$$first2" = "$$first"; then \ ++ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ ++ else \ ++ dir2="../$$dir2"; \ ++ fi; \ ++ dir0="$$dir0"/"$$first"; \ ++ fi; \ ++ fi; \ ++ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ ++ done; \ ++ reldir="$$dir2" + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -54,10 +110,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -65,13 +117,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -88,8 +139,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -97,10 +146,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -126,6 +171,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -144,8 +190,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -156,95 +200,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -268,24 +231,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -293,13 +247,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -311,28 +264,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -341,22 +276,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -380,6 +318,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -388,9 +327,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -421,32 +363,41 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + SUBDIRS = file lpr $(am__append_1) $(am__append_2) $(am__append_3) +- + DIST_SUBDIRS = cups file lpr test papi +-subdir = modules/printbackends +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-DIST_SOURCES = +- +-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ +- ps-recursive install-info-recursive uninstall-info-recursive \ +- all-recursive install-data-recursive install-exec-recursive \ +- installdirs-recursive install-recursive uninstall-recursive \ +- check-recursive installcheck-recursive +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am + all: all-recursive + + .SUFFIXES: +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + mostlyclean-libtool: + -rm -f *.lo +@@ -454,10 +405,6 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -465,7 +412,13 @@ + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -476,16 +429,21 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: +- @set fnord $$MAKEFLAGS; amf=$$2; \ ++$(RECURSIVE_CLEAN_TARGETS): ++ @failcom='exit 1'; \ ++ for f in x $$MAKEFLAGS; do \ ++ case $$f in \ ++ *=* | --[!k]*);; \ ++ *k*) failcom='fail=yes';; \ ++ esac; \ ++ done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +@@ -505,124 +463,137 @@ + else \ + local_target="$$target"; \ + fi; \ +- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ +- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ ++ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ++ || eval $$failcom; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ +- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ ++ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ +- if (etags --etags-include --version) >/dev/null 2>&1; then \ ++ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ ++ empty_fix=.; \ + else \ + include_option=--include; \ ++ empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -f $$subdir/TAGS && \ +- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ ++ test ! -f $$subdir/TAGS || \ ++ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ +- test -d $(distdir)/$$subdir \ +- || mkdir $(distdir)/$$subdir \ ++ test -d "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ +- (cd $$subdir && \ ++ fi; \ ++ done ++ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ ++ if test "$$subdir" = .; then :; else \ ++ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ ++ $(am__relativize); \ ++ new_distdir=$$reldir; \ ++ dir1=$$subdir; dir2="$(top_distdir)"; \ ++ $(am__relativize); \ ++ new_top_distdir=$$reldir; \ ++ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ ++ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ++ ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ +- top_distdir="$(top_distdir)" \ +- distdir=../$(distdir)/$$subdir \ ++ top_distdir="$$new_top_distdir" \ ++ distdir="$$new_distdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ ++ am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -633,7 +604,6 @@ + all-am: Makefile + installdirs: installdirs-recursive + installdirs-am: +- + install: install-recursive + install-exec: install-exec-recursive + install-data: install-data-recursive +@@ -653,7 +623,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -664,25 +635,46 @@ + + distclean: distclean-recursive + -rm -f Makefile +-distclean-am: clean-am distclean-generic distclean-libtool \ +- distclean-tags ++distclean-am: clean-am distclean-generic distclean-tags + + dvi: dvi-recursive + + dvi-am: + ++html: html-recursive ++ ++html-am: ++ + info: info-recursive + + info-am: + + install-data-am: + ++install-dvi: install-dvi-recursive ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-recursive ++ ++install-html-am: ++ + install-info: install-info-recursive + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-recursive ++ ++install-pdf-am: ++ ++install-ps: install-ps-recursive ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -701,26 +693,24 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: + +-uninstall-info: uninstall-info-recursive ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \ ++ ctags-recursive install-am install-strip tags-recursive + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ +- check-local clean clean-generic clean-libtool clean-recursive \ +- ctags ctags-recursive distclean distclean-generic \ +- distclean-libtool distclean-recursive distclean-tags distdir \ +- dvi dvi-am dvi-recursive info info-am info-recursive install \ +- install-am install-data install-data-am install-data-recursive \ +- install-exec install-exec-am install-exec-recursive \ +- install-info install-info-am install-info-recursive install-man \ +- install-recursive install-strip installcheck installcheck-am \ +- installdirs installdirs-am installdirs-recursive \ +- maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-generic \ +- mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ +- pdf-recursive ps ps-am ps-recursive tags tags-recursive \ +- uninstall uninstall-am uninstall-info-am \ +- uninstall-info-recursive uninstall-recursive ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am check check-am check-local clean clean-generic \ ++ clean-libtool ctags ctags-recursive distclean \ ++ distclean-generic distclean-libtool distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs installdirs-am \ ++ maintainer-clean maintainer-clean-generic mostlyclean \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags tags-recursive uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -777,6 +767,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/papi/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/papi/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/papi/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/papi/Makefile.in 2009-09-01 18:44:05.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -14,16 +15,13 @@ + + @SET_MAKE@ + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -35,11 +33,93 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++subdir = modules/printbackends/papi ++DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(backenddir)" ++LTLIBRARIES = $(backend_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \ ++ $(top_builddir)/gtk/$(gtktargetlib) ++libprintbackend_papi_la_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_libprintbackend_papi_la_OBJECTS = gtkprinterpapi.lo \ ++ gtkprintbackendpapi.lo ++libprintbackend_papi_la_OBJECTS = \ ++ $(am_libprintbackend_papi_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libprintbackend_papi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libprintbackend_papi_la_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libprintbackend_papi_la_SOURCES) ++DIST_SOURCES = $(libprintbackend_papi_la_SOURCES) ++HEADERS = $(noinst_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -49,10 +129,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -60,13 +136,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -83,8 +158,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -92,10 +165,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -121,6 +190,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -139,8 +209,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -151,95 +219,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -263,24 +250,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -288,13 +266,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -306,28 +283,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -336,22 +295,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -375,6 +337,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -383,10 +346,13 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + @OS_WIN32_TRUE@no_undefined = -no-undefined +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gtk \ +@@ -397,101 +363,92 @@ + $(GTK_DEP_CFLAGS) \ + $(GTK_DEBUG_FLAGS) + +- + LDADDS = \ + $(GTK_DEP_LIBS) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends +- + backend_LTLIBRARIES = libprintbackend-papi.la +- + libprintbackend_papi_la_SOURCES = \ + gtkprinterpapi.c \ + gtkprintbackendpapi.c + +- + noinst_HEADERS = \ + gtkprinterpapi.h \ + gtkprintbackendpapi.h + +- + libprintbackend_papi_la_LDFLAGS = -avoid-version -module $(no_undefined) + libprintbackend_papi_la_LIBADD = $(LDADDS) -lpapi +-subdir = modules/printbackends/papi +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(backend_LTLIBRARIES) +- +-libprintbackend_papi_la_DEPENDENCIES = \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_libprintbackend_papi_la_OBJECTS = gtkprinterpapi.lo \ +- gtkprintbackendpapi.lo +-libprintbackend_papi_la_OBJECTS = $(am_libprintbackend_papi_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gtkprintbackendpapi.Plo \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkprinterpapi.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libprintbackend_papi_la_SOURCES) +-HEADERS = $(noinst_HEADERS) +- +-DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am +-SOURCES = $(libprintbackend_papi_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/papi/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-backendLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/papi/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/papi/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-backendLTLIBRARIES: $(backend_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(backenddir) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(backenddir)" || $(MKDIR_P) "$(DESTDIR)$(backenddir)" ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f"; \ +- $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(backenddir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(backenddir)"; \ ++ } + + uninstall-backendLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p; \ ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(backenddir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(backenddir)/$$f"; \ + done + + clean-backendLTLIBRARIES: + -test -z "$(backend_LTLIBRARIES)" || rm -f $(backend_LTLIBRARIES) + @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libprintbackend-papi.la: $(libprintbackend_papi_la_OBJECTS) $(libprintbackend_papi_la_DEPENDENCIES) +- $(LINK) -rpath $(backenddir) $(libprintbackend_papi_la_LDFLAGS) $(libprintbackend_papi_la_OBJECTS) $(libprintbackend_papi_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libprintbackend_papi_la_LINK) -rpath $(backenddir) $(libprintbackend_papi_la_OBJECTS) $(libprintbackend_papi_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -500,37 +457,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkprinterpapi.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -538,101 +486,95 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + check-am: all-am + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(backenddir) ++ for dir in "$(DESTDIR)$(backenddir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -652,7 +594,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -666,24 +609,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-backendLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -704,23 +669,28 @@ + + ps-am: + +-uninstall-am: uninstall-backendLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-backendLTLIBRARIES ++ ++.MAKE: install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am clean \ + clean-backendLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-backendLTLIBRARIES install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-backendLTLIBRARIES \ +- uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am \ ++ install-backendLTLIBRARIES install-data install-data-am \ ++ install-dvi install-dvi-am install-exec install-exec-am \ ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-backendLTLIBRARIES + + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/modules/printbackends/test/Makefile.in gtk+2.0-2.17.10.ubuntu/modules/printbackends/test/Makefile.in +--- gtk+2.0-2.17.10/modules/printbackends/test/Makefile.in 2009-09-01 06:03:00.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/modules/printbackends/test/Makefile.in 2009-09-01 18:44:05.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,13 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ ++ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = ../../.. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +35,92 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ ++ $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl ++subdir = modules/printbackends/test ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; ++am__vpath_adj = case $$p in \ ++ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ ++ *) f=$$p;; \ ++ esac; ++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; ++am__install_max = 40 ++am__nobase_strip_setup = \ ++ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` ++am__nobase_strip = \ ++ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" ++am__nobase_list = $(am__nobase_strip_setup); \ ++ for p in $$list; do echo "$$p $$p"; done | \ ++ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ ++ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ ++ if (++n[$$2] == $(am__install_max)) \ ++ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ ++ END { for (dir in files) print dir, files[dir] }' ++am__base_list = \ ++ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ ++ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' ++am__installdirs = "$(DESTDIR)$(backenddir)" ++LTLIBRARIES = $(backend_LTLIBRARIES) ++am__DEPENDENCIES_1 = ++libprintbackend_test_la_DEPENDENCIES = \ ++ $(top_builddir)/gtk/$(gtktargetlib) $(am__DEPENDENCIES_1) ++am_libprintbackend_test_la_OBJECTS = \ ++ libprintbackend_test_la-gtkprintbackendtest.lo ++libprintbackend_test_la_OBJECTS = \ ++ $(am_libprintbackend_test_la_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++libprintbackend_test_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(libprintbackend_test_la_CFLAGS) $(CFLAGS) \ ++ $(libprintbackend_test_la_LDFLAGS) $(LDFLAGS) -o $@ ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(libprintbackend_test_la_SOURCES) ++DIST_SOURCES = $(libprintbackend_test_la_SOURCES) ++HEADERS = $(noinst_HEADERS) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +130,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +137,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +159,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +166,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +191,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +210,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +220,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +251,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +267,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +284,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +296,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +338,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,9 +347,12 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + +@@ -418,17 +383,12 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined +- + backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends +- + backend_LTLIBRARIES = libprintbackend-test.la +- + libprintbackend_test_la_SOURCES = \ + gtkprintbackendtest.c + +- + libprintbackend_test_la_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/gtk \ +@@ -438,98 +398,90 @@ + -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ + $(AM_CPPFLAGS) + +- + libprintbackend_test_la_CFLAGS = \ + $(GTK_DEP_CFLAGS) \ + $(AM_CFLAGS) + +- + libprintbackend_test_la_LDFLAGS = \ + -avoid-version -module $(no_undefined) + +- + libprintbackend_test_la_LIBADD = \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(GTK_DEP_LIBS) + +- + noinst_HEADERS = \ + gtkprintbackendtest.h + +-subdir = modules/printbackends/test +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-LTLIBRARIES = $(backend_LTLIBRARIES) +- +-libprintbackend_test_la_DEPENDENCIES = \ +- $(top_builddir)/gtk/$(gtktargetlib) +-am_libprintbackend_test_la_OBJECTS = \ +- libprintbackend_test_la-gtkprintbackendtest.lo +-libprintbackend_test_la_OBJECTS = $(am_libprintbackend_test_la_OBJECTS) +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = \ +-@AMDEP_TRUE@ ./$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Plo +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(libprintbackend_test_la_SOURCES) +-HEADERS = $(noinst_HEADERS) +- +-DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.in \ +- $(top_srcdir)/Makefile.decl Makefile.am +-SOURCES = $(libprintbackend_test_la_SOURCES) +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu modules/printbackends/test/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +-backendLTLIBRARIES_INSTALL = $(INSTALL) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/printbackends/test/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu modules/printbackends/test/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + install-backendLTLIBRARIES: $(backend_LTLIBRARIES) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(backenddir) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ ++ test -z "$(backenddir)" || $(MKDIR_P) "$(DESTDIR)$(backenddir)" ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ list2=; for p in $$list; do \ + if test -f $$p; then \ +- f="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f"; \ +- $(LIBTOOL) --mode=install $(backendLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(backenddir)/$$f; \ ++ list2="$$list2 $$p"; \ + else :; fi; \ +- done ++ done; \ ++ test -z "$$list2" || { \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(backenddir)'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(backenddir)"; \ ++ } + + uninstall-backendLTLIBRARIES: + @$(NORMAL_UNINSTALL) +- @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ +- p="`echo $$p | sed -e 's|^.*/||'`"; \ +- echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p"; \ +- $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(backenddir)/$$p; \ ++ @list='$(backend_LTLIBRARIES)'; test -n "$(backenddir)" || list=; \ ++ for p in $$list; do \ ++ $(am__strip_dir) \ ++ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(backenddir)/$$f'"; \ ++ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(backenddir)/$$f"; \ + done + + clean-backendLTLIBRARIES: + -test -z "$(backend_LTLIBRARIES)" || rm -f $(backend_LTLIBRARIES) + @list='$(backend_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ +- test "$$dir" = "$$p" && dir=.; \ ++ test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + libprintbackend-test.la: $(libprintbackend_test_la_OBJECTS) $(libprintbackend_test_la_DEPENDENCIES) +- $(LINK) -rpath $(backenddir) $(libprintbackend_test_la_LDFLAGS) $(libprintbackend_test_la_OBJECTS) $(libprintbackend_test_la_LIBADD) $(LIBS) ++ $(AM_V_CCLD)$(libprintbackend_test_la_LINK) -rpath $(backenddir) $(libprintbackend_test_la_OBJECTS) $(libprintbackend_test_la_LIBADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -537,70 +489,36 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Plo@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +- +-libprintbackend_test_la-gtkprintbackendtest.o: gtkprintbackendtest.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -MT libprintbackend_test_la-gtkprintbackendtest.o -MD -MP -MF "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_test_la-gtkprintbackendtest.o `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendtest.c' object='libprintbackend_test_la-gtkprintbackendtest.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Po' tmpdepfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_test_la-gtkprintbackendtest.o `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c +- +-libprintbackend_test_la-gtkprintbackendtest.obj: gtkprintbackendtest.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -MT libprintbackend_test_la-gtkprintbackendtest.obj -MD -MP -MF "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_test_la-gtkprintbackendtest.obj `if test -f 'gtkprintbackendtest.c'; then $(CYGPATH_W) 'gtkprintbackendtest.c'; else $(CYGPATH_W) '$(srcdir)/gtkprintbackendtest.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendtest.c' object='libprintbackend_test_la-gtkprintbackendtest.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Po' tmpdepfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_test_la-gtkprintbackendtest.obj `if test -f 'gtkprintbackendtest.c'; then $(CYGPATH_W) 'gtkprintbackendtest.c'; else $(CYGPATH_W) '$(srcdir)/gtkprintbackendtest.c'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + libprintbackend_test_la-gtkprintbackendtest.lo: gtkprintbackendtest.c +-@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -MT libprintbackend_test_la-gtkprintbackendtest.lo -MD -MP -MF "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o libprintbackend_test_la-gtkprintbackendtest.lo `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo" "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -MT libprintbackend_test_la-gtkprintbackendtest.lo -MD -MP -MF $(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo -c -o libprintbackend_test_la-gtkprintbackendtest.lo `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Tpo $(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkprintbackendtest.c' object='libprintbackend_test_la-gtkprintbackendtest.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.Plo' tmpdepfile='$(DEPDIR)/libprintbackend_test_la-gtkprintbackendtest.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_test_la-gtkprintbackendtest.lo `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libprintbackend_test_la_CPPFLAGS) $(CPPFLAGS) $(libprintbackend_test_la_CFLAGS) $(CFLAGS) -c -o libprintbackend_test_la-gtkprintbackendtest.lo `test -f 'gtkprintbackendtest.c' || echo '$(srcdir)/'`gtkprintbackendtest.c + + mostlyclean-libtool: + -rm -f *.lo +@@ -608,93 +526,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = ../../.. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/../../.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -702,9 +612,10 @@ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-am + all-am: Makefile $(LTLIBRARIES) $(HEADERS) +- + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(backenddir) ++ for dir in "$(DESTDIR)$(backenddir)"; do \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ done + install: install-am + install-exec: install-exec-am + install-data: install-data-am +@@ -724,7 +635,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -738,24 +650,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: install-backendLTLIBRARIES + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -776,20 +710,24 @@ + + ps-am: + +-uninstall-am: uninstall-backendLTLIBRARIES uninstall-info-am ++uninstall-am: uninstall-backendLTLIBRARIES ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-backendLTLIBRARIES clean-generic clean-libtool ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-backendLTLIBRARIES install-data \ +- install-data-am install-exec install-exec-am install-info \ +- install-info-am install-man install-strip installcheck \ +- installcheck-am installdirs maintainer-clean \ +- maintainer-clean-generic mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ +- tags uninstall uninstall-am uninstall-backendLTLIBRARIES \ +- uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am \ ++ install-backendLTLIBRARIES install-data install-data-am \ ++ install-dvi install-dvi-am install-exec install-exec-am \ ++ install-html install-html-am install-info install-info-am \ ++ install-man install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs maintainer-clean maintainer-clean-generic \ ++ mostlyclean mostlyclean-compile mostlyclean-generic \ ++ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ++ uninstall-am uninstall-backendLTLIBRARIES + + # call as: $(XVFB_START) && someprogram + +@@ -846,6 +784,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/perf/Makefile.in gtk+2.0-2.17.10.ubuntu/perf/Makefile.in +--- gtk+2.0-2.17.10/perf/Makefile.in 2009-09-01 06:03:01.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/perf/Makefile.in 2009-09-01 18:44:05.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,11 +34,63 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = testperf$(EXEEXT) ++subdir = perf ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++PROGRAMS = $(noinst_PROGRAMS) ++am_testperf_OBJECTS = appwindow.$(OBJEXT) gtkwidgetprofiler.$(OBJEXT) \ ++ main.$(OBJEXT) marshalers.$(OBJEXT) textview.$(OBJEXT) \ ++ treeview.$(OBJEXT) typebuiltins.$(OBJEXT) ++testperf_OBJECTS = $(am_testperf_OBJECTS) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(testperf_SOURCES) ++DIST_SOURCES = $(testperf_SOURCES) ++ETAGS = etags ++CTAGS = ctags ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -51,10 +100,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -62,13 +107,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -85,8 +129,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -94,10 +136,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -123,6 +161,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -141,8 +180,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -153,95 +190,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -265,24 +221,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -290,13 +237,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -308,28 +254,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -338,22 +266,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -377,6 +308,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -385,20 +317,18 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- README \ +- marshalers.list \ +- typebuiltins.c.template \ +- typebuiltins.h.template \ +- $(BUILT_SOURCES) +- ++EXTRA_DIST = README marshalers.list typebuiltins.c.template \ ++ typebuiltins.h.template $(BUILT_SOURCES) + TEST_PROGS = + + ### testing rules +@@ -424,7 +354,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ +@@ -434,27 +363,18 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- +-noinst_PROGRAMS = \ +- testperf +- +- + testperf_DEPENDENCIES = $(TEST_DEPS) +- + testperf_LDADD = $(LDADDS) +- + testperf_SOURCES = \ + appwindow.c \ + gtkwidgetprofiler.c \ +@@ -468,81 +388,70 @@ + typebuiltins.h \ + widgets.h + +- + BUILT_SOURCES = \ + marshalers.c \ + marshalers.h \ + typebuiltins.c \ + typebuiltins.h + +- + stamp_files = \ + stamp-marshalers.h \ + stamp-typebuiltins.h + +- + headers_with_enums = \ + gtkwidgetprofiler.h + +- + MAINTAINERCLEANFILES = $(BUILT_SOURCES) $(stamp_files) +-subdir = perf +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-noinst_PROGRAMS = testperf$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am_testperf_OBJECTS = appwindow.$(OBJEXT) gtkwidgetprofiler.$(OBJEXT) \ +- main.$(OBJEXT) marshalers.$(OBJEXT) textview.$(OBJEXT) \ +- treeview.$(OBJEXT) typebuiltins.$(OBJEXT) +-testperf_OBJECTS = $(am_testperf_OBJECTS) +-testperf_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/appwindow.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkwidgetprofiler.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/main.Po ./$(DEPDIR)/marshalers.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/textview.Po ./$(DEPDIR)/treeview.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/typebuiltins.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(testperf_SOURCES) +-DIST_COMMON = README $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(testperf_SOURCES) +- + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + + .SUFFIXES: + .SUFFIXES: .c .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu perf/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu perf/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu perf/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + testperf$(EXEEXT): $(testperf_OBJECTS) $(testperf_DEPENDENCIES) + @rm -f testperf$(EXEEXT) +- $(LINK) $(testperf_LDFLAGS) $(testperf_OBJECTS) $(testperf_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testperf_OBJECTS) $(testperf_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -556,37 +465,28 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/typebuiltins.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + mostlyclean-libtool: + -rm -f *.lo +@@ -594,93 +494,85 @@ + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -689,7 +581,6 @@ + check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am + all-am: Makefile $(PROGRAMS) +- + installdirs: + install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +@@ -711,13 +602,14 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) ++ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + clean: clean-am + + clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ +@@ -727,24 +619,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-local distclean-tags ++ distclean-local distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -765,18 +679,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: all check check-am install install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \ + clean-generic clean-libtool clean-noinstPROGRAMS ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-local distclean-tags distdir dvi dvi-am info info-am \ +- install install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am install-man \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-local distclean-tags distdir dvi \ ++ dvi-am html html-am info info-am install install-am \ ++ install-data install-data-am install-dvi install-dvi-am \ ++ install-exec install-exec-am install-html install-html-am \ ++ install-info install-info-am install-man install-pdf \ ++ install-pdf-am install-ps install-ps-am install-strip \ ++ installcheck installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -867,6 +786,7 @@ + fi + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -Nur gtk+2.0-2.17.10/tests/Makefile.in gtk+2.0-2.17.10.ubuntu/tests/Makefile.in +--- gtk+2.0-2.17.10/tests/Makefile.in 2009-09-01 06:03:01.000000000 +0200 ++++ gtk+2.0-2.17.10.ubuntu/tests/Makefile.in 2009-09-01 18:44:05.000000000 +0200 +@@ -1,8 +1,9 @@ +-# Makefile.in generated by automake 1.7.9 from Makefile.am. ++# Makefile.in generated by automake 1.11 from Makefile.am. + # @configure_input@ + +-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 +-# Free Software Foundation, Inc. ++# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ++# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, ++# Inc. + # This Makefile.in is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -16,16 +17,12 @@ + + # GTK+ - The GIMP Toolkit + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. +- ++pkglibdir = $(libdir)/@PACKAGE@ ++pkglibexecdir = $(libexecdir)/@PACKAGE@ + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -37,13 +34,329 @@ + NORMAL_UNINSTALL = : + PRE_UNINSTALL = : + POST_UNINSTALL = : ++build_triplet = @build@ + host_triplet = @host@ ++DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ++ $(top_srcdir)/Makefile.decl ++noinst_PROGRAMS = $(am__EXEEXT_1) simple$(EXEEXT) flicker$(EXEEXT) \ ++ print-editor$(EXEEXT) testaccel$(EXEEXT) \ ++ testassistant$(EXEEXT) testbbox$(EXEEXT) testbuttons$(EXEEXT) \ ++ testcairo$(EXEEXT) testcalendar$(EXEEXT) testcombo$(EXEEXT) \ ++ testcombochange$(EXEEXT) testcellrenderertext$(EXEEXT) \ ++ testclientmessage$(EXEEXT) testdnd$(EXEEXT) \ ++ testellipsise$(EXEEXT) testentrycompletion$(EXEEXT) \ ++ testentryicons$(EXEEXT) testfilechooser$(EXEEXT) \ ++ testfilechooserbutton$(EXEEXT) testframe$(EXEEXT) \ ++ testgtk$(EXEEXT) testiconview$(EXEEXT) testicontheme$(EXEEXT) \ ++ testimage$(EXEEXT) testinput$(EXEEXT) testmenus$(EXEEXT) \ ++ testmenubars$(EXEEXT) testmountoperation$(EXEEXT) \ ++ testmultidisplay$(EXEEXT) testmultiscreen$(EXEEXT) \ ++ testnotebookdnd$(EXEEXT) testnouiprint$(EXEEXT) \ ++ testoffscreen$(EXEEXT) testorientable$(EXEEXT) \ ++ testprint$(EXEEXT) testrgb$(EXEEXT) testrecentchooser$(EXEEXT) \ ++ testrecentchoosermenu$(EXEEXT) testrichtext$(EXEEXT) \ ++ testscale$(EXEEXT) testselection$(EXEEXT) $(am__EXEEXT_2) \ ++ testspinbutton$(EXEEXT) teststatusicon$(EXEEXT) \ ++ testtext$(EXEEXT) testtoolbar$(EXEEXT) \ ++ stresstest-toolbar$(EXEEXT) testtreeedit$(EXEEXT) \ ++ testtreemodel$(EXEEXT) testtreeview$(EXEEXT) \ ++ testtreefocus$(EXEEXT) testtreeflow$(EXEEXT) \ ++ testtreecolumns$(EXEEXT) testtreecolumnsizing$(EXEEXT) \ ++ testtreesort$(EXEEXT) treestoretest$(EXEEXT) \ ++ testxinerama$(EXEEXT) testwindows$(EXEEXT) \ ++ pixbuf-read$(EXEEXT) pixbuf-lowmem$(EXEEXT) \ ++ pixbuf-randomly-modified$(EXEEXT) pixbuf-random$(EXEEXT) \ ++ pixbuf-threads$(EXEEXT) testmerge$(EXEEXT) \ ++ testactions$(EXEEXT) testgrouping$(EXEEXT) \ ++ testtooltips$(EXEEXT) testvolumebutton$(EXEEXT) \ ++ $(am__EXEEXT_3) + @HAVE_CXX_TRUE@am__append_1 = autotestkeywords ++@HAVE_CXX_TRUE@TESTS = autotestkeywords$(EXEEXT) + @HAVE_CXX_TRUE@@HAVE_OBJC_TRUE@am__append_2 = -DHAVE_OBJC=1 ++subdir = tests ++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ++am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ ++ $(top_srcdir)/configure.in ++am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ ++ $(ACLOCAL_M4) ++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ++CONFIG_HEADER = $(top_builddir)/config.h ++CONFIG_CLEAN_FILES = ++CONFIG_CLEAN_VPATH_FILES = ++am__EXEEXT_1 = ++@USE_X11_TRUE@am__EXEEXT_2 = testsocket$(EXEEXT) \ ++@USE_X11_TRUE@ testsocket_child$(EXEEXT) ++@HAVE_CXX_TRUE@am__EXEEXT_3 = autotestkeywords$(EXEEXT) ++PROGRAMS = $(noinst_PROGRAMS) ++am__autotestkeywords_SOURCES_DIST = autotestkeywords.cc ++@HAVE_CXX_TRUE@am_autotestkeywords_OBJECTS = \ ++@HAVE_CXX_TRUE@ autotestkeywords-autotestkeywords.$(OBJEXT) ++autotestkeywords_OBJECTS = $(am_autotestkeywords_OBJECTS) ++autotestkeywords_LDADD = $(LDADD) ++AM_V_lt = $(am__v_lt_$(V)) ++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) ++am__v_lt_0 = --silent ++autotestkeywords_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ ++ $(LDFLAGS) -o $@ ++flicker_SOURCES = flicker.c ++flicker_OBJECTS = flicker.$(OBJEXT) ++pixbuf_lowmem_SOURCES = pixbuf-lowmem.c ++pixbuf_lowmem_OBJECTS = pixbuf-lowmem.$(OBJEXT) ++pixbuf_lowmem_DEPENDENCIES = $(LDADDS) ++pixbuf_random_SOURCES = pixbuf-random.c ++pixbuf_random_OBJECTS = pixbuf-random.$(OBJEXT) ++pixbuf_random_DEPENDENCIES = $(LDADDS) ++pixbuf_randomly_modified_SOURCES = pixbuf-randomly-modified.c ++pixbuf_randomly_modified_OBJECTS = pixbuf-randomly-modified.$(OBJEXT) ++pixbuf_randomly_modified_DEPENDENCIES = $(LDADDS) ++pixbuf_read_SOURCES = pixbuf-read.c ++pixbuf_read_OBJECTS = pixbuf-read.$(OBJEXT) ++pixbuf_read_DEPENDENCIES = $(LDADDS) ++pixbuf_threads_SOURCES = pixbuf-threads.c ++pixbuf_threads_OBJECTS = pixbuf-threads.$(OBJEXT) ++am__DEPENDENCIES_1 = ++pixbuf_threads_DEPENDENCIES = $(LDADDS) $(am__DEPENDENCIES_1) ++print_editor_SOURCES = print-editor.c ++print_editor_OBJECTS = print-editor.$(OBJEXT) ++simple_SOURCES = simple.c ++simple_OBJECTS = simple.$(OBJEXT) ++stresstest_toolbar_SOURCES = stresstest-toolbar.c ++stresstest_toolbar_OBJECTS = stresstest-toolbar.$(OBJEXT) ++stresstest_toolbar_DEPENDENCIES = $(LDADDS) ++testaccel_SOURCES = testaccel.c ++testaccel_OBJECTS = testaccel.$(OBJEXT) ++am_testactions_OBJECTS = testactions.$(OBJEXT) ++testactions_OBJECTS = $(am_testactions_OBJECTS) ++testassistant_SOURCES = testassistant.c ++testassistant_OBJECTS = testassistant.$(OBJEXT) ++am_testbbox_OBJECTS = testbbox.$(OBJEXT) ++testbbox_OBJECTS = $(am_testbbox_OBJECTS) ++am_testbuttons_OBJECTS = testbuttons.$(OBJEXT) ++testbuttons_OBJECTS = $(am_testbuttons_OBJECTS) ++testcairo_SOURCES = testcairo.c ++testcairo_OBJECTS = testcairo.$(OBJEXT) ++testcalendar_SOURCES = testcalendar.c ++testcalendar_OBJECTS = testcalendar.$(OBJEXT) ++testcellrenderertext_SOURCES = testcellrenderertext.c ++testcellrenderertext_OBJECTS = testcellrenderertext.$(OBJEXT) ++testclientmessage_SOURCES = testclientmessage.c ++testclientmessage_OBJECTS = testclientmessage.$(OBJEXT) ++testcombo_SOURCES = testcombo.c ++testcombo_OBJECTS = testcombo.$(OBJEXT) ++testcombochange_SOURCES = testcombochange.c ++testcombochange_OBJECTS = testcombochange.$(OBJEXT) ++testdnd_SOURCES = testdnd.c ++testdnd_OBJECTS = testdnd.$(OBJEXT) ++testellipsise_SOURCES = testellipsise.c ++testellipsise_OBJECTS = testellipsise.$(OBJEXT) ++am_testentrycompletion_OBJECTS = prop-editor.$(OBJEXT) \ ++ testentrycompletion.$(OBJEXT) ++testentrycompletion_OBJECTS = $(am_testentrycompletion_OBJECTS) ++am_testentryicons_OBJECTS = prop-editor.$(OBJEXT) \ ++ testentryicons.$(OBJEXT) ++testentryicons_OBJECTS = $(am_testentryicons_OBJECTS) ++am_testfilechooser_OBJECTS = prop-editor.$(OBJEXT) \ ++ testfilechooser.$(OBJEXT) ++testfilechooser_OBJECTS = $(am_testfilechooser_OBJECTS) ++am_testfilechooserbutton_OBJECTS = prop-editor.$(OBJEXT) \ ++ testfilechooserbutton.$(OBJEXT) ++testfilechooserbutton_OBJECTS = $(am_testfilechooserbutton_OBJECTS) ++am_testframe_OBJECTS = testframe.$(OBJEXT) ++testframe_OBJECTS = $(am_testframe_OBJECTS) ++am_testgrouping_OBJECTS = testgrouping.$(OBJEXT) ++testgrouping_OBJECTS = $(am_testgrouping_OBJECTS) ++am_testgtk_OBJECTS = prop-editor.$(OBJEXT) testgtk.$(OBJEXT) ++testgtk_OBJECTS = $(am_testgtk_OBJECTS) ++testicontheme_SOURCES = testicontheme.c ++testicontheme_OBJECTS = testicontheme.$(OBJEXT) ++am_testiconview_OBJECTS = testiconview.$(OBJEXT) prop-editor.$(OBJEXT) ++testiconview_OBJECTS = $(am_testiconview_OBJECTS) ++testimage_SOURCES = testimage.c ++testimage_OBJECTS = testimage.$(OBJEXT) ++testinput_SOURCES = testinput.c ++testinput_OBJECTS = testinput.$(OBJEXT) ++testmenubars_SOURCES = testmenubars.c ++testmenubars_OBJECTS = testmenubars.$(OBJEXT) ++testmenus_SOURCES = testmenus.c ++testmenus_OBJECTS = testmenus.$(OBJEXT) ++am_testmerge_OBJECTS = testmerge.$(OBJEXT) ++testmerge_OBJECTS = $(am_testmerge_OBJECTS) ++testmountoperation_SOURCES = testmountoperation.c ++testmountoperation_OBJECTS = testmountoperation.$(OBJEXT) ++testmultidisplay_SOURCES = testmultidisplay.c ++testmultidisplay_OBJECTS = testmultidisplay.$(OBJEXT) ++testmultiscreen_SOURCES = testmultiscreen.c ++testmultiscreen_OBJECTS = testmultiscreen.$(OBJEXT) ++testnotebookdnd_SOURCES = testnotebookdnd.c ++testnotebookdnd_OBJECTS = testnotebookdnd.$(OBJEXT) ++testnouiprint_SOURCES = testnouiprint.c ++testnouiprint_OBJECTS = testnouiprint.$(OBJEXT) ++am_testoffscreen_OBJECTS = gtkoffscreenbox.$(OBJEXT) \ ++ testoffscreen.$(OBJEXT) ++testoffscreen_OBJECTS = $(am_testoffscreen_OBJECTS) ++testorientable_SOURCES = testorientable.c ++testorientable_OBJECTS = testorientable.$(OBJEXT) ++am_testprint_OBJECTS = testprint.$(OBJEXT) \ ++ testprintfileoperation.$(OBJEXT) ++testprint_OBJECTS = $(am_testprint_OBJECTS) ++am_testrecentchooser_OBJECTS = prop-editor.$(OBJEXT) \ ++ testrecentchooser.$(OBJEXT) ++testrecentchooser_OBJECTS = $(am_testrecentchooser_OBJECTS) ++am_testrecentchoosermenu_OBJECTS = testrecentchoosermenu.$(OBJEXT) ++testrecentchoosermenu_OBJECTS = $(am_testrecentchoosermenu_OBJECTS) ++testrgb_SOURCES = testrgb.c ++testrgb_OBJECTS = testrgb.$(OBJEXT) ++testrichtext_SOURCES = testrichtext.c ++testrichtext_OBJECTS = testrichtext.$(OBJEXT) ++testscale_SOURCES = testscale.c ++testscale_OBJECTS = testscale.$(OBJEXT) ++testselection_SOURCES = testselection.c ++testselection_OBJECTS = testselection.$(OBJEXT) ++am_testsocket_OBJECTS = testsocket.$(OBJEXT) \ ++ testsocket_common.$(OBJEXT) ++testsocket_OBJECTS = $(am_testsocket_OBJECTS) ++am_testsocket_child_OBJECTS = testsocket_child.$(OBJEXT) \ ++ testsocket_common.$(OBJEXT) ++testsocket_child_OBJECTS = $(am_testsocket_child_OBJECTS) ++am_testspinbutton_OBJECTS = testspinbutton.$(OBJEXT) ++testspinbutton_OBJECTS = $(am_testspinbutton_OBJECTS) ++am_teststatusicon_OBJECTS = prop-editor.$(OBJEXT) \ ++ teststatusicon.$(OBJEXT) ++teststatusicon_OBJECTS = $(am_teststatusicon_OBJECTS) ++am_testtext_OBJECTS = prop-editor.$(OBJEXT) testtext.$(OBJEXT) ++testtext_OBJECTS = $(am_testtext_OBJECTS) ++am_testtoolbar_OBJECTS = testtoolbar.$(OBJEXT) prop-editor.$(OBJEXT) ++testtoolbar_OBJECTS = $(am_testtoolbar_OBJECTS) ++testtoolbar_DEPENDENCIES = $(LDADDS) ++am_testtooltips_OBJECTS = testtooltips.$(OBJEXT) ++testtooltips_OBJECTS = $(am_testtooltips_OBJECTS) ++testtreecolumns_SOURCES = testtreecolumns.c ++testtreecolumns_OBJECTS = testtreecolumns.$(OBJEXT) ++testtreecolumnsizing_SOURCES = testtreecolumnsizing.c ++testtreecolumnsizing_OBJECTS = testtreecolumnsizing.$(OBJEXT) ++am_testtreeedit_OBJECTS = testtreeedit.$(OBJEXT) ++testtreeedit_OBJECTS = $(am_testtreeedit_OBJECTS) ++testtreeflow_SOURCES = testtreeflow.c ++testtreeflow_OBJECTS = testtreeflow.$(OBJEXT) ++testtreefocus_SOURCES = testtreefocus.c ++testtreefocus_OBJECTS = testtreefocus.$(OBJEXT) ++am_testtreemodel_OBJECTS = testtreemodel.$(OBJEXT) ++testtreemodel_OBJECTS = $(am_testtreemodel_OBJECTS) ++testtreesort_SOURCES = testtreesort.c ++testtreesort_OBJECTS = testtreesort.$(OBJEXT) ++am_testtreeview_OBJECTS = prop-editor.$(OBJEXT) testtreeview.$(OBJEXT) ++testtreeview_OBJECTS = $(am_testtreeview_OBJECTS) ++am_testvolumebutton_OBJECTS = testvolumebutton.$(OBJEXT) ++testvolumebutton_OBJECTS = $(am_testvolumebutton_OBJECTS) ++testwindows_SOURCES = testwindows.c ++testwindows_OBJECTS = testwindows.$(OBJEXT) ++testxinerama_SOURCES = testxinerama.c ++testxinerama_OBJECTS = testxinerama.$(OBJEXT) ++treestoretest_SOURCES = treestoretest.c ++treestoretest_OBJECTS = treestoretest.$(OBJEXT) ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) ++depcomp = $(SHELL) $(top_srcdir)/depcomp ++am__depfiles_maybe = depfiles ++am__mv = mv -f ++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ++ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CFLAGS) $(CFLAGS) ++AM_V_CC = $(am__v_CC_$(V)) ++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) ++am__v_CC_0 = @echo " CC " $@; ++AM_V_at = $(am__v_at_$(V)) ++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) ++am__v_at_0 = @ ++CCLD = $(CC) ++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CCLD = $(am__v_CCLD_$(V)) ++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CCLD_0 = @echo " CCLD " $@; ++CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ++ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) ++LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CXXFLAGS) $(CXXFLAGS) ++AM_V_CXX = $(am__v_CXX_$(V)) ++am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) ++am__v_CXX_0 = @echo " CXX " $@; ++CXXLD = $(CXX) ++CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ ++ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ ++ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++AM_V_CXXLD = $(am__v_CXXLD_$(V)) ++am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) ++am__v_CXXLD_0 = @echo " CXXLD " $@; ++AM_V_GEN = $(am__v_GEN_$(V)) ++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) ++am__v_GEN_0 = @echo " GEN " $@; ++SOURCES = $(autotestkeywords_SOURCES) flicker.c pixbuf-lowmem.c \ ++ pixbuf-random.c pixbuf-randomly-modified.c pixbuf-read.c \ ++ pixbuf-threads.c print-editor.c simple.c stresstest-toolbar.c \ ++ testaccel.c $(testactions_SOURCES) testassistant.c \ ++ $(testbbox_SOURCES) $(testbuttons_SOURCES) testcairo.c \ ++ testcalendar.c testcellrenderertext.c testclientmessage.c \ ++ testcombo.c testcombochange.c testdnd.c testellipsise.c \ ++ $(testentrycompletion_SOURCES) $(testentryicons_SOURCES) \ ++ $(testfilechooser_SOURCES) $(testfilechooserbutton_SOURCES) \ ++ $(testframe_SOURCES) $(testgrouping_SOURCES) \ ++ $(testgtk_SOURCES) testicontheme.c $(testiconview_SOURCES) \ ++ testimage.c testinput.c testmenubars.c testmenus.c \ ++ $(testmerge_SOURCES) testmountoperation.c testmultidisplay.c \ ++ testmultiscreen.c testnotebookdnd.c testnouiprint.c \ ++ $(testoffscreen_SOURCES) testorientable.c $(testprint_SOURCES) \ ++ $(testrecentchooser_SOURCES) $(testrecentchoosermenu_SOURCES) \ ++ testrgb.c testrichtext.c testscale.c testselection.c \ ++ $(testsocket_SOURCES) $(testsocket_child_SOURCES) \ ++ $(testspinbutton_SOURCES) $(teststatusicon_SOURCES) \ ++ $(testtext_SOURCES) $(testtoolbar_SOURCES) \ ++ $(testtooltips_SOURCES) testtreecolumns.c \ ++ testtreecolumnsizing.c $(testtreeedit_SOURCES) testtreeflow.c \ ++ testtreefocus.c $(testtreemodel_SOURCES) testtreesort.c \ ++ $(testtreeview_SOURCES) $(testvolumebutton_SOURCES) \ ++ testwindows.c testxinerama.c treestoretest.c ++DIST_SOURCES = $(am__autotestkeywords_SOURCES_DIST) flicker.c \ ++ pixbuf-lowmem.c pixbuf-random.c pixbuf-randomly-modified.c \ ++ pixbuf-read.c pixbuf-threads.c print-editor.c simple.c \ ++ stresstest-toolbar.c testaccel.c $(testactions_SOURCES) \ ++ testassistant.c $(testbbox_SOURCES) $(testbuttons_SOURCES) \ ++ testcairo.c testcalendar.c testcellrenderertext.c \ ++ testclientmessage.c testcombo.c testcombochange.c testdnd.c \ ++ testellipsise.c $(testentrycompletion_SOURCES) \ ++ $(testentryicons_SOURCES) $(testfilechooser_SOURCES) \ ++ $(testfilechooserbutton_SOURCES) $(testframe_SOURCES) \ ++ $(testgrouping_SOURCES) $(testgtk_SOURCES) testicontheme.c \ ++ $(testiconview_SOURCES) testimage.c testinput.c testmenubars.c \ ++ testmenus.c $(testmerge_SOURCES) testmountoperation.c \ ++ testmultidisplay.c testmultiscreen.c testnotebookdnd.c \ ++ testnouiprint.c $(testoffscreen_SOURCES) testorientable.c \ ++ $(testprint_SOURCES) $(testrecentchooser_SOURCES) \ ++ $(testrecentchoosermenu_SOURCES) testrgb.c testrichtext.c \ ++ testscale.c testselection.c $(testsocket_SOURCES) \ ++ $(testsocket_child_SOURCES) $(testspinbutton_SOURCES) \ ++ $(teststatusicon_SOURCES) $(testtext_SOURCES) \ ++ $(testtoolbar_SOURCES) $(testtooltips_SOURCES) \ ++ testtreecolumns.c testtreecolumnsizing.c \ ++ $(testtreeedit_SOURCES) testtreeflow.c testtreefocus.c \ ++ $(testtreemodel_SOURCES) testtreesort.c \ ++ $(testtreeview_SOURCES) $(testvolumebutton_SOURCES) \ ++ testwindows.c testxinerama.c treestoretest.c ++ETAGS = etags ++CTAGS = ctags ++am__tty_colors = \ ++red=; grn=; lgn=; blu=; std= ++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ ++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ + AR = @AR@ + AS = @AS@ + ATK_PREFIX = @ATK_PREFIX@ +@@ -53,10 +366,6 @@ + AWK = @AWK@ + BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@ + BASE_DEPENDENCIES_LIBS = @BASE_DEPENDENCIES_LIBS@ +-BUILD_DYNAMIC_MODULES_FALSE = @BUILD_DYNAMIC_MODULES_FALSE@ +-BUILD_DYNAMIC_MODULES_TRUE = @BUILD_DYNAMIC_MODULES_TRUE@ +-BUILD_GDIPLUS_LOADERS_FALSE = @BUILD_GDIPLUS_LOADERS_FALSE@ +-BUILD_GDIPLUS_LOADERS_TRUE = @BUILD_GDIPLUS_LOADERS_TRUE@ + CAIRO_BACKEND_CFLAGS = @CAIRO_BACKEND_CFLAGS@ + CAIRO_BACKEND_LIBS = @CAIRO_BACKEND_LIBS@ + CAIRO_PREFIX = @CAIRO_PREFIX@ +@@ -64,13 +373,12 @@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CCAS = @CCAS@ ++CCASDEPMODE = @CCASDEPMODE@ + CCASFLAGS = @CCASFLAGS@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ +-CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@ +-CROSS_COMPILING_TRUE = @CROSS_COMPILING_TRUE@ + CUPS_API_MAJOR = @CUPS_API_MAJOR@ + CUPS_API_MINOR = @CUPS_API_MINOR@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +@@ -87,8 +395,6 @@ + DEPDIR = @DEPDIR@ + DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@ + DIRECTFB_LIBS = @DIRECTFB_LIBS@ +-DISABLE_EXPLICIT_DEPS_FALSE = @DISABLE_EXPLICIT_DEPS_FALSE@ +-DISABLE_EXPLICIT_DEPS_TRUE = @DISABLE_EXPLICIT_DEPS_TRUE@ + DLLTOOL = @DLLTOOL@ + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -96,10 +402,6 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ +-ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +-ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +-ENABLE_MAN_FALSE = @ENABLE_MAN_FALSE@ +-ENABLE_MAN_TRUE = @ENABLE_MAN_TRUE@ + EXEEXT = @EXEEXT@ + FGREP = @FGREP@ + GAIL_INET_LIBS = @GAIL_INET_LIBS@ +@@ -125,6 +427,7 @@ + GDK_PIXBUF_XLIB_EXTRA_CFLAGS = @GDK_PIXBUF_XLIB_EXTRA_CFLAGS@ + GDK_PIXBUF_XLIB_EXTRA_LIBS = @GDK_PIXBUF_XLIB_EXTRA_LIBS@ + GDK_PIXBUF_XLIB_PACKAGES = @GDK_PIXBUF_XLIB_PACKAGES@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -143,8 +446,6 @@ + GTK_DEBUG_FLAGS = @GTK_DEBUG_FLAGS@ + GTK_DEP_CFLAGS = @GTK_DEP_CFLAGS@ + GTK_DEP_LIBS = @GTK_DEP_LIBS@ +-GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +-GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ + GTK_EXTRA_CFLAGS = @GTK_EXTRA_CFLAGS@ + GTK_EXTRA_LIBS = @GTK_EXTRA_LIBS@ + GTK_INTERFACE_AGE = @GTK_INTERFACE_AGE@ +@@ -155,95 +456,14 @@ + GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ + GTK_VERSION = @GTK_VERSION@ + GTK_XIM_FLAGS = @GTK_XIM_FLAGS@ +-HAVE_CUPS_FALSE = @HAVE_CUPS_FALSE@ +-HAVE_CUPS_TRUE = @HAVE_CUPS_TRUE@ +-HAVE_CXX_FALSE = @HAVE_CXX_FALSE@ +-HAVE_CXX_TRUE = @HAVE_CXX_TRUE@ +-HAVE_DOCBOOK_FALSE = @HAVE_DOCBOOK_FALSE@ +-HAVE_DOCBOOK_TRUE = @HAVE_DOCBOOK_TRUE@ + HAVE_HTTP_AUTHSTRING = @HAVE_HTTP_AUTHSTRING@ +-HAVE_INCLUDED_IMMMODULES_FALSE = @HAVE_INCLUDED_IMMMODULES_FALSE@ +-HAVE_INCLUDED_IMMMODULES_TRUE = @HAVE_INCLUDED_IMMMODULES_TRUE@ +-HAVE_JASPER_FALSE = @HAVE_JASPER_FALSE@ +-HAVE_JASPER_TRUE = @HAVE_JASPER_TRUE@ +-HAVE_JPEG_FALSE = @HAVE_JPEG_FALSE@ +-HAVE_JPEG_TRUE = @HAVE_JPEG_TRUE@ +-HAVE_OBJC_FALSE = @HAVE_OBJC_FALSE@ +-HAVE_OBJC_TRUE = @HAVE_OBJC_TRUE@ +-HAVE_PAPI_CUPS_FALSE = @HAVE_PAPI_CUPS_FALSE@ +-HAVE_PAPI_CUPS_TRUE = @HAVE_PAPI_CUPS_TRUE@ +-HAVE_PAPI_FALSE = @HAVE_PAPI_FALSE@ +-HAVE_PAPI_TRUE = @HAVE_PAPI_TRUE@ +-HAVE_PNG_FALSE = @HAVE_PNG_FALSE@ +-HAVE_PNG_TRUE = @HAVE_PNG_TRUE@ +-HAVE_TIFF_FALSE = @HAVE_TIFF_FALSE@ +-HAVE_TIFF_TRUE = @HAVE_TIFF_TRUE@ +-HAVE_X11R6_FALSE = @HAVE_X11R6_FALSE@ +-HAVE_X11R6_TRUE = @HAVE_X11R6_TRUE@ + HTML_DIR = @HTML_DIR@ + INCLUDED_IMMODULE_DEFINE = @INCLUDED_IMMODULE_DEFINE@ + INCLUDED_IMMODULE_OBJ = @INCLUDED_IMMODULE_OBJ@ + INCLUDED_LOADER_DEFINE = @INCLUDED_LOADER_DEFINE@ + INCLUDED_LOADER_OBJ = @INCLUDED_LOADER_OBJ@ +-INCLUDE_ANI_FALSE = @INCLUDE_ANI_FALSE@ +-INCLUDE_ANI_TRUE = @INCLUDE_ANI_TRUE@ +-INCLUDE_BMP_FALSE = @INCLUDE_BMP_FALSE@ +-INCLUDE_BMP_TRUE = @INCLUDE_BMP_TRUE@ +-INCLUDE_GDIPLUS_FALSE = @INCLUDE_GDIPLUS_FALSE@ +-INCLUDE_GDIPLUS_TRUE = @INCLUDE_GDIPLUS_TRUE@ +-INCLUDE_GIF_FALSE = @INCLUDE_GIF_FALSE@ +-INCLUDE_GIF_TRUE = @INCLUDE_GIF_TRUE@ +-INCLUDE_ICNS_FALSE = @INCLUDE_ICNS_FALSE@ +-INCLUDE_ICNS_TRUE = @INCLUDE_ICNS_TRUE@ +-INCLUDE_ICO_FALSE = @INCLUDE_ICO_FALSE@ +-INCLUDE_ICO_TRUE = @INCLUDE_ICO_TRUE@ +-INCLUDE_IM_AM_ET_FALSE = @INCLUDE_IM_AM_ET_FALSE@ +-INCLUDE_IM_AM_ET_TRUE = @INCLUDE_IM_AM_ET_TRUE@ +-INCLUDE_IM_CEDILLA_FALSE = @INCLUDE_IM_CEDILLA_FALSE@ +-INCLUDE_IM_CEDILLA_TRUE = @INCLUDE_IM_CEDILLA_TRUE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE = @INCLUDE_IM_CYRILLIC_TRANSLIT_FALSE@ +-INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE = @INCLUDE_IM_CYRILLIC_TRANSLIT_TRUE@ +-INCLUDE_IM_IME_FALSE = @INCLUDE_IM_IME_FALSE@ +-INCLUDE_IM_IME_TRUE = @INCLUDE_IM_IME_TRUE@ +-INCLUDE_IM_INUKTITUT_FALSE = @INCLUDE_IM_INUKTITUT_FALSE@ +-INCLUDE_IM_INUKTITUT_TRUE = @INCLUDE_IM_INUKTITUT_TRUE@ +-INCLUDE_IM_IPA_FALSE = @INCLUDE_IM_IPA_FALSE@ +-INCLUDE_IM_IPA_TRUE = @INCLUDE_IM_IPA_TRUE@ +-INCLUDE_IM_MULTIPRESS_FALSE = @INCLUDE_IM_MULTIPRESS_FALSE@ +-INCLUDE_IM_MULTIPRESS_TRUE = @INCLUDE_IM_MULTIPRESS_TRUE@ +-INCLUDE_IM_THAI_FALSE = @INCLUDE_IM_THAI_FALSE@ +-INCLUDE_IM_THAI_TRUE = @INCLUDE_IM_THAI_TRUE@ +-INCLUDE_IM_TI_ER_FALSE = @INCLUDE_IM_TI_ER_FALSE@ +-INCLUDE_IM_TI_ER_TRUE = @INCLUDE_IM_TI_ER_TRUE@ +-INCLUDE_IM_TI_ET_FALSE = @INCLUDE_IM_TI_ET_FALSE@ +-INCLUDE_IM_TI_ET_TRUE = @INCLUDE_IM_TI_ET_TRUE@ +-INCLUDE_IM_VIQR_FALSE = @INCLUDE_IM_VIQR_FALSE@ +-INCLUDE_IM_VIQR_TRUE = @INCLUDE_IM_VIQR_TRUE@ +-INCLUDE_IM_XIM_FALSE = @INCLUDE_IM_XIM_FALSE@ +-INCLUDE_IM_XIM_TRUE = @INCLUDE_IM_XIM_TRUE@ +-INCLUDE_JASPER_FALSE = @INCLUDE_JASPER_FALSE@ +-INCLUDE_JASPER_TRUE = @INCLUDE_JASPER_TRUE@ +-INCLUDE_JPEG_FALSE = @INCLUDE_JPEG_FALSE@ +-INCLUDE_JPEG_TRUE = @INCLUDE_JPEG_TRUE@ +-INCLUDE_PCX_FALSE = @INCLUDE_PCX_FALSE@ +-INCLUDE_PCX_TRUE = @INCLUDE_PCX_TRUE@ +-INCLUDE_PNG_FALSE = @INCLUDE_PNG_FALSE@ +-INCLUDE_PNG_TRUE = @INCLUDE_PNG_TRUE@ +-INCLUDE_PNM_FALSE = @INCLUDE_PNM_FALSE@ +-INCLUDE_PNM_TRUE = @INCLUDE_PNM_TRUE@ +-INCLUDE_RAS_FALSE = @INCLUDE_RAS_FALSE@ +-INCLUDE_RAS_TRUE = @INCLUDE_RAS_TRUE@ +-INCLUDE_TGA_FALSE = @INCLUDE_TGA_FALSE@ +-INCLUDE_TGA_TRUE = @INCLUDE_TGA_TRUE@ +-INCLUDE_TIFF_FALSE = @INCLUDE_TIFF_FALSE@ +-INCLUDE_TIFF_TRUE = @INCLUDE_TIFF_TRUE@ +-INCLUDE_WBMP_FALSE = @INCLUDE_WBMP_FALSE@ +-INCLUDE_WBMP_TRUE = @INCLUDE_WBMP_TRUE@ +-INCLUDE_XBM_FALSE = @INCLUDE_XBM_FALSE@ +-INCLUDE_XBM_TRUE = @INCLUDE_XBM_TRUE@ +-INCLUDE_XPM_FALSE = @INCLUDE_XPM_FALSE@ +-INCLUDE_XPM_TRUE = @INCLUDE_XPM_TRUE@ + INDENT = @INDENT@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -267,24 +487,15 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ ++MKDIR_P = @MKDIR_P@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ +-MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +-MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ + NM = @NM@ + NMEDIT = @NMEDIT@ + OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ +-OS_LINUX_FALSE = @OS_LINUX_FALSE@ +-OS_LINUX_TRUE = @OS_LINUX_TRUE@ +-OS_UNIX_FALSE = @OS_UNIX_FALSE@ +-OS_UNIX_TRUE = @OS_UNIX_TRUE@ +-OS_WIN32_FALSE = @OS_WIN32_FALSE@ +-OS_WIN32_TRUE = @OS_WIN32_TRUE@ + OTOOL = @OTOOL@ + OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ +@@ -292,13 +503,12 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANGO_PREFIX = @PANGO_PREFIX@ + PATH_SEPARATOR = @PATH_SEPARATOR@ + PERL = @PERL@ + PKG_CONFIG = @PKG_CONFIG@ +-PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +-PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ + POFILES = @POFILES@ + POSUB = @POSUB@ + PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +@@ -310,28 +520,10 @@ + SET_MAKE = @SET_MAKE@ + SHELL = @SHELL@ + STRIP = @STRIP@ +-TEST_PRINT_BACKEND_FALSE = @TEST_PRINT_BACKEND_FALSE@ +-TEST_PRINT_BACKEND_TRUE = @TEST_PRINT_BACKEND_TRUE@ +-USE_DIRECTFB_FALSE = @USE_DIRECTFB_FALSE@ +-USE_DIRECTFB_TRUE = @USE_DIRECTFB_TRUE@ +-USE_MEDIALIB25_FALSE = @USE_MEDIALIB25_FALSE@ +-USE_MEDIALIB25_TRUE = @USE_MEDIALIB25_TRUE@ +-USE_MEDIALIB_FALSE = @USE_MEDIALIB_FALSE@ +-USE_MEDIALIB_TRUE = @USE_MEDIALIB_TRUE@ +-USE_MMX_FALSE = @USE_MMX_FALSE@ +-USE_MMX_TRUE = @USE_MMX_TRUE@ + USE_NLS = @USE_NLS@ +-USE_QUARTZ_FALSE = @USE_QUARTZ_FALSE@ +-USE_QUARTZ_TRUE = @USE_QUARTZ_TRUE@ +-USE_WIN32_FALSE = @USE_WIN32_FALSE@ +-USE_WIN32_TRUE = @USE_WIN32_TRUE@ +-USE_X11_FALSE = @USE_X11_FALSE@ +-USE_X11_TRUE = @USE_X11_TRUE@ + VERSION = @VERSION@ + WINDRES = @WINDRES@ + XGETTEXT = @XGETTEXT@ +-XINPUT_XFREE_FALSE = @XINPUT_XFREE_FALSE@ +-XINPUT_XFREE_TRUE = @XINPUT_XFREE_TRUE@ + XMKMF = @XMKMF@ + XMLCATALOG = @XMLCATALOG@ + XML_CATALOG_FILE = @XML_CATALOG_FILE@ +@@ -340,22 +532,25 @@ + X_EXTRA_LIBS = @X_EXTRA_LIBS@ + X_LIBS = @X_LIBS@ + X_PRE_LIBS = @X_PRE_LIBS@ ++abs_builddir = @abs_builddir@ ++abs_srcdir = @abs_srcdir@ ++abs_top_builddir = @abs_top_builddir@ ++abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ + ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ ++am__tar = @am__tar@ ++am__untar = @am__untar@ + bindir = @bindir@ + build = @build@ + build_alias = @build_alias@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -379,6 +574,7 @@ + localstatedir = @localstatedir@ + lt_ECHO = @lt_ECHO@ + mandir = @mandir@ ++mkdir_p = @mkdir_p@ + ms_librarian = @ms_librarian@ + oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ +@@ -387,37 +583,22 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +- ++top_build_prefix = @top_build_prefix@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + GTESTER = gtester # in $PATH for non-GLIB packages + GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages + + # initialize variables for unconditional += appending +-EXTRA_DIST = \ +- prop-editor.h \ +- testgtk.1 \ +- testgtkrc \ +- testgtkrc2 \ +- circles.xbm \ +- 3DRings.xpm \ +- FilesQueue.xpm \ +- Modeller.xpm \ +- check-y.xpm \ +- check-n.xpm \ +- marble.xpm \ +- test.xpm \ +- check-y.xpm \ +- check-n.xpm \ +- test.xpm \ +- merge-1.ui \ +- merge-2.ui \ +- merge-3.ui \ +- gnome-textfile.png \ +- makefile.msc \ +- file-chooser-test-dir/empty \ ++EXTRA_DIST = prop-editor.h testgtk.1 testgtkrc testgtkrc2 circles.xbm \ ++ 3DRings.xpm FilesQueue.xpm Modeller.xpm check-y.xpm \ ++ check-n.xpm marble.xpm test.xpm check-y.xpm check-n.xpm \ ++ test.xpm merge-1.ui merge-2.ui merge-3.ui gnome-textfile.png \ ++ makefile.msc file-chooser-test-dir/empty \ + file-chooser-test-dir/text.txt +- + TEST_PROGS = + + ### testing rules +@@ -443,7 +624,6 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +- + INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ +@@ -453,97 +633,21 @@ + $(GTK_DEBUG_FLAGS) \ + $(GTK_DEP_CFLAGS) + +- + DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + LDADDS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(top_builddir)/gtk/$(gtktargetlib) + +- + @USE_X11_TRUE@testsocket_programs = testsocket testsocket_child +- +-noinst_PROGRAMS = $(TEST_PROGS) \ +- simple \ +- flicker \ +- print-editor \ +- testaccel \ +- testassistant \ +- testbbox \ +- testbuttons \ +- testcairo \ +- testcalendar \ +- testcombo \ +- testcombochange \ +- testcellrenderertext \ +- testclientmessage \ +- testdnd \ +- testellipsise \ +- testentrycompletion \ +- testentryicons \ +- testfilechooser \ +- testfilechooserbutton \ +- testframe \ +- testgtk \ +- testiconview \ +- testicontheme \ +- testimage \ +- testinput \ +- testmenus \ +- testmenubars \ +- testmountoperation \ +- testmultidisplay \ +- testmultiscreen \ +- testnotebookdnd \ +- testnouiprint \ +- testoffscreen \ +- testorientable \ +- testprint \ +- testrgb \ +- testrecentchooser \ +- testrecentchoosermenu \ +- testrichtext \ +- testscale \ +- testselection \ +- $(testsocket_programs) \ +- testspinbutton \ +- teststatusicon \ +- testtext \ +- testtoolbar \ +- stresstest-toolbar \ +- testtreeedit \ +- testtreemodel \ +- testtreeview \ +- testtreefocus \ +- testtreeflow \ +- testtreecolumns \ +- testtreecolumnsizing \ +- testtreesort \ +- treestoretest \ +- testxinerama \ +- testwindows \ +- pixbuf-read \ +- pixbuf-lowmem \ +- pixbuf-randomly-modified \ +- pixbuf-random \ +- pixbuf-threads \ +- testmerge \ +- testactions \ +- testgrouping \ +- testtooltips \ +- testvolumebutton\ +-$(am__append_1) +-@HAVE_CXX_TRUE@TESTS = autotestkeywords +- + @HAVE_CXX_TRUE@autotestkeywords_SOURCES = autotestkeywords.cc +-@HAVE_CXX_TRUE@autotestkeywords_CPPFLAGS = -I$(srcdir)/dummy-headers $(am__append_2) ++@HAVE_CXX_TRUE@autotestkeywords_CPPFLAGS = -I$(srcdir)/dummy-headers \ ++@HAVE_CXX_TRUE@ $(am__append_2) + @HAVE_CXX_TRUE@@HAVE_OBJC_TRUE@autotestkeywords_CXXFLAGS = -x objective-c++ +- + flicker_DEPENDENCIES = $(TEST_DEPS) + simple_DEPENDENCIES = $(TEST_DEPS) + print_editor_DEPENDENCIES = $(TEST_DEPS) +@@ -606,7 +710,6 @@ + testtooltips_DEPENDENCIES = $(TEST_DEPS) + testvolumebutton_DEPENDENCIES = $(TEST_DEPS) + testwindows_DEPENDENCIES = $(TEST_DEPS) +- + flicker_LDADD = $(LDADDS) + simple_LDADD = $(LDADDS) + print_editor_LDADD = $(LDADDS) +@@ -676,1010 +779,363 @@ + testtooltips_LDADD = $(LDADDS) + testvolumebutton_LDADD = $(LDADDS) + testwindows_LDADD = $(LDADDS) +- + testentrycompletion_SOURCES = \ + prop-editor.c \ + testentrycompletion.c + +- + testentryicons_SOURCES = \ + prop-editor.c \ + testentryicons.c + +- + testfilechooser_SOURCES = \ + prop-editor.c \ + testfilechooser.c + +- + testfilechooserbutton_SOURCES = \ + prop-editor.c \ + testfilechooserbutton.c + +- + testgtk_SOURCES = \ + prop-editor.c \ + testgtk.c + +- + testtreeedit_SOURCES = \ + testtreeedit.c + +- + testtreemodel_SOURCES = \ + testtreemodel.c + +- + testtreeview_SOURCES = \ + prop-editor.c \ + testtreeview.c + +- + testtext_SOURCES = \ + prop-editor.c \ + testtext.c + +- + testtoolbar_SOURCES = \ + testtoolbar.c \ + prop-editor.c + +- + testprint_SOURCES = \ + testprint.c \ + testprintfileoperation.h \ + testprintfileoperation.c + +- + testsocket_SOURCES = \ + testsocket.c \ + testsocket_common.c + +- + testsocket_child_SOURCES = \ + testsocket_child.c \ + testsocket_common.c + +- + testspinbutton_SOURCES = \ + testspinbutton.c + +- + teststatusicon_SOURCES = \ + prop-editor.c \ + teststatusicon.c + +- + testmerge_SOURCES = \ + testmerge.c + +- + testactions_SOURCES = \ + testactions.c + +- + testbbox_SOURCES = \ + testbbox.c + +- + testbuttons_SOURCES = \ + testbuttons.c + +- + testframe_SOURCES = \ + testframe.c + +- + testiconview_SOURCES = \ + testiconview.c \ + prop-editor.c + +- + testrecentchooser_SOURCES = \ + prop-editor.c \ + testrecentchooser.c + +- + testgrouping_SOURCES = \ + testgrouping.c + +- + testtooltips_SOURCES = \ + testtooltips.c + +- + testrecentchoosermenu_SOURCES = \ + testrecentchoosermenu.c + +- + testvolumebutton_SOURCES = \ + testvolumebutton.c + +- + testoffscreen_SOURCES = \ + gtkoffscreenbox.c \ + gtkoffscreenbox.h \ + testoffscreen.c + +- + testwindow_SOURCES = \ + testwindows.c + +-subdir = tests +-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +-CONFIG_HEADER = $(top_builddir)/config.h +-CONFIG_CLEAN_FILES = +-@HAVE_CXX_FALSE@@USE_X11_TRUE@noinst_PROGRAMS = simple$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ flicker$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ print-editor$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testaccel$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testassistant$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testbbox$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testbuttons$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testcairo$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testcalendar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testcombo$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testcombochange$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testcellrenderertext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testclientmessage$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testdnd$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testellipsise$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testentrycompletion$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testentryicons$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testfilechooser$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testfilechooserbutton$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testframe$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testgtk$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testiconview$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testicontheme$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testimage$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testinput$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmenus$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmenubars$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmountoperation$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmultidisplay$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmultiscreen$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testnotebookdnd$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testnouiprint$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testoffscreen$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testorientable$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testprint$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testrgb$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testrecentchooser$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testrecentchoosermenu$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testrichtext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testscale$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testselection$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testsocket$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testsocket_child$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testspinbutton$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ teststatusicon$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtoolbar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ stresstest-toolbar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreeedit$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreemodel$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreeview$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreefocus$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreeflow$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreecolumns$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreecolumnsizing$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtreesort$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ treestoretest$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testxinerama$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testwindows$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ pixbuf-read$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ pixbuf-lowmem$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ pixbuf-randomly-modified$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ pixbuf-random$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ pixbuf-threads$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testmerge$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testactions$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testgrouping$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testtooltips$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_TRUE@ testvolumebutton$(EXEEXT) +-@HAVE_CXX_FALSE@@USE_X11_FALSE@noinst_PROGRAMS = simple$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ flicker$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ print-editor$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testaccel$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testassistant$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testbbox$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testbuttons$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testcairo$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testcalendar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testcombo$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testcombochange$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testcellrenderertext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testclientmessage$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testdnd$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testellipsise$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testentrycompletion$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testentryicons$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testfilechooser$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testfilechooserbutton$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testframe$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testgtk$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testiconview$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testicontheme$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testimage$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testinput$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmenus$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmenubars$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmountoperation$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmultidisplay$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmultiscreen$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testnotebookdnd$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testnouiprint$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testoffscreen$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testorientable$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testprint$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testrgb$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testrecentchooser$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testrecentchoosermenu$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testrichtext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testscale$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testselection$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testspinbutton$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ teststatusicon$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtext$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtoolbar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ stresstest-toolbar$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreeedit$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreemodel$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreeview$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreefocus$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreeflow$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreecolumns$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreecolumnsizing$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtreesort$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ treestoretest$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testxinerama$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testwindows$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ pixbuf-read$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ pixbuf-lowmem$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ pixbuf-randomly-modified$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ pixbuf-random$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ pixbuf-threads$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testmerge$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testactions$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testgrouping$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testtooltips$(EXEEXT) \ +-@HAVE_CXX_FALSE@@USE_X11_FALSE@ testvolumebutton$(EXEEXT) +-@HAVE_CXX_TRUE@@USE_X11_TRUE@noinst_PROGRAMS = simple$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ flicker$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ print-editor$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testaccel$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testassistant$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testbbox$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testbuttons$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testcairo$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testcalendar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testcombo$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testcombochange$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testcellrenderertext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testclientmessage$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testdnd$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testellipsise$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testentrycompletion$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testentryicons$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testfilechooser$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testfilechooserbutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testframe$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testgtk$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testiconview$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testicontheme$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testimage$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testinput$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmenus$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmenubars$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmountoperation$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmultidisplay$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmultiscreen$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testnotebookdnd$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testnouiprint$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testoffscreen$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testorientable$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testprint$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testrgb$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testrecentchooser$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testrecentchoosermenu$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testrichtext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testscale$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testselection$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testsocket$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testsocket_child$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testspinbutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ teststatusicon$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtoolbar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ stresstest-toolbar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreeedit$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreemodel$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreeview$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreefocus$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreeflow$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreecolumns$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreecolumnsizing$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtreesort$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ treestoretest$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testxinerama$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testwindows$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ pixbuf-read$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ pixbuf-lowmem$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ pixbuf-randomly-modified$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ pixbuf-random$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ pixbuf-threads$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testmerge$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testactions$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testgrouping$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testtooltips$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ testvolumebutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_TRUE@ autotestkeywords$(EXEEXT) +-@HAVE_CXX_TRUE@@USE_X11_FALSE@noinst_PROGRAMS = simple$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ flicker$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ print-editor$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testaccel$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testassistant$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testbbox$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testbuttons$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testcairo$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testcalendar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testcombo$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testcombochange$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testcellrenderertext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testclientmessage$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testdnd$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testellipsise$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testentrycompletion$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testentryicons$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testfilechooser$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testfilechooserbutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testframe$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testgtk$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testiconview$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testicontheme$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testimage$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testinput$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmenus$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmenubars$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmountoperation$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmultidisplay$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmultiscreen$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testnotebookdnd$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testnouiprint$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testoffscreen$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testorientable$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testprint$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testrgb$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testrecentchooser$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testrecentchoosermenu$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testrichtext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testscale$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testselection$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testspinbutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ teststatusicon$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtext$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtoolbar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ stresstest-toolbar$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreeedit$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreemodel$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreeview$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreefocus$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreeflow$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreecolumns$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreecolumnsizing$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtreesort$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ treestoretest$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testxinerama$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testwindows$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ pixbuf-read$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ pixbuf-lowmem$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ pixbuf-randomly-modified$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ pixbuf-random$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ pixbuf-threads$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testmerge$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testactions$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testgrouping$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testtooltips$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ testvolumebutton$(EXEEXT) \ +-@HAVE_CXX_TRUE@@USE_X11_FALSE@ autotestkeywords$(EXEEXT) +-PROGRAMS = $(noinst_PROGRAMS) +- +-am__autotestkeywords_SOURCES_DIST = autotestkeywords.cc +-@HAVE_CXX_TRUE@am_autotestkeywords_OBJECTS = \ +-@HAVE_CXX_TRUE@ autotestkeywords-autotestkeywords.$(OBJEXT) +-autotestkeywords_OBJECTS = $(am_autotestkeywords_OBJECTS) +-autotestkeywords_LDADD = $(LDADD) +-autotestkeywords_DEPENDENCIES = +-autotestkeywords_LDFLAGS = +-flicker_SOURCES = flicker.c +-flicker_OBJECTS = flicker.$(OBJEXT) +-flicker_LDFLAGS = +-pixbuf_lowmem_SOURCES = pixbuf-lowmem.c +-pixbuf_lowmem_OBJECTS = pixbuf-lowmem.$(OBJEXT) +-pixbuf_lowmem_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-pixbuf_lowmem_LDFLAGS = +-pixbuf_random_SOURCES = pixbuf-random.c +-pixbuf_random_OBJECTS = pixbuf-random.$(OBJEXT) +-pixbuf_random_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-pixbuf_random_LDFLAGS = +-pixbuf_randomly_modified_SOURCES = pixbuf-randomly-modified.c +-pixbuf_randomly_modified_OBJECTS = pixbuf-randomly-modified.$(OBJEXT) +-pixbuf_randomly_modified_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-pixbuf_randomly_modified_LDFLAGS = +-pixbuf_read_SOURCES = pixbuf-read.c +-pixbuf_read_OBJECTS = pixbuf-read.$(OBJEXT) +-pixbuf_read_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-pixbuf_read_LDFLAGS = +-pixbuf_threads_SOURCES = pixbuf-threads.c +-pixbuf_threads_OBJECTS = pixbuf-threads.$(OBJEXT) +-pixbuf_threads_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-pixbuf_threads_LDFLAGS = +-print_editor_SOURCES = print-editor.c +-print_editor_OBJECTS = print-editor.$(OBJEXT) +-print_editor_LDFLAGS = +-simple_SOURCES = simple.c +-simple_OBJECTS = simple.$(OBJEXT) +-simple_LDFLAGS = +-stresstest_toolbar_SOURCES = stresstest-toolbar.c +-stresstest_toolbar_OBJECTS = stresstest-toolbar.$(OBJEXT) +-stresstest_toolbar_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-stresstest_toolbar_LDFLAGS = +-testaccel_SOURCES = testaccel.c +-testaccel_OBJECTS = testaccel.$(OBJEXT) +-testaccel_LDFLAGS = +-am_testactions_OBJECTS = testactions.$(OBJEXT) +-testactions_OBJECTS = $(am_testactions_OBJECTS) +-testactions_LDFLAGS = +-testassistant_SOURCES = testassistant.c +-testassistant_OBJECTS = testassistant.$(OBJEXT) +-testassistant_LDFLAGS = +-am_testbbox_OBJECTS = testbbox.$(OBJEXT) +-testbbox_OBJECTS = $(am_testbbox_OBJECTS) +-testbbox_LDFLAGS = +-am_testbuttons_OBJECTS = testbuttons.$(OBJEXT) +-testbuttons_OBJECTS = $(am_testbuttons_OBJECTS) +-testbuttons_LDFLAGS = +-testcairo_SOURCES = testcairo.c +-testcairo_OBJECTS = testcairo.$(OBJEXT) +-testcairo_LDFLAGS = +-testcalendar_SOURCES = testcalendar.c +-testcalendar_OBJECTS = testcalendar.$(OBJEXT) +-testcalendar_LDFLAGS = +-testcellrenderertext_SOURCES = testcellrenderertext.c +-testcellrenderertext_OBJECTS = testcellrenderertext.$(OBJEXT) +-testcellrenderertext_LDFLAGS = +-testclientmessage_SOURCES = testclientmessage.c +-testclientmessage_OBJECTS = testclientmessage.$(OBJEXT) +-testclientmessage_LDFLAGS = +-testcombo_SOURCES = testcombo.c +-testcombo_OBJECTS = testcombo.$(OBJEXT) +-testcombo_LDFLAGS = +-testcombochange_SOURCES = testcombochange.c +-testcombochange_OBJECTS = testcombochange.$(OBJEXT) +-testcombochange_LDFLAGS = +-testdnd_SOURCES = testdnd.c +-testdnd_OBJECTS = testdnd.$(OBJEXT) +-testdnd_LDFLAGS = +-testellipsise_SOURCES = testellipsise.c +-testellipsise_OBJECTS = testellipsise.$(OBJEXT) +-testellipsise_LDFLAGS = +-am_testentrycompletion_OBJECTS = prop-editor.$(OBJEXT) \ +- testentrycompletion.$(OBJEXT) +-testentrycompletion_OBJECTS = $(am_testentrycompletion_OBJECTS) +-testentrycompletion_LDFLAGS = +-am_testentryicons_OBJECTS = prop-editor.$(OBJEXT) \ +- testentryicons.$(OBJEXT) +-testentryicons_OBJECTS = $(am_testentryicons_OBJECTS) +-testentryicons_LDFLAGS = +-am_testfilechooser_OBJECTS = prop-editor.$(OBJEXT) \ +- testfilechooser.$(OBJEXT) +-testfilechooser_OBJECTS = $(am_testfilechooser_OBJECTS) +-testfilechooser_LDFLAGS = +-am_testfilechooserbutton_OBJECTS = prop-editor.$(OBJEXT) \ +- testfilechooserbutton.$(OBJEXT) +-testfilechooserbutton_OBJECTS = $(am_testfilechooserbutton_OBJECTS) +-testfilechooserbutton_LDFLAGS = +-am_testframe_OBJECTS = testframe.$(OBJEXT) +-testframe_OBJECTS = $(am_testframe_OBJECTS) +-testframe_LDFLAGS = +-am_testgrouping_OBJECTS = testgrouping.$(OBJEXT) +-testgrouping_OBJECTS = $(am_testgrouping_OBJECTS) +-testgrouping_LDFLAGS = +-am_testgtk_OBJECTS = prop-editor.$(OBJEXT) testgtk.$(OBJEXT) +-testgtk_OBJECTS = $(am_testgtk_OBJECTS) +-testgtk_LDFLAGS = +-testicontheme_SOURCES = testicontheme.c +-testicontheme_OBJECTS = testicontheme.$(OBJEXT) +-testicontheme_LDFLAGS = +-am_testiconview_OBJECTS = testiconview.$(OBJEXT) prop-editor.$(OBJEXT) +-testiconview_OBJECTS = $(am_testiconview_OBJECTS) +-testiconview_LDFLAGS = +-testimage_SOURCES = testimage.c +-testimage_OBJECTS = testimage.$(OBJEXT) +-testimage_LDFLAGS = +-testinput_SOURCES = testinput.c +-testinput_OBJECTS = testinput.$(OBJEXT) +-testinput_LDFLAGS = +-testmenubars_SOURCES = testmenubars.c +-testmenubars_OBJECTS = testmenubars.$(OBJEXT) +-testmenubars_LDFLAGS = +-testmenus_SOURCES = testmenus.c +-testmenus_OBJECTS = testmenus.$(OBJEXT) +-testmenus_LDFLAGS = +-am_testmerge_OBJECTS = testmerge.$(OBJEXT) +-testmerge_OBJECTS = $(am_testmerge_OBJECTS) +-testmerge_LDFLAGS = +-testmountoperation_SOURCES = testmountoperation.c +-testmountoperation_OBJECTS = testmountoperation.$(OBJEXT) +-testmountoperation_LDFLAGS = +-testmultidisplay_SOURCES = testmultidisplay.c +-testmultidisplay_OBJECTS = testmultidisplay.$(OBJEXT) +-testmultidisplay_LDFLAGS = +-testmultiscreen_SOURCES = testmultiscreen.c +-testmultiscreen_OBJECTS = testmultiscreen.$(OBJEXT) +-testmultiscreen_LDFLAGS = +-testnotebookdnd_SOURCES = testnotebookdnd.c +-testnotebookdnd_OBJECTS = testnotebookdnd.$(OBJEXT) +-testnotebookdnd_LDFLAGS = +-testnouiprint_SOURCES = testnouiprint.c +-testnouiprint_OBJECTS = testnouiprint.$(OBJEXT) +-testnouiprint_LDFLAGS = +-am_testoffscreen_OBJECTS = gtkoffscreenbox.$(OBJEXT) \ +- testoffscreen.$(OBJEXT) +-testoffscreen_OBJECTS = $(am_testoffscreen_OBJECTS) +-testoffscreen_LDFLAGS = +-testorientable_SOURCES = testorientable.c +-testorientable_OBJECTS = testorientable.$(OBJEXT) +-testorientable_LDFLAGS = +-am_testprint_OBJECTS = testprint.$(OBJEXT) \ +- testprintfileoperation.$(OBJEXT) +-testprint_OBJECTS = $(am_testprint_OBJECTS) +-testprint_LDFLAGS = +-am_testrecentchooser_OBJECTS = prop-editor.$(OBJEXT) \ +- testrecentchooser.$(OBJEXT) +-testrecentchooser_OBJECTS = $(am_testrecentchooser_OBJECTS) +-testrecentchooser_LDFLAGS = +-am_testrecentchoosermenu_OBJECTS = testrecentchoosermenu.$(OBJEXT) +-testrecentchoosermenu_OBJECTS = $(am_testrecentchoosermenu_OBJECTS) +-testrecentchoosermenu_LDFLAGS = +-testrgb_SOURCES = testrgb.c +-testrgb_OBJECTS = testrgb.$(OBJEXT) +-testrgb_LDFLAGS = +-testrichtext_SOURCES = testrichtext.c +-testrichtext_OBJECTS = testrichtext.$(OBJEXT) +-testrichtext_LDFLAGS = +-testscale_SOURCES = testscale.c +-testscale_OBJECTS = testscale.$(OBJEXT) +-testscale_LDFLAGS = +-testselection_SOURCES = testselection.c +-testselection_OBJECTS = testselection.$(OBJEXT) +-testselection_LDFLAGS = +-am_testsocket_OBJECTS = testsocket.$(OBJEXT) testsocket_common.$(OBJEXT) +-testsocket_OBJECTS = $(am_testsocket_OBJECTS) +-testsocket_LDFLAGS = +-am_testsocket_child_OBJECTS = testsocket_child.$(OBJEXT) \ +- testsocket_common.$(OBJEXT) +-testsocket_child_OBJECTS = $(am_testsocket_child_OBJECTS) +-testsocket_child_LDFLAGS = +-am_testspinbutton_OBJECTS = testspinbutton.$(OBJEXT) +-testspinbutton_OBJECTS = $(am_testspinbutton_OBJECTS) +-testspinbutton_LDFLAGS = +-am_teststatusicon_OBJECTS = prop-editor.$(OBJEXT) \ +- teststatusicon.$(OBJEXT) +-teststatusicon_OBJECTS = $(am_teststatusicon_OBJECTS) +-teststatusicon_LDFLAGS = +-am_testtext_OBJECTS = prop-editor.$(OBJEXT) testtext.$(OBJEXT) +-testtext_OBJECTS = $(am_testtext_OBJECTS) +-testtext_LDFLAGS = +-am_testtoolbar_OBJECTS = testtoolbar.$(OBJEXT) prop-editor.$(OBJEXT) +-testtoolbar_OBJECTS = $(am_testtoolbar_OBJECTS) +-testtoolbar_DEPENDENCIES = \ +- $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ +- $(top_builddir)/gdk/$(gdktargetlib) \ +- $(top_builddir)/gtk/$(gtktargetlib) +-testtoolbar_LDFLAGS = +-am_testtooltips_OBJECTS = testtooltips.$(OBJEXT) +-testtooltips_OBJECTS = $(am_testtooltips_OBJECTS) +-testtooltips_LDFLAGS = +-testtreecolumns_SOURCES = testtreecolumns.c +-testtreecolumns_OBJECTS = testtreecolumns.$(OBJEXT) +-testtreecolumns_LDFLAGS = +-testtreecolumnsizing_SOURCES = testtreecolumnsizing.c +-testtreecolumnsizing_OBJECTS = testtreecolumnsizing.$(OBJEXT) +-testtreecolumnsizing_LDFLAGS = +-am_testtreeedit_OBJECTS = testtreeedit.$(OBJEXT) +-testtreeedit_OBJECTS = $(am_testtreeedit_OBJECTS) +-testtreeedit_LDFLAGS = +-testtreeflow_SOURCES = testtreeflow.c +-testtreeflow_OBJECTS = testtreeflow.$(OBJEXT) +-testtreeflow_LDFLAGS = +-testtreefocus_SOURCES = testtreefocus.c +-testtreefocus_OBJECTS = testtreefocus.$(OBJEXT) +-testtreefocus_LDFLAGS = +-am_testtreemodel_OBJECTS = testtreemodel.$(OBJEXT) +-testtreemodel_OBJECTS = $(am_testtreemodel_OBJECTS) +-testtreemodel_LDFLAGS = +-testtreesort_SOURCES = testtreesort.c +-testtreesort_OBJECTS = testtreesort.$(OBJEXT) +-testtreesort_LDFLAGS = +-am_testtreeview_OBJECTS = prop-editor.$(OBJEXT) testtreeview.$(OBJEXT) +-testtreeview_OBJECTS = $(am_testtreeview_OBJECTS) +-testtreeview_LDFLAGS = +-am_testvolumebutton_OBJECTS = testvolumebutton.$(OBJEXT) +-testvolumebutton_OBJECTS = $(am_testvolumebutton_OBJECTS) +-testvolumebutton_LDFLAGS = +-testwindows_SOURCES = testwindows.c +-testwindows_OBJECTS = testwindows.$(OBJEXT) +-testwindows_LDFLAGS = +-testxinerama_SOURCES = testxinerama.c +-testxinerama_OBJECTS = testxinerama.$(OBJEXT) +-testxinerama_LDFLAGS = +-treestoretest_SOURCES = treestoretest.c +-treestoretest_OBJECTS = treestoretest.$(OBJEXT) +-treestoretest_LDFLAGS = +- +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +-depcomp = $(SHELL) $(top_srcdir)/depcomp +-am__depfiles_maybe = depfiles +-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/autotestkeywords-autotestkeywords.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/flicker.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/gtkoffscreenbox.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-lowmem.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-random.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-randomly-modified.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-read.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/pixbuf-threads.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/print-editor.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/prop-editor.Po ./$(DEPDIR)/simple.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/stresstest-toolbar.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testaccel.Po ./$(DEPDIR)/testactions.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testassistant.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testbbox.Po ./$(DEPDIR)/testbuttons.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcairo.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcalendar.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcellrenderertext.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testclientmessage.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcombo.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testcombochange.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testdnd.Po ./$(DEPDIR)/testellipsise.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testentrycompletion.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testentryicons.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testfilechooser.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testfilechooserbutton.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testframe.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testgrouping.Po ./$(DEPDIR)/testgtk.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testicontheme.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testiconview.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testimage.Po ./$(DEPDIR)/testinput.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmenubars.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmenus.Po ./$(DEPDIR)/testmerge.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmountoperation.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmultidisplay.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testmultiscreen.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testnotebookdnd.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testnouiprint.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testoffscreen.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testorientable.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testprint.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testprintfileoperation.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testrecentchooser.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testrecentchoosermenu.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testrgb.Po ./$(DEPDIR)/testrichtext.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testscale.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testselection.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testsocket.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testsocket_child.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testsocket_common.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testspinbutton.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/teststatusicon.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtext.Po ./$(DEPDIR)/testtoolbar.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtooltips.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreecolumns.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreecolumnsizing.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreeedit.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreeflow.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreefocus.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreemodel.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreesort.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testtreeview.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testvolumebutton.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testwindows.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/testxinerama.Po \ +-@AMDEP_TRUE@ ./$(DEPDIR)/treestoretest.Po +-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ +- $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +-CCLD = $(CC) +-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ +- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +-LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ +- $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ +- $(AM_CXXFLAGS) $(CXXFLAGS) +-CXXLD = $(CXX) +-CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ +-DIST_SOURCES = $(am__autotestkeywords_SOURCES_DIST) flicker.c \ +- pixbuf-lowmem.c pixbuf-random.c pixbuf-randomly-modified.c \ +- pixbuf-read.c pixbuf-threads.c print-editor.c simple.c \ +- stresstest-toolbar.c testaccel.c $(testactions_SOURCES) \ +- testassistant.c $(testbbox_SOURCES) $(testbuttons_SOURCES) \ +- testcairo.c testcalendar.c testcellrenderertext.c \ +- testclientmessage.c testcombo.c testcombochange.c testdnd.c \ +- testellipsise.c $(testentrycompletion_SOURCES) \ +- $(testentryicons_SOURCES) $(testfilechooser_SOURCES) \ +- $(testfilechooserbutton_SOURCES) $(testframe_SOURCES) \ +- $(testgrouping_SOURCES) $(testgtk_SOURCES) testicontheme.c \ +- $(testiconview_SOURCES) testimage.c testinput.c testmenubars.c \ +- testmenus.c $(testmerge_SOURCES) testmountoperation.c \ +- testmultidisplay.c testmultiscreen.c testnotebookdnd.c \ +- testnouiprint.c $(testoffscreen_SOURCES) testorientable.c \ +- $(testprint_SOURCES) $(testrecentchooser_SOURCES) \ +- $(testrecentchoosermenu_SOURCES) testrgb.c testrichtext.c \ +- testscale.c testselection.c $(testsocket_SOURCES) \ +- $(testsocket_child_SOURCES) $(testspinbutton_SOURCES) \ +- $(teststatusicon_SOURCES) $(testtext_SOURCES) \ +- $(testtoolbar_SOURCES) $(testtooltips_SOURCES) \ +- testtreecolumns.c testtreecolumnsizing.c \ +- $(testtreeedit_SOURCES) testtreeflow.c testtreefocus.c \ +- $(testtreemodel_SOURCES) testtreesort.c $(testtreeview_SOURCES) \ +- $(testvolumebutton_SOURCES) testwindows.c testxinerama.c \ +- treestoretest.c +-DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \ +- Makefile.am +-SOURCES = $(autotestkeywords_SOURCES) flicker.c pixbuf-lowmem.c pixbuf-random.c pixbuf-randomly-modified.c pixbuf-read.c pixbuf-threads.c print-editor.c simple.c stresstest-toolbar.c testaccel.c $(testactions_SOURCES) testassistant.c $(testbbox_SOURCES) $(testbuttons_SOURCES) testcairo.c testcalendar.c testcellrenderertext.c testclientmessage.c testcombo.c testcombochange.c testdnd.c testellipsise.c $(testentrycompletion_SOURCES) $(testentryicons_SOURCES) $(testfilechooser_SOURCES) $(testfilechooserbutton_SOURCES) $(testframe_SOURCES) $(testgrouping_SOURCES) $(testgtk_SOURCES) testicontheme.c $(testiconview_SOURCES) testimage.c testinput.c testmenubars.c testmenus.c $(testmerge_SOURCES) testmountoperation.c testmultidisplay.c testmultiscreen.c testnotebookdnd.c testnouiprint.c $(testoffscreen_SOURCES) testorientable.c $(testprint_SOURCES) $(testrecentchooser_SOURCES) $(testrecentchoosermenu_SOURCES) testrgb.c testrichtext.c testscale.c testselection.c $(testsocket_SOURCES) $(testsocket_child_SOURCES) $(testspinbutton_SOURCES) $(teststatusicon_SOURCES) $(testtext_SOURCES) $(testtoolbar_SOURCES) $(testtooltips_SOURCES) testtreecolumns.c testtreecolumnsizing.c $(testtreeedit_SOURCES) testtreeflow.c testtreefocus.c $(testtreemodel_SOURCES) testtreesort.c $(testtreeview_SOURCES) $(testvolumebutton_SOURCES) testwindows.c testxinerama.c treestoretest.c +- + all: all-am + + .SUFFIXES: + .SUFFIXES: .c .cc .lo .o .obj +-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/configure.in $(ACLOCAL_M4) +- cd $(top_srcdir) && \ +- $(AUTOMAKE) --gnu tests/Makefile +-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status +- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) ++$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps) ++ @for dep in $?; do \ ++ case '$(am__configure_deps)' in \ ++ *$$dep*) \ ++ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ ++ && { if test -f $@; then exit 0; else break; fi; }; \ ++ exit 1;; \ ++ esac; \ ++ done; \ ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \ ++ $(am__cd) $(top_srcdir) && \ ++ $(AUTOMAKE) --gnu tests/Makefile ++.PRECIOUS: Makefile ++Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status ++ @case '$?' in \ ++ *config.status*) \ ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ ++ *) \ ++ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ ++ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ ++ esac; ++ ++$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++ ++$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) ++ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ++$(am__aclocal_m4_deps): + + clean-noinstPROGRAMS: +- @list='$(noinst_PROGRAMS)'; for p in $$list; do \ +- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ +- echo " rm -f $$p $$f"; \ +- rm -f $$p $$f ; \ +- done ++ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list || exit $$?; \ ++ test -n "$(EXEEXT)" || exit 0; \ ++ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ ++ echo " rm -f" $$list; \ ++ rm -f $$list + autotestkeywords$(EXEEXT): $(autotestkeywords_OBJECTS) $(autotestkeywords_DEPENDENCIES) + @rm -f autotestkeywords$(EXEEXT) +- $(CXXLINK) $(autotestkeywords_LDFLAGS) $(autotestkeywords_OBJECTS) $(autotestkeywords_LDADD) $(LIBS) ++ $(AM_V_CXXLD)$(autotestkeywords_LINK) $(autotestkeywords_OBJECTS) $(autotestkeywords_LDADD) $(LIBS) + flicker$(EXEEXT): $(flicker_OBJECTS) $(flicker_DEPENDENCIES) + @rm -f flicker$(EXEEXT) +- $(LINK) $(flicker_LDFLAGS) $(flicker_OBJECTS) $(flicker_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(flicker_OBJECTS) $(flicker_LDADD) $(LIBS) + pixbuf-lowmem$(EXEEXT): $(pixbuf_lowmem_OBJECTS) $(pixbuf_lowmem_DEPENDENCIES) + @rm -f pixbuf-lowmem$(EXEEXT) +- $(LINK) $(pixbuf_lowmem_LDFLAGS) $(pixbuf_lowmem_OBJECTS) $(pixbuf_lowmem_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_lowmem_OBJECTS) $(pixbuf_lowmem_LDADD) $(LIBS) + pixbuf-random$(EXEEXT): $(pixbuf_random_OBJECTS) $(pixbuf_random_DEPENDENCIES) + @rm -f pixbuf-random$(EXEEXT) +- $(LINK) $(pixbuf_random_LDFLAGS) $(pixbuf_random_OBJECTS) $(pixbuf_random_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_random_OBJECTS) $(pixbuf_random_LDADD) $(LIBS) + pixbuf-randomly-modified$(EXEEXT): $(pixbuf_randomly_modified_OBJECTS) $(pixbuf_randomly_modified_DEPENDENCIES) + @rm -f pixbuf-randomly-modified$(EXEEXT) +- $(LINK) $(pixbuf_randomly_modified_LDFLAGS) $(pixbuf_randomly_modified_OBJECTS) $(pixbuf_randomly_modified_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_randomly_modified_OBJECTS) $(pixbuf_randomly_modified_LDADD) $(LIBS) + pixbuf-read$(EXEEXT): $(pixbuf_read_OBJECTS) $(pixbuf_read_DEPENDENCIES) + @rm -f pixbuf-read$(EXEEXT) +- $(LINK) $(pixbuf_read_LDFLAGS) $(pixbuf_read_OBJECTS) $(pixbuf_read_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_read_OBJECTS) $(pixbuf_read_LDADD) $(LIBS) + pixbuf-threads$(EXEEXT): $(pixbuf_threads_OBJECTS) $(pixbuf_threads_DEPENDENCIES) + @rm -f pixbuf-threads$(EXEEXT) +- $(LINK) $(pixbuf_threads_LDFLAGS) $(pixbuf_threads_OBJECTS) $(pixbuf_threads_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(pixbuf_threads_OBJECTS) $(pixbuf_threads_LDADD) $(LIBS) + print-editor$(EXEEXT): $(print_editor_OBJECTS) $(print_editor_DEPENDENCIES) + @rm -f print-editor$(EXEEXT) +- $(LINK) $(print_editor_LDFLAGS) $(print_editor_OBJECTS) $(print_editor_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(print_editor_OBJECTS) $(print_editor_LDADD) $(LIBS) + simple$(EXEEXT): $(simple_OBJECTS) $(simple_DEPENDENCIES) + @rm -f simple$(EXEEXT) +- $(LINK) $(simple_LDFLAGS) $(simple_OBJECTS) $(simple_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(simple_OBJECTS) $(simple_LDADD) $(LIBS) + stresstest-toolbar$(EXEEXT): $(stresstest_toolbar_OBJECTS) $(stresstest_toolbar_DEPENDENCIES) + @rm -f stresstest-toolbar$(EXEEXT) +- $(LINK) $(stresstest_toolbar_LDFLAGS) $(stresstest_toolbar_OBJECTS) $(stresstest_toolbar_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(stresstest_toolbar_OBJECTS) $(stresstest_toolbar_LDADD) $(LIBS) + testaccel$(EXEEXT): $(testaccel_OBJECTS) $(testaccel_DEPENDENCIES) + @rm -f testaccel$(EXEEXT) +- $(LINK) $(testaccel_LDFLAGS) $(testaccel_OBJECTS) $(testaccel_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testaccel_OBJECTS) $(testaccel_LDADD) $(LIBS) + testactions$(EXEEXT): $(testactions_OBJECTS) $(testactions_DEPENDENCIES) + @rm -f testactions$(EXEEXT) +- $(LINK) $(testactions_LDFLAGS) $(testactions_OBJECTS) $(testactions_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testactions_OBJECTS) $(testactions_LDADD) $(LIBS) + testassistant$(EXEEXT): $(testassistant_OBJECTS) $(testassistant_DEPENDENCIES) + @rm -f testassistant$(EXEEXT) +- $(LINK) $(testassistant_LDFLAGS) $(testassistant_OBJECTS) $(testassistant_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testassistant_OBJECTS) $(testassistant_LDADD) $(LIBS) + testbbox$(EXEEXT): $(testbbox_OBJECTS) $(testbbox_DEPENDENCIES) + @rm -f testbbox$(EXEEXT) +- $(LINK) $(testbbox_LDFLAGS) $(testbbox_OBJECTS) $(testbbox_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testbbox_OBJECTS) $(testbbox_LDADD) $(LIBS) + testbuttons$(EXEEXT): $(testbuttons_OBJECTS) $(testbuttons_DEPENDENCIES) + @rm -f testbuttons$(EXEEXT) +- $(LINK) $(testbuttons_LDFLAGS) $(testbuttons_OBJECTS) $(testbuttons_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testbuttons_OBJECTS) $(testbuttons_LDADD) $(LIBS) + testcairo$(EXEEXT): $(testcairo_OBJECTS) $(testcairo_DEPENDENCIES) + @rm -f testcairo$(EXEEXT) +- $(LINK) $(testcairo_LDFLAGS) $(testcairo_OBJECTS) $(testcairo_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testcairo_OBJECTS) $(testcairo_LDADD) $(LIBS) + testcalendar$(EXEEXT): $(testcalendar_OBJECTS) $(testcalendar_DEPENDENCIES) + @rm -f testcalendar$(EXEEXT) +- $(LINK) $(testcalendar_LDFLAGS) $(testcalendar_OBJECTS) $(testcalendar_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testcalendar_OBJECTS) $(testcalendar_LDADD) $(LIBS) + testcellrenderertext$(EXEEXT): $(testcellrenderertext_OBJECTS) $(testcellrenderertext_DEPENDENCIES) + @rm -f testcellrenderertext$(EXEEXT) +- $(LINK) $(testcellrenderertext_LDFLAGS) $(testcellrenderertext_OBJECTS) $(testcellrenderertext_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testcellrenderertext_OBJECTS) $(testcellrenderertext_LDADD) $(LIBS) + testclientmessage$(EXEEXT): $(testclientmessage_OBJECTS) $(testclientmessage_DEPENDENCIES) + @rm -f testclientmessage$(EXEEXT) +- $(LINK) $(testclientmessage_LDFLAGS) $(testclientmessage_OBJECTS) $(testclientmessage_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testclientmessage_OBJECTS) $(testclientmessage_LDADD) $(LIBS) + testcombo$(EXEEXT): $(testcombo_OBJECTS) $(testcombo_DEPENDENCIES) + @rm -f testcombo$(EXEEXT) +- $(LINK) $(testcombo_LDFLAGS) $(testcombo_OBJECTS) $(testcombo_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testcombo_OBJECTS) $(testcombo_LDADD) $(LIBS) + testcombochange$(EXEEXT): $(testcombochange_OBJECTS) $(testcombochange_DEPENDENCIES) + @rm -f testcombochange$(EXEEXT) +- $(LINK) $(testcombochange_LDFLAGS) $(testcombochange_OBJECTS) $(testcombochange_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testcombochange_OBJECTS) $(testcombochange_LDADD) $(LIBS) + testdnd$(EXEEXT): $(testdnd_OBJECTS) $(testdnd_DEPENDENCIES) + @rm -f testdnd$(EXEEXT) +- $(LINK) $(testdnd_LDFLAGS) $(testdnd_OBJECTS) $(testdnd_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testdnd_OBJECTS) $(testdnd_LDADD) $(LIBS) + testellipsise$(EXEEXT): $(testellipsise_OBJECTS) $(testellipsise_DEPENDENCIES) + @rm -f testellipsise$(EXEEXT) +- $(LINK) $(testellipsise_LDFLAGS) $(testellipsise_OBJECTS) $(testellipsise_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testellipsise_OBJECTS) $(testellipsise_LDADD) $(LIBS) + testentrycompletion$(EXEEXT): $(testentrycompletion_OBJECTS) $(testentrycompletion_DEPENDENCIES) + @rm -f testentrycompletion$(EXEEXT) +- $(LINK) $(testentrycompletion_LDFLAGS) $(testentrycompletion_OBJECTS) $(testentrycompletion_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testentrycompletion_OBJECTS) $(testentrycompletion_LDADD) $(LIBS) + testentryicons$(EXEEXT): $(testentryicons_OBJECTS) $(testentryicons_DEPENDENCIES) + @rm -f testentryicons$(EXEEXT) +- $(LINK) $(testentryicons_LDFLAGS) $(testentryicons_OBJECTS) $(testentryicons_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testentryicons_OBJECTS) $(testentryicons_LDADD) $(LIBS) + testfilechooser$(EXEEXT): $(testfilechooser_OBJECTS) $(testfilechooser_DEPENDENCIES) + @rm -f testfilechooser$(EXEEXT) +- $(LINK) $(testfilechooser_LDFLAGS) $(testfilechooser_OBJECTS) $(testfilechooser_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testfilechooser_OBJECTS) $(testfilechooser_LDADD) $(LIBS) + testfilechooserbutton$(EXEEXT): $(testfilechooserbutton_OBJECTS) $(testfilechooserbutton_DEPENDENCIES) + @rm -f testfilechooserbutton$(EXEEXT) +- $(LINK) $(testfilechooserbutton_LDFLAGS) $(testfilechooserbutton_OBJECTS) $(testfilechooserbutton_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testfilechooserbutton_OBJECTS) $(testfilechooserbutton_LDADD) $(LIBS) + testframe$(EXEEXT): $(testframe_OBJECTS) $(testframe_DEPENDENCIES) + @rm -f testframe$(EXEEXT) +- $(LINK) $(testframe_LDFLAGS) $(testframe_OBJECTS) $(testframe_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testframe_OBJECTS) $(testframe_LDADD) $(LIBS) + testgrouping$(EXEEXT): $(testgrouping_OBJECTS) $(testgrouping_DEPENDENCIES) + @rm -f testgrouping$(EXEEXT) +- $(LINK) $(testgrouping_LDFLAGS) $(testgrouping_OBJECTS) $(testgrouping_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testgrouping_OBJECTS) $(testgrouping_LDADD) $(LIBS) + testgtk$(EXEEXT): $(testgtk_OBJECTS) $(testgtk_DEPENDENCIES) + @rm -f testgtk$(EXEEXT) +- $(LINK) $(testgtk_LDFLAGS) $(testgtk_OBJECTS) $(testgtk_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testgtk_OBJECTS) $(testgtk_LDADD) $(LIBS) + testicontheme$(EXEEXT): $(testicontheme_OBJECTS) $(testicontheme_DEPENDENCIES) + @rm -f testicontheme$(EXEEXT) +- $(LINK) $(testicontheme_LDFLAGS) $(testicontheme_OBJECTS) $(testicontheme_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testicontheme_OBJECTS) $(testicontheme_LDADD) $(LIBS) + testiconview$(EXEEXT): $(testiconview_OBJECTS) $(testiconview_DEPENDENCIES) + @rm -f testiconview$(EXEEXT) +- $(LINK) $(testiconview_LDFLAGS) $(testiconview_OBJECTS) $(testiconview_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testiconview_OBJECTS) $(testiconview_LDADD) $(LIBS) + testimage$(EXEEXT): $(testimage_OBJECTS) $(testimage_DEPENDENCIES) + @rm -f testimage$(EXEEXT) +- $(LINK) $(testimage_LDFLAGS) $(testimage_OBJECTS) $(testimage_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testimage_OBJECTS) $(testimage_LDADD) $(LIBS) + testinput$(EXEEXT): $(testinput_OBJECTS) $(testinput_DEPENDENCIES) + @rm -f testinput$(EXEEXT) +- $(LINK) $(testinput_LDFLAGS) $(testinput_OBJECTS) $(testinput_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testinput_OBJECTS) $(testinput_LDADD) $(LIBS) + testmenubars$(EXEEXT): $(testmenubars_OBJECTS) $(testmenubars_DEPENDENCIES) + @rm -f testmenubars$(EXEEXT) +- $(LINK) $(testmenubars_LDFLAGS) $(testmenubars_OBJECTS) $(testmenubars_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmenubars_OBJECTS) $(testmenubars_LDADD) $(LIBS) + testmenus$(EXEEXT): $(testmenus_OBJECTS) $(testmenus_DEPENDENCIES) + @rm -f testmenus$(EXEEXT) +- $(LINK) $(testmenus_LDFLAGS) $(testmenus_OBJECTS) $(testmenus_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmenus_OBJECTS) $(testmenus_LDADD) $(LIBS) + testmerge$(EXEEXT): $(testmerge_OBJECTS) $(testmerge_DEPENDENCIES) + @rm -f testmerge$(EXEEXT) +- $(LINK) $(testmerge_LDFLAGS) $(testmerge_OBJECTS) $(testmerge_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmerge_OBJECTS) $(testmerge_LDADD) $(LIBS) + testmountoperation$(EXEEXT): $(testmountoperation_OBJECTS) $(testmountoperation_DEPENDENCIES) + @rm -f testmountoperation$(EXEEXT) +- $(LINK) $(testmountoperation_LDFLAGS) $(testmountoperation_OBJECTS) $(testmountoperation_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmountoperation_OBJECTS) $(testmountoperation_LDADD) $(LIBS) + testmultidisplay$(EXEEXT): $(testmultidisplay_OBJECTS) $(testmultidisplay_DEPENDENCIES) + @rm -f testmultidisplay$(EXEEXT) +- $(LINK) $(testmultidisplay_LDFLAGS) $(testmultidisplay_OBJECTS) $(testmultidisplay_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmultidisplay_OBJECTS) $(testmultidisplay_LDADD) $(LIBS) + testmultiscreen$(EXEEXT): $(testmultiscreen_OBJECTS) $(testmultiscreen_DEPENDENCIES) + @rm -f testmultiscreen$(EXEEXT) +- $(LINK) $(testmultiscreen_LDFLAGS) $(testmultiscreen_OBJECTS) $(testmultiscreen_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testmultiscreen_OBJECTS) $(testmultiscreen_LDADD) $(LIBS) + testnotebookdnd$(EXEEXT): $(testnotebookdnd_OBJECTS) $(testnotebookdnd_DEPENDENCIES) + @rm -f testnotebookdnd$(EXEEXT) +- $(LINK) $(testnotebookdnd_LDFLAGS) $(testnotebookdnd_OBJECTS) $(testnotebookdnd_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testnotebookdnd_OBJECTS) $(testnotebookdnd_LDADD) $(LIBS) + testnouiprint$(EXEEXT): $(testnouiprint_OBJECTS) $(testnouiprint_DEPENDENCIES) + @rm -f testnouiprint$(EXEEXT) +- $(LINK) $(testnouiprint_LDFLAGS) $(testnouiprint_OBJECTS) $(testnouiprint_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testnouiprint_OBJECTS) $(testnouiprint_LDADD) $(LIBS) + testoffscreen$(EXEEXT): $(testoffscreen_OBJECTS) $(testoffscreen_DEPENDENCIES) + @rm -f testoffscreen$(EXEEXT) +- $(LINK) $(testoffscreen_LDFLAGS) $(testoffscreen_OBJECTS) $(testoffscreen_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testoffscreen_OBJECTS) $(testoffscreen_LDADD) $(LIBS) + testorientable$(EXEEXT): $(testorientable_OBJECTS) $(testorientable_DEPENDENCIES) + @rm -f testorientable$(EXEEXT) +- $(LINK) $(testorientable_LDFLAGS) $(testorientable_OBJECTS) $(testorientable_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testorientable_OBJECTS) $(testorientable_LDADD) $(LIBS) + testprint$(EXEEXT): $(testprint_OBJECTS) $(testprint_DEPENDENCIES) + @rm -f testprint$(EXEEXT) +- $(LINK) $(testprint_LDFLAGS) $(testprint_OBJECTS) $(testprint_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testprint_OBJECTS) $(testprint_LDADD) $(LIBS) + testrecentchooser$(EXEEXT): $(testrecentchooser_OBJECTS) $(testrecentchooser_DEPENDENCIES) + @rm -f testrecentchooser$(EXEEXT) +- $(LINK) $(testrecentchooser_LDFLAGS) $(testrecentchooser_OBJECTS) $(testrecentchooser_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testrecentchooser_OBJECTS) $(testrecentchooser_LDADD) $(LIBS) + testrecentchoosermenu$(EXEEXT): $(testrecentchoosermenu_OBJECTS) $(testrecentchoosermenu_DEPENDENCIES) + @rm -f testrecentchoosermenu$(EXEEXT) +- $(LINK) $(testrecentchoosermenu_LDFLAGS) $(testrecentchoosermenu_OBJECTS) $(testrecentchoosermenu_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testrecentchoosermenu_OBJECTS) $(testrecentchoosermenu_LDADD) $(LIBS) + testrgb$(EXEEXT): $(testrgb_OBJECTS) $(testrgb_DEPENDENCIES) + @rm -f testrgb$(EXEEXT) +- $(LINK) $(testrgb_LDFLAGS) $(testrgb_OBJECTS) $(testrgb_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testrgb_OBJECTS) $(testrgb_LDADD) $(LIBS) + testrichtext$(EXEEXT): $(testrichtext_OBJECTS) $(testrichtext_DEPENDENCIES) + @rm -f testrichtext$(EXEEXT) +- $(LINK) $(testrichtext_LDFLAGS) $(testrichtext_OBJECTS) $(testrichtext_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testrichtext_OBJECTS) $(testrichtext_LDADD) $(LIBS) + testscale$(EXEEXT): $(testscale_OBJECTS) $(testscale_DEPENDENCIES) + @rm -f testscale$(EXEEXT) +- $(LINK) $(testscale_LDFLAGS) $(testscale_OBJECTS) $(testscale_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testscale_OBJECTS) $(testscale_LDADD) $(LIBS) + testselection$(EXEEXT): $(testselection_OBJECTS) $(testselection_DEPENDENCIES) + @rm -f testselection$(EXEEXT) +- $(LINK) $(testselection_LDFLAGS) $(testselection_OBJECTS) $(testselection_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testselection_OBJECTS) $(testselection_LDADD) $(LIBS) + testsocket$(EXEEXT): $(testsocket_OBJECTS) $(testsocket_DEPENDENCIES) + @rm -f testsocket$(EXEEXT) +- $(LINK) $(testsocket_LDFLAGS) $(testsocket_OBJECTS) $(testsocket_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testsocket_OBJECTS) $(testsocket_LDADD) $(LIBS) + testsocket_child$(EXEEXT): $(testsocket_child_OBJECTS) $(testsocket_child_DEPENDENCIES) + @rm -f testsocket_child$(EXEEXT) +- $(LINK) $(testsocket_child_LDFLAGS) $(testsocket_child_OBJECTS) $(testsocket_child_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testsocket_child_OBJECTS) $(testsocket_child_LDADD) $(LIBS) + testspinbutton$(EXEEXT): $(testspinbutton_OBJECTS) $(testspinbutton_DEPENDENCIES) + @rm -f testspinbutton$(EXEEXT) +- $(LINK) $(testspinbutton_LDFLAGS) $(testspinbutton_OBJECTS) $(testspinbutton_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testspinbutton_OBJECTS) $(testspinbutton_LDADD) $(LIBS) + teststatusicon$(EXEEXT): $(teststatusicon_OBJECTS) $(teststatusicon_DEPENDENCIES) + @rm -f teststatusicon$(EXEEXT) +- $(LINK) $(teststatusicon_LDFLAGS) $(teststatusicon_OBJECTS) $(teststatusicon_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(teststatusicon_OBJECTS) $(teststatusicon_LDADD) $(LIBS) + testtext$(EXEEXT): $(testtext_OBJECTS) $(testtext_DEPENDENCIES) + @rm -f testtext$(EXEEXT) +- $(LINK) $(testtext_LDFLAGS) $(testtext_OBJECTS) $(testtext_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtext_OBJECTS) $(testtext_LDADD) $(LIBS) + testtoolbar$(EXEEXT): $(testtoolbar_OBJECTS) $(testtoolbar_DEPENDENCIES) + @rm -f testtoolbar$(EXEEXT) +- $(LINK) $(testtoolbar_LDFLAGS) $(testtoolbar_OBJECTS) $(testtoolbar_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtoolbar_OBJECTS) $(testtoolbar_LDADD) $(LIBS) + testtooltips$(EXEEXT): $(testtooltips_OBJECTS) $(testtooltips_DEPENDENCIES) + @rm -f testtooltips$(EXEEXT) +- $(LINK) $(testtooltips_LDFLAGS) $(testtooltips_OBJECTS) $(testtooltips_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtooltips_OBJECTS) $(testtooltips_LDADD) $(LIBS) + testtreecolumns$(EXEEXT): $(testtreecolumns_OBJECTS) $(testtreecolumns_DEPENDENCIES) + @rm -f testtreecolumns$(EXEEXT) +- $(LINK) $(testtreecolumns_LDFLAGS) $(testtreecolumns_OBJECTS) $(testtreecolumns_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreecolumns_OBJECTS) $(testtreecolumns_LDADD) $(LIBS) + testtreecolumnsizing$(EXEEXT): $(testtreecolumnsizing_OBJECTS) $(testtreecolumnsizing_DEPENDENCIES) + @rm -f testtreecolumnsizing$(EXEEXT) +- $(LINK) $(testtreecolumnsizing_LDFLAGS) $(testtreecolumnsizing_OBJECTS) $(testtreecolumnsizing_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreecolumnsizing_OBJECTS) $(testtreecolumnsizing_LDADD) $(LIBS) + testtreeedit$(EXEEXT): $(testtreeedit_OBJECTS) $(testtreeedit_DEPENDENCIES) + @rm -f testtreeedit$(EXEEXT) +- $(LINK) $(testtreeedit_LDFLAGS) $(testtreeedit_OBJECTS) $(testtreeedit_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreeedit_OBJECTS) $(testtreeedit_LDADD) $(LIBS) + testtreeflow$(EXEEXT): $(testtreeflow_OBJECTS) $(testtreeflow_DEPENDENCIES) + @rm -f testtreeflow$(EXEEXT) +- $(LINK) $(testtreeflow_LDFLAGS) $(testtreeflow_OBJECTS) $(testtreeflow_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreeflow_OBJECTS) $(testtreeflow_LDADD) $(LIBS) + testtreefocus$(EXEEXT): $(testtreefocus_OBJECTS) $(testtreefocus_DEPENDENCIES) + @rm -f testtreefocus$(EXEEXT) +- $(LINK) $(testtreefocus_LDFLAGS) $(testtreefocus_OBJECTS) $(testtreefocus_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreefocus_OBJECTS) $(testtreefocus_LDADD) $(LIBS) + testtreemodel$(EXEEXT): $(testtreemodel_OBJECTS) $(testtreemodel_DEPENDENCIES) + @rm -f testtreemodel$(EXEEXT) +- $(LINK) $(testtreemodel_LDFLAGS) $(testtreemodel_OBJECTS) $(testtreemodel_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreemodel_OBJECTS) $(testtreemodel_LDADD) $(LIBS) + testtreesort$(EXEEXT): $(testtreesort_OBJECTS) $(testtreesort_DEPENDENCIES) + @rm -f testtreesort$(EXEEXT) +- $(LINK) $(testtreesort_LDFLAGS) $(testtreesort_OBJECTS) $(testtreesort_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreesort_OBJECTS) $(testtreesort_LDADD) $(LIBS) + testtreeview$(EXEEXT): $(testtreeview_OBJECTS) $(testtreeview_DEPENDENCIES) + @rm -f testtreeview$(EXEEXT) +- $(LINK) $(testtreeview_LDFLAGS) $(testtreeview_OBJECTS) $(testtreeview_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testtreeview_OBJECTS) $(testtreeview_LDADD) $(LIBS) + testvolumebutton$(EXEEXT): $(testvolumebutton_OBJECTS) $(testvolumebutton_DEPENDENCIES) + @rm -f testvolumebutton$(EXEEXT) +- $(LINK) $(testvolumebutton_LDFLAGS) $(testvolumebutton_OBJECTS) $(testvolumebutton_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testvolumebutton_OBJECTS) $(testvolumebutton_LDADD) $(LIBS) + testwindows$(EXEEXT): $(testwindows_OBJECTS) $(testwindows_DEPENDENCIES) + @rm -f testwindows$(EXEEXT) +- $(LINK) $(testwindows_LDFLAGS) $(testwindows_OBJECTS) $(testwindows_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testwindows_OBJECTS) $(testwindows_LDADD) $(LIBS) + testxinerama$(EXEEXT): $(testxinerama_OBJECTS) $(testxinerama_DEPENDENCIES) + @rm -f testxinerama$(EXEEXT) +- $(LINK) $(testxinerama_LDFLAGS) $(testxinerama_OBJECTS) $(testxinerama_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(testxinerama_OBJECTS) $(testxinerama_LDADD) $(LIBS) + treestoretest$(EXEEXT): $(treestoretest_OBJECTS) $(treestoretest_DEPENDENCIES) + @rm -f treestoretest$(EXEEXT) +- $(LINK) $(treestoretest_LDFLAGS) $(treestoretest_OBJECTS) $(treestoretest_LDADD) $(LIBS) ++ $(AM_V_CCLD)$(LINK) $(treestoretest_OBJECTS) $(treestoretest_LDADD) $(LIBS) + + mostlyclean-compile: +- -rm -f *.$(OBJEXT) core *.core ++ -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c +@@ -1760,164 +1216,123 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/treestoretest.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + .c.lo: +-@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCC_TRUE@ fi ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + + .cc.o: +-@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + + .cc.obj: +-@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + + .cc.lo: +-@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo ++@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + + autotestkeywords-autotestkeywords.o: autotestkeywords.cc +-@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -MT autotestkeywords-autotestkeywords.o -MD -MP -MF "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o autotestkeywords-autotestkeywords.o `test -f 'autotestkeywords.cc' || echo '$(srcdir)/'`autotestkeywords.cc; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" "$(DEPDIR)/autotestkeywords-autotestkeywords.Po"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -MT autotestkeywords-autotestkeywords.o -MD -MP -MF $(DEPDIR)/autotestkeywords-autotestkeywords.Tpo -c -o autotestkeywords-autotestkeywords.o `test -f 'autotestkeywords.cc' || echo '$(srcdir)/'`autotestkeywords.cc ++@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/autotestkeywords-autotestkeywords.Tpo $(DEPDIR)/autotestkeywords-autotestkeywords.Po ++@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='autotestkeywords.cc' object='autotestkeywords-autotestkeywords.o' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/autotestkeywords-autotestkeywords.Po' tmpdepfile='$(DEPDIR)/autotestkeywords-autotestkeywords.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -c -o autotestkeywords-autotestkeywords.o `test -f 'autotestkeywords.cc' || echo '$(srcdir)/'`autotestkeywords.cc + + autotestkeywords-autotestkeywords.obj: autotestkeywords.cc +-@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -MT autotestkeywords-autotestkeywords.obj -MD -MP -MF "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o autotestkeywords-autotestkeywords.obj `if test -f 'autotestkeywords.cc'; then $(CYGPATH_W) 'autotestkeywords.cc'; else $(CYGPATH_W) '$(srcdir)/autotestkeywords.cc'; fi`; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" "$(DEPDIR)/autotestkeywords-autotestkeywords.Po"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -MT autotestkeywords-autotestkeywords.obj -MD -MP -MF $(DEPDIR)/autotestkeywords-autotestkeywords.Tpo -c -o autotestkeywords-autotestkeywords.obj `if test -f 'autotestkeywords.cc'; then $(CYGPATH_W) 'autotestkeywords.cc'; else $(CYGPATH_W) '$(srcdir)/autotestkeywords.cc'; fi` ++@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/autotestkeywords-autotestkeywords.Tpo $(DEPDIR)/autotestkeywords-autotestkeywords.Po ++@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='autotestkeywords.cc' object='autotestkeywords-autotestkeywords.obj' libtool=no @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/autotestkeywords-autotestkeywords.Po' tmpdepfile='$(DEPDIR)/autotestkeywords-autotestkeywords.TPo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -c -o autotestkeywords-autotestkeywords.obj `if test -f 'autotestkeywords.cc'; then $(CYGPATH_W) 'autotestkeywords.cc'; else $(CYGPATH_W) '$(srcdir)/autotestkeywords.cc'; fi` + +-autotestkeywords-autotestkeywords.lo: autotestkeywords.cc +-@am__fastdepCXX_TRUE@ if $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -MT autotestkeywords-autotestkeywords.lo -MD -MP -MF "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" \ +-@am__fastdepCXX_TRUE@ -c -o autotestkeywords-autotestkeywords.lo `test -f 'autotestkeywords.cc' || echo '$(srcdir)/'`autotestkeywords.cc; \ +-@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo" "$(DEPDIR)/autotestkeywords-autotestkeywords.Plo"; \ +-@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/autotestkeywords-autotestkeywords.Tpo"; exit 1; \ +-@am__fastdepCXX_TRUE@ fi +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='autotestkeywords.cc' object='autotestkeywords-autotestkeywords.lo' libtool=yes @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/autotestkeywords-autotestkeywords.Plo' tmpdepfile='$(DEPDIR)/autotestkeywords-autotestkeywords.TPlo' @AMDEPBACKSLASH@ +-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +-@am__fastdepCXX_FALSE@ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(autotestkeywords_CPPFLAGS) $(CPPFLAGS) $(autotestkeywords_CXXFLAGS) $(CXXFLAGS) -c -o autotestkeywords-autotestkeywords.lo `test -f 'autotestkeywords.cc' || echo '$(srcdir)/'`autotestkeywords.cc +- + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs + +-distclean-libtool: +- -rm -f libtool +-uninstall-info-am: +- +-ETAGS = etags +-ETAGSFLAGS = +- +-CTAGS = ctags +-CTAGSFLAGS = +- +-tags: TAGS +- + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique ++tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ ++ set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(ETAGS_ARGS)$$tags$$unique" \ +- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$tags $$unique +- ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ shift; \ ++ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ ++ test -n "$$unique" || unique=$$empty_fix; \ ++ if test $$# -gt 0; then \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ "$$@" $$unique; \ ++ else \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$unique; \ ++ fi; \ ++ fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- tags=; \ +- here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ +- $(AWK) ' { files[$$0] = 1; } \ +- END { for (i in files) print i; }'`; \ +- test -z "$(CTAGS_ARGS)$$tags$$unique" \ ++ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ ++ END { if (nonempty) { for (i in files) print i; }; }'`; \ ++ test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$tags $$unique ++ $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && cd $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) $$here ++ && $(am__cd) $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) "$$here" + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +@@ -1925,7 +1340,8 @@ + check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ +- list='$(TESTS)'; \ ++ list=' $(TESTS) '; \ ++ $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ +@@ -1934,96 +1350,112 @@ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xpass=`expr $$xpass + 1`; \ +- failed=`expr $$failed + 1`; \ +- echo "XPASS: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xpass=`expr $$xpass + 1`; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=XPASS; \ + ;; \ + *) \ +- echo "PASS: $$tst"; \ ++ col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ +- *" $$tst "*) \ +- xfail=`expr $$xfail + 1`; \ +- echo "XFAIL: $$tst"; \ ++ *[\ \ ]$$tst[\ \ ]*) \ ++ xfail=`expr $$xfail + 1`; \ ++ col=$$lgn; res=XFAIL; \ + ;; \ + *) \ +- failed=`expr $$failed + 1`; \ +- echo "FAIL: $$tst"; \ ++ failed=`expr $$failed + 1`; \ ++ col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ +- echo "SKIP: $$tst"; \ ++ col=$$blu; res=SKIP; \ + fi; \ ++ echo "$${col}$$res$${std}: $$tst"; \ + done; \ ++ if test "$$all" -eq 1; then \ ++ tests="test"; \ ++ All=""; \ ++ else \ ++ tests="tests"; \ ++ All="All "; \ ++ fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ +- banner="All $$all tests passed"; \ ++ banner="$$All$$all $$tests passed"; \ + else \ +- banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ ++ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ ++ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ +- banner="$$failed of $$all tests failed"; \ ++ banner="$$failed of $$all $$tests failed"; \ + else \ +- banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ ++ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ ++ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ +- skipped="($$skip tests were not run)"; \ +- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ if test "$$skip" -eq 1; then \ ++ skipped="($$skip test was not run)"; \ ++ else \ ++ skipped="($$skip tests were not run)"; \ ++ fi; \ ++ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ +- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ ++ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ +- echo "$$dashes"; \ ++ if test "$$failed" -eq 0; then \ ++ echo "$$grn$$dashes"; \ ++ else \ ++ echo "$$red$$dashes"; \ ++ fi; \ + echo "$$banner"; \ +- test -n "$$skipped" && echo "$$skipped"; \ +- test -n "$$report" && echo "$$report"; \ +- echo "$$dashes"; \ ++ test -z "$$skipped" || echo "$$skipped"; \ ++ test -z "$$report" || echo "$$report"; \ ++ echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +- +-top_distdir = .. +-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + + distdir: $(DISTFILES) +- $(mkinstalldirs) $(distdir)/.. $(distdir)/file-chooser-test-dir +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkinstalldirs) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test -d "$(distdir)/$$file"; then \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ ++ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ +- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ ++ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ +- test -f $(distdir)/$$file \ +- || cp -p $$d/$$file $(distdir)/$$file \ ++ test -f "$(distdir)/$$file" \ ++ || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@@ -2031,7 +1463,6 @@ + $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local + check: check-am + all-am: Makefile $(PROGRAMS) +- + installdirs: + install: install-am + install-exec: install-exec-am +@@ -2052,7 +1483,8 @@ + clean-generic: + + distclean-generic: +- -rm -f $(CONFIG_CLEAN_FILES) ++ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) ++ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + + maintainer-clean-generic: + @echo "This command is intended for maintainers to use" +@@ -2066,24 +1498,46 @@ + -rm -rf ./$(DEPDIR) + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ +- distclean-libtool distclean-tags ++ distclean-tags + + dvi: dvi-am + + dvi-am: + ++html: html-am ++ ++html-am: ++ + info: info-am + + info-am: + + install-data-am: + ++install-dvi: install-dvi-am ++ ++install-dvi-am: ++ + install-exec-am: + ++install-html: install-html-am ++ ++install-html-am: ++ + install-info: install-info-am + ++install-info-am: ++ + install-man: + ++install-pdf: install-pdf-am ++ ++install-pdf-am: ++ ++install-ps: install-ps-am ++ ++install-ps-am: ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -2104,18 +1558,23 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: check-am install-am install-strip + + .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \ + clean clean-generic clean-libtool clean-noinstPROGRAMS ctags \ +- distclean distclean-compile distclean-generic distclean-libtool \ +- distclean-tags distdir dvi dvi-am info info-am install \ +- install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am install-man \ +- install-strip installcheck installcheck-am installdirs \ +- maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ +- pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am ++ distclean distclean-compile distclean-generic \ ++ distclean-libtool distclean-tags distdir dvi dvi-am html \ ++ html-am info info-am install install-am install-data \ ++ install-data-am install-dvi install-dvi-am install-exec \ ++ install-exec-am install-html install-html-am install-info \ ++ install-info-am install-man install-pdf install-pdf-am \ ++ install-ps install-ps-am install-strip installcheck \ ++ installcheck-am installdirs maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ++ tags uninstall uninstall-am + + # call as: $(XVFB_START) && someprogram + +@@ -2172,6 +1631,7 @@ + check-local: test + + -include $(top_srcdir)/git.mk ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: --- gtk+2.0-2.17.10.orig/debian/patches/021_loader-files-d.patch +++ gtk+2.0-2.17.10/debian/patches/021_loader-files-d.patch @@ -0,0 +1,386 @@ +Index: gtk+-2.17.9/gdk-pixbuf/Makefile.am +=================================================================== +--- gtk+-2.17.9.orig/gdk-pixbuf/Makefile.am 2009-07-20 12:33:46.000000000 +1000 ++++ gtk+-2.17.9/gdk-pixbuf/Makefile.am 2009-08-27 16:22:03.000000000 +1000 +@@ -62,6 +62,7 @@ + libgdk_pixbuf-2.0.la + + loaderdir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/loaders ++loaderfilesdir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/loader-files.d + + module_libs = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS) + +@@ -513,7 +514,7 @@ + $(GDK_PIXBUF_DEP_CFLAGS) \ + -DGDK_PIXBUF_ENABLE_BACKEND + +-AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\"" ++AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DPIXBUF_FILES_LIBDIR=\"$(loaderfilesdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\"" + LDADDS = libgdk_pixbuf-$(GTK_API_VERSION).la $(GDK_PIXBUF_DEP_LIBS) + + noinst_PROGRAMS = test-gdk-pixbuf +Index: gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c +=================================================================== +--- gtk+-2.17.9.orig/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-21 07:56:14.000000000 +1000 ++++ gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-27 16:22:03.000000000 +1000 +@@ -51,6 +51,9 @@ + #define SNIFF_BUFFER_SIZE 4096 + #define LOAD_BUFFER_SIZE 65536 + ++#define LOADERFILEEXT ".loaders" ++#define LOADERFILEEXT_LEN ((int) strlen (LOADERFILEEXT)) ++ + #ifndef GDK_PIXBUF_USE_GIO_MIME + static gint + format_check (GdkPixbufModule *module, guchar *buffer, int size) +@@ -317,115 +320,93 @@ + gdk_pixbuf_load_module_unlocked (GdkPixbufModule *image_module, + GError **error); + ++/* FIXME this is a static copy of a public pango function which should really ++ * livein glib */ ++static char * ++_ugly_copy_of_pango_trim_string (const char *str) ++{ ++ int len; ++ ++ g_return_val_if_fail (str != NULL, NULL); ++ ++ while (*str && g_ascii_isspace (*str)) ++ str++; ++ ++ len = strlen (str); ++ while (len > 0 && g_ascii_isspace (str[len-1])) ++ len--; ++ ++ return g_strndup (str, len); ++} ++ ++/* FIXME this is a static copy of a public pango function which should really ++ * livein glib */ ++char ** ++_ugly_copy_of_pango_split_file_list (const char *str) ++{ ++ int i = 0; ++ int j; ++ char **files; ++ ++ files = g_strsplit (str, G_SEARCHPATH_SEPARATOR_S, -1); ++ ++ while (files[i]) ++ { ++ char *file = _ugly_copy_of_pango_trim_string (files[i]); ++ ++ /* If the resulting file is empty, skip it */ ++ if (file[0] == '\0') ++ { ++ g_free(file); ++ g_free (files[i]); ++ ++ for (j = i + 1; files[j]; j++) ++ files[j - 1] = files[j]; ++ ++ files[j - 1] = NULL; ++ ++ continue; ++ } ++#ifndef G_OS_WIN32 ++ /* '~' is a quite normal and common character in file names on ++ * Windows, especially in the 8.3 versions of long file names, which ++ * still occur now and then. Also, few Windows user are aware of the ++ * Unix shell convention that '~' stands for the home directory, ++ * even if they happen to have a home directory. ++ */ ++ if (file[0] == '~' && file[1] == G_DIR_SEPARATOR) ++ { ++ char *tmp = g_strconcat (g_get_home_dir(), file + 1, NULL); ++ g_free (file); ++ file = tmp; ++ } ++ else if (file[0] == '~' && file[1] == '\0') ++ { ++ g_free (file); ++ file = g_strdup (g_get_home_dir()); ++ } ++#endif ++ g_free (files[i]); ++ files[i] = file; ++ ++ i++; ++ } ++ ++ return files; ++} ++ + static void +-gdk_pixbuf_io_init (void) ++process_module_file (const gchar *filename, GIOChannel *channel) + { + #ifdef USE_GMODULE +- GIOChannel *channel; + gchar *line_buf; + gsize term; + GString *tmp_buf = g_string_new (NULL); + gboolean have_error = FALSE; + GdkPixbufModule *module = NULL; +- gchar *filename = gdk_pixbuf_get_module_file (); + int flags; + int n_patterns = 0; + GdkPixbufModulePattern *pattern; +- GError *error = NULL; +-#endif +- GdkPixbufModule *builtin_module ; +- +- /* initialize on separate line to avoid compiler warnings in the +- * common case of no compiled-in modules. +- */ +- builtin_module = NULL; +- +-#define load_one_builtin_module(format) \ +- builtin_module = g_new0 (GdkPixbufModule, 1); \ +- builtin_module->module_name = #format; \ +- if (gdk_pixbuf_load_module_unlocked (builtin_module, NULL)) \ +- file_formats = g_slist_prepend (file_formats, builtin_module);\ +- else \ +- g_free (builtin_module) +- +-#ifdef INCLUDE_ani +- load_one_builtin_module (ani); +-#endif +-#ifdef INCLUDE_png +- load_one_builtin_module (png); +-#endif +-#ifdef INCLUDE_bmp +- load_one_builtin_module (bmp); +-#endif +-#ifdef INCLUDE_wbmp +- load_one_builtin_module (wbmp); +-#endif +-#ifdef INCLUDE_gif +- load_one_builtin_module (gif); +-#endif +-#ifdef INCLUDE_ico +- load_one_builtin_module (ico); +-#endif +-#ifdef INCLUDE_jpeg +- load_one_builtin_module (jpeg); +-#endif +-#ifdef INCLUDE_pnm +- load_one_builtin_module (pnm); +-#endif +-#ifdef INCLUDE_ras +- load_one_builtin_module (ras); +-#endif +-#ifdef INCLUDE_tiff +- load_one_builtin_module (tiff); +-#endif +-#ifdef INCLUDE_xpm +- load_one_builtin_module (xpm); +-#endif +-#ifdef INCLUDE_xbm +- load_one_builtin_module (xbm); +-#endif +-#ifdef INCLUDE_tga +- load_one_builtin_module (tga); +-#endif +-#ifdef INCLUDE_pcx +- load_one_builtin_module (pcx); +-#endif +-#ifdef INCLUDE_icns +- load_one_builtin_module (icns); +-#endif +-#ifdef INCLUDE_jasper +- load_one_builtin_module (jasper); +-#endif +-#ifdef INCLUDE_gdiplus +- /* We don't bother having the GDI+ loaders individually selectable +- * for building in or not. +- */ +- load_one_builtin_module (ico); +- load_one_builtin_module (wmf); +- load_one_builtin_module (emf); +- load_one_builtin_module (bmp); +- load_one_builtin_module (gif); +- load_one_builtin_module (jpeg); +- load_one_builtin_module (tiff); +-#endif +-#ifdef INCLUDE_gdip_png +- /* Except the gdip-png loader which normally isn't built at all even */ +- load_one_builtin_module (png); +-#endif +- +-#undef load_one_builtin_module +- +-#ifdef USE_GMODULE +- channel = g_io_channel_new_file (filename, "r", &error); +- if (!channel) { +- /* Don't bother warning if we have some built-in loaders */ +- if (file_formats == NULL) +- g_warning ("Cannot open pixbuf loader module file '%s': %s", +- filename, error->message); +- g_string_free (tmp_buf, TRUE); +- g_free (filename); +- return; +- } + + while (!have_error && g_io_channel_read_line (channel, &line_buf, NULL, &term, NULL) == G_IO_STATUS_NORMAL) { + const char *p; +@@ -563,8 +544,156 @@ + g_free (line_buf); + } + g_string_free (tmp_buf, TRUE); +- g_io_channel_unref (channel); +- g_free (filename); ++#endif /* USE_GMODULE */ ++} ++ ++ ++static void ++gdk_pixbuf_io_init (void) ++{ ++#ifdef USE_GMODULE ++ GIOChannel *channel; ++ gchar *gdkpixbuf_module_file_str = gdk_pixbuf_get_module_file (); ++ gchar *list_str; ++ char **files; ++ GError *error = NULL; ++ int n; ++#endif ++ GdkPixbufModule *builtin_module = NULL; ++ ++#define load_one_builtin_module(format) \ ++ builtin_module = g_new0 (GdkPixbufModule, 1); \ ++ builtin_module->module_name = #format; \ ++ if (gdk_pixbuf_load_module_unlocked (builtin_module, NULL)) \ ++ file_formats = g_slist_prepend (file_formats, builtin_module);\ ++ else \ ++ g_free (builtin_module) ++ ++#ifdef INCLUDE_ani ++ load_one_builtin_module (ani); ++#endif ++#ifdef INCLUDE_png ++ load_one_builtin_module (png); ++#endif ++#ifdef INCLUDE_bmp ++ load_one_builtin_module (bmp); ++#endif ++#ifdef INCLUDE_wbmp ++ load_one_builtin_module (wbmp); ++#endif ++#ifdef INCLUDE_gif ++ load_one_builtin_module (gif); ++#endif ++#ifdef INCLUDE_ico ++ load_one_builtin_module (ico); ++#endif ++#ifdef INCLUDE_jpeg ++ load_one_builtin_module (jpeg); ++#endif ++#ifdef INCLUDE_pnm ++ load_one_builtin_module (pnm); ++#endif ++#ifdef INCLUDE_ras ++ load_one_builtin_module (ras); ++#endif ++#ifdef INCLUDE_tiff ++ load_one_builtin_module (tiff); ++#endif ++#ifdef INCLUDE_xpm ++ load_one_builtin_module (xpm); ++#endif ++#ifdef INCLUDE_xbm ++ load_one_builtin_module (xbm); ++#endif ++#ifdef INCLUDE_tga ++ load_one_builtin_module (tga); ++#endif ++#ifdef INCLUDE_pcx ++ load_one_builtin_module (pcx); ++#endif ++#ifdef INCLUDE_icns ++ load_one_builtin_module (icns); ++#endif ++#ifdef INCLUDE_jasper ++ load_one_builtin_module (jasper); ++#endif ++#ifdef INCLUDE_gdiplus ++ /* We don't bother having the GDI+ loaders individually selectable ++ * for building in or not. ++ */ ++ load_one_builtin_module (ico); ++ load_one_builtin_module (wmf); ++ load_one_builtin_module (emf); ++ load_one_builtin_module (bmp); ++ load_one_builtin_module (gif); ++ load_one_builtin_module (jpeg); ++ load_one_builtin_module (tiff); ++#endif ++#ifdef INCLUDE_gdip_png ++ /* Except the gdip-png loader which normally isn't built at all even */ ++ load_one_builtin_module (png); ++#endif ++ ++#undef load_one_builtin_module ++ ++#ifdef USE_GMODULE ++ list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, ++ gdkpixbuf_module_file_str, ++ PIXBUF_FILES_LIBDIR, ++ NULL); ++ ++ files = _ugly_copy_of_pango_split_file_list (list_str); ++ ++ n = 0; ++ while (files[n]) ++ n++; ++ ++ while (n-- > 0) { ++ GDir *dir = g_dir_open (files[n], 0, NULL); ++ if (dir) { ++ const char *dent; ++ ++ while ((dent = g_dir_read_name (dir))) { ++ int len = strlen (dent); ++ if (len > LOADERFILEEXT_LEN && strcmp (dent + len - LOADERFILEEXT_LEN, LOADERFILEEXT) == 0) { ++ gchar *pathname = g_build_filename (files[n], dent, NULL); ++ channel = g_io_channel_new_file (pathname, "r", &error); ++ if (!channel) { ++ /* we don't care about issuing a warning ++ * g_warning ("Cannot open pixbuf loader module file '%s': %s", ++ * pathname, ++ * error->message); ++ */ ++ g_error_free (error); ++ error = NULL; ++ } else { ++ process_module_file (pathname, channel); ++ g_io_channel_unref (channel); ++ } ++ g_free (pathname); ++ } ++ } ++ g_dir_close (dir); ++ } else { ++ channel = g_io_channel_new_file (files[n], "r", &error); ++ if (!channel) { ++ /* we don't care about issuing a warning ++ * g_warning ("Cannot open pixbuf loader module file '%s': %s", ++ * files[n], ++ * error->message); ++ */ ++ g_error_free (error); ++ error = NULL; ++ } else { ++ process_module_file (files[n], channel); ++ g_io_channel_unref (channel); ++ } ++ } ++ } ++ ++ g_strfreev (files); ++ g_free (list_str); ++ g_free (gdkpixbuf_module_file_str); + #endif + } + --- gtk+2.0-2.17.10.orig/debian/patches/022_module-files-append-compat-module-files-d.patch +++ gtk+2.0-2.17.10/debian/patches/022_module-files-append-compat-module-files-d.patch @@ -0,0 +1,108 @@ +Index: gtk+-2.17.9/gtk/gtkimmodule.c +=================================================================== +--- gtk+-2.17.9.orig/gtk/gtkimmodule.c 2009-08-27 16:22:03.000000000 +1000 ++++ gtk+-2.17.9/gtk/gtkimmodule.c 2009-08-27 16:22:08.000000000 +1000 +@@ -29,6 +29,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#include <unistd.h> + + #include <glib/gstdio.h> + #include <gmodule.h> +@@ -489,10 +490,32 @@ + GTK_BINARY_VERSION, + "immodule-files.d", + NULL); ++ ++#if defined(__linux__) && defined (__i386__) ++ gchar *compat_im_module_files_d_str = g_build_filename ("/usr/lib32/gtk-2.0", ++ GTK_BINARY_VERSION, ++ "immodule-files.d", ++ NULL); ++#elif defined(__linux__) && ( defined (__x86_64__) || defined(__ia64__) ) ++ gchar *compat_im_module_files_d_str = g_build_filename ("/usr/lib64/gtk-2.0", ++ GTK_BINARY_VERSION, ++ "immodule-files.d", ++ NULL); ++#endif + FILE *file; + gchar *list_str; + char **files; + int n; ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ /* prefer compat_im_module_files_d_str over im_module_files_d_str on the ++ * above arches if it's usable */ ++ if (! g_access(compat_im_module_files_d_str, R_OK|X_OK)) ++ list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, ++ compat_im_module_files_d_str, ++ im_module_file_str, ++ NULL); ++ else /* continued below */ ++#endif + + list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, + im_module_files_d_str, +@@ -544,6 +567,9 @@ + + g_strfreev (files); + g_free (list_str); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ g_free (compat_im_module_files_d_str); ++#endif + g_free (im_module_files_d_str); + g_free (im_module_file_str); + } +Index: gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c +=================================================================== +--- gtk+-2.17.9.orig/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-27 16:22:03.000000000 +1000 ++++ gtk+-2.17.9/gdk-pixbuf/gdk-pixbuf-io.c 2009-08-27 16:22:08.000000000 +1000 +@@ -554,6 +554,18 @@ + #ifdef USE_GMODULE + GIOChannel *channel; + gchar *gdkpixbuf_module_file_str = gdk_pixbuf_get_module_file (); ++ ++#if defined(__linux__) && defined (__i386__) ++ gchar *compat_gdkpixbuf_module_files_d_str = g_build_filename ("/usr/lib32/gtk-2.0", ++ GTK_BINARY_VERSION, ++ "loader-files.d", ++ NULL); ++#elif defined(__linux__) && ( defined (__x86_64__) || defined(__ia64__) ) ++ gchar *compat_gdkpixbuf_module_files_d_str = g_build_filename ("/usr/lib64/gtk-2.0", ++ GTK_BINARY_VERSION, ++ "loader-files.d", ++ NULL); ++#endif + gchar *list_str; + char **files; + GError *error = NULL; +@@ -637,6 +649,18 @@ + #undef load_one_builtin_module + + #ifdef USE_GMODULE ++ ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ /* prefer compat_gdkpixbuf_module_files_d_str over PIXBUF_FILES_LIBDIR ++ * on the above arches if it's usable */ ++ if (! g_access(compat_gdkpixbuf_module_files_d_str, R_OK|X_OK)) ++ list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, ++ gdkpixbuf_module_file_str, ++ compat_gdkpixbuf_module_files_d_str, ++ NULL); ++ else /* continued below */ ++#endif ++ + list_str = g_strjoin (G_SEARCHPATH_SEPARATOR_S, + gdkpixbuf_module_file_str, + PIXBUF_FILES_LIBDIR, +@@ -692,6 +716,10 @@ + } + + g_strfreev (files); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ ++ g_free (compat_gdkpixbuf_module_files_d_str); ++#endif + g_free (list_str); + g_free (gdkpixbuf_module_file_str); + #endif