diff -ur releases/passepartout-0.6/aclocal.m4 passepartout-0.6/aclocal.m4 --- releases/passepartout-0.6/aclocal.m4 2004-10-31 19:53:09.000000000 +0100 +++ passepartout-0.6/aclocal.m4 2007-03-03 23:44:38.000000000 +0100 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.7.9 -*- Autoconf -*- +# generated automatically by aclocal 1.9.6 -*- 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 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,332 +11,189 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. -# 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. - +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# +# Copyright © 2004 Scott James Remnant . +# # 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. - +# 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. - -# serial 10 - -AC_PREREQ([2.54]) - -# Autoconf 2.50 wants to disallow AM_ names. We explicitly allow -# the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl - -# 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 - -# 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]) +# 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. -# 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 +# 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 -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl +# 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]) + + +# _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 -# 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 +# _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_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 -]) -]) +# 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 + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +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.]) + +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 -# 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. + ifelse([$4], , [AC_MSG_ERROR(dnl +[Package requirements ($2) were not met: -# 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]) +$$1_PKG_ERRORS -# Copyright 2002 Free Software Foundation, Inc. +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT +])], + [$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. -# 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_TEXT -# 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. +To get pkg-config, see .])], + [$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 -# 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 +# Copyright (C) 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. # 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"]) +AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # 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. + [AM_AUTOMAKE_VERSION([1.9.6])]) -# serial 2 - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +# AM_AUX_DIR_EXPAND -*- Autoconf -*- -# _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])]) - -# -# Check to make sure that the build environment is sane. +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # - -# 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. +# 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 @@ -376,131 +233,55 @@ # 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], [ +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` ]) -# 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. +# AM_CONDITIONAL -*- Autoconf -*- -# 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. +# Copyright (C) 1997, 2000, 2001, 2003, 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. -# serial 1 +# serial 7 -# 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=. +# 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]) +AC_SUBST([$1_FALSE]) +if $2; then + $1_TRUE= + $1_FALSE='#' else - am__leading_dot=_ + $1_TRUE='#' + $1_FALSE= 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. +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])]) -# 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) 1999, 2000, 2001, 2002, 2003, 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. +# serial 8 # 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, @@ -509,7 +290,6 @@ # CC etc. in the Makefile, will ask for an AC_PROG_CC use... - # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. @@ -568,7 +348,9 @@ : > 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 @@ -596,9 +378,14 @@ 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 + # 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 @@ -632,8 +419,8 @@ # ------------ 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]) +[ --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='\' @@ -642,26 +429,16 @@ AC_SUBST([AMDEPBACKSLASH]) ]) -# Generate code to set up dependency tracking. -*- Autoconf -*- +# 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. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 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. -#serial 2 +#serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ @@ -680,27 +457,21 @@ 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"` + # 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 -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" | \ + 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 @@ -713,39 +484,189 @@ ])# _AM_OUTPUT_DEPENDENCY_COMMANDS -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. +# 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"]) +]) + +# 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. + +# serial 8 + +# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. +AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 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. + +# serial 12 + +# 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. + +# 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.58])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 +# 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 + +# 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]) + +# 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_PROG_INSTALL_SH +AM_PROG_INSTALL_STRIP +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 +]) +]) + + +# 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 (C) 2001, 2003, 2005 Free Software Foundation, Inc. # -# 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"]) -]) +# 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. -# Check to see how 'make' treats includes. -*- Autoconf -*- +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +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)]) -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# 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. -# 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. +# serial 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. +# 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])]) -# 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. +# Check to see how 'make' treats includes. -*- Autoconf -*- -# serial 2 +# Copyright (C) 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. + +# serial 3 # AM_MAKE_INCLUDE() # ----------------- @@ -789,131 +710,310 @@ rm -f confinc confmf ]) -# AM_CONDITIONAL -*- Autoconf -*- +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright 1997, 2000, 2001 Free Software Foundation, Inc. +# Copyright (C) 1997, 1999, 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. -# 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. +# serial 4 -# 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. +# 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)]) -# 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 +# 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 +]) -AC_PREREQ(2.52) +# Copyright (C) 2003, 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. -# 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='#' +# AM_PROG_MKDIR_P +# --------------- +# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. +# +# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories +# created by `make install' are always world readable, even if the +# installer happens to have an overly restrictive umask (e.g. 077). +# This was a mistake. There are at least two reasons why we must not +# use `-m 0755': +# - it causes special bits like SGID to be ignored, +# - it may be too restrictive (some setups expect 775 directories). +# +# Do not use -m 0755 and let people choose whatever they expect by +# setting umask. +# +# We cannot accept any implementation of `mkdir' that recognizes `-p'. +# Some implementations (such as Solaris 8's) are not thread-safe: if a +# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' +# concurrently, both version can detect that a/ is missing, but only +# one can create it and the other will error out. Consequently we +# restrict ourselves to GNU make (using the --version option ensures +# this.) +AC_DEFUN([AM_PROG_MKDIR_P], +[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' else - $1_TRUE='#' - $1_FALSE= + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi 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])]) +AC_SUBST([mkdir_p])]) -# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*- +# Helper functions for option handling. -*- Autoconf -*- -# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc. +# Copyright (C) 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. -# 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. +# serial 3 -# 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. +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) -# 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. +# _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)]) -AC_PREREQ([2.52]) +# _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)])]) -# serial 6 +# _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])]) -# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. -AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) +# Check to make sure that the build environment is sane. -*- Autoconf -*- +# 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. -dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) -dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page -dnl also defines GSTUFF_PKG_ERRORS on error -AC_DEFUN(PKG_CHECK_MODULES, [ - succeeded=no +# serial 4 - if test -z "$PKG_CONFIG"; then - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - fi +# 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 test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - AC_MSG_CHECKING(for $2) - - if $PKG_CONFIG --exists "$2" ; then - AC_MSG_RESULT(yes) - succeeded=yes - - AC_MSG_CHECKING($1_CFLAGS) - $1_CFLAGS=`$PKG_CONFIG --cflags "$2"` - AC_MSG_RESULT($$1_CFLAGS) - - AC_MSG_CHECKING($1_LIBS) - $1_LIBS=`$PKG_CONFIG --libs "$2"` - AC_MSG_RESULT($$1_LIBS) - else - $1_CFLAGS="" - $1_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` - ifelse([$4], ,echo $$1_PKG_ERRORS,) - fi + # 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 - AC_SUBST($1_CFLAGS) - AC_SUBST($1_LIBS) - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - 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)]) - if test $succeeded = yes; then - ifelse([$3], , :, [$3]) - else - ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4]) - fi -]) +# 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. + +# 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="\${SHELL} \$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Check how to create a tarball. -*- Autoconf -*- + +# 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. + +# serial 2 + +# _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 + # 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 + + # 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 /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir +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 Endast i passepartout-0.6/: autom4te.cache diff -ur releases/passepartout-0.6/configure passepartout-0.6/configure --- releases/passepartout-0.6/configure 2004-10-31 19:54:49.000000000 +0100 +++ passepartout-0.6/configure 2007-03-04 00:06:27.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for Passepartout 0.6. +# Generated by GNU Autoconf 2.59 for Passepartout 0.6-patch1. # # Report bugs to . # @@ -269,8 +269,8 @@ # Identity of this package. PACKAGE_NAME='Passepartout' PACKAGE_TARNAME='passepartout' -PACKAGE_VERSION='0.6' -PACKAGE_STRING='Passepartout 0.6' +PACKAGE_VERSION='0.6-patch1' +PACKAGE_STRING='Passepartout 0.6-patch1' PACKAGE_BUGREPORT='passepartout@stacken.kth.se' ac_unique_file="src/xml2ps/blockcontainer.cc" @@ -311,7 +311,7 @@ # include #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB APPLY_RPATH XMLPP_LIBS XMLPP_CFLAGS PKG_CONFIG XML2_LIBS XML2_CFLAGS GTKMM_LIBS GTKMM_CFLAGS GNOMECANVAS_LIBS GNOMECANVAS_CFLAGS GTHREAD_LIBS GTHREAD_CFLAGS SIGC_LIBS SIGC_CFLAGS FREETYPE_LIBS FREETYPE_CFLAGS CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE docdir xmldir CPP EGREP LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB APPLY_RPATH XMLPP_LIBS XMLPP_CFLAGS PKG_CONFIG ac_pt_PKG_CONFIG XML2_LIBS XML2_CFLAGS GTKMM_LIBS GTKMM_CFLAGS GNOMECANVAS_LIBS GNOMECANVAS_CFLAGS GTHREAD_LIBS GTHREAD_CFLAGS SIGC_LIBS SIGC_CFLAGS FREETYPE_LIBS FREETYPE_CFLAGS CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE docdir xmldir CPP EGREP LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -772,6 +772,66 @@ ac_env_APPLY_RPATH_value=$APPLY_RPATH ac_cv_env_APPLY_RPATH_set=${APPLY_RPATH+set} ac_cv_env_APPLY_RPATH_value=$APPLY_RPATH +ac_env_PKG_CONFIG_set=${PKG_CONFIG+set} +ac_env_PKG_CONFIG_value=$PKG_CONFIG +ac_cv_env_PKG_CONFIG_set=${PKG_CONFIG+set} +ac_cv_env_PKG_CONFIG_value=$PKG_CONFIG +ac_env_XMLPP_CFLAGS_set=${XMLPP_CFLAGS+set} +ac_env_XMLPP_CFLAGS_value=$XMLPP_CFLAGS +ac_cv_env_XMLPP_CFLAGS_set=${XMLPP_CFLAGS+set} +ac_cv_env_XMLPP_CFLAGS_value=$XMLPP_CFLAGS +ac_env_XMLPP_LIBS_set=${XMLPP_LIBS+set} +ac_env_XMLPP_LIBS_value=$XMLPP_LIBS +ac_cv_env_XMLPP_LIBS_set=${XMLPP_LIBS+set} +ac_cv_env_XMLPP_LIBS_value=$XMLPP_LIBS +ac_env_XML2_CFLAGS_set=${XML2_CFLAGS+set} +ac_env_XML2_CFLAGS_value=$XML2_CFLAGS +ac_cv_env_XML2_CFLAGS_set=${XML2_CFLAGS+set} +ac_cv_env_XML2_CFLAGS_value=$XML2_CFLAGS +ac_env_XML2_LIBS_set=${XML2_LIBS+set} +ac_env_XML2_LIBS_value=$XML2_LIBS +ac_cv_env_XML2_LIBS_set=${XML2_LIBS+set} +ac_cv_env_XML2_LIBS_value=$XML2_LIBS +ac_env_GTKMM_CFLAGS_set=${GTKMM_CFLAGS+set} +ac_env_GTKMM_CFLAGS_value=$GTKMM_CFLAGS +ac_cv_env_GTKMM_CFLAGS_set=${GTKMM_CFLAGS+set} +ac_cv_env_GTKMM_CFLAGS_value=$GTKMM_CFLAGS +ac_env_GTKMM_LIBS_set=${GTKMM_LIBS+set} +ac_env_GTKMM_LIBS_value=$GTKMM_LIBS +ac_cv_env_GTKMM_LIBS_set=${GTKMM_LIBS+set} +ac_cv_env_GTKMM_LIBS_value=$GTKMM_LIBS +ac_env_GNOMECANVAS_CFLAGS_set=${GNOMECANVAS_CFLAGS+set} +ac_env_GNOMECANVAS_CFLAGS_value=$GNOMECANVAS_CFLAGS +ac_cv_env_GNOMECANVAS_CFLAGS_set=${GNOMECANVAS_CFLAGS+set} +ac_cv_env_GNOMECANVAS_CFLAGS_value=$GNOMECANVAS_CFLAGS +ac_env_GNOMECANVAS_LIBS_set=${GNOMECANVAS_LIBS+set} +ac_env_GNOMECANVAS_LIBS_value=$GNOMECANVAS_LIBS +ac_cv_env_GNOMECANVAS_LIBS_set=${GNOMECANVAS_LIBS+set} +ac_cv_env_GNOMECANVAS_LIBS_value=$GNOMECANVAS_LIBS +ac_env_GTHREAD_CFLAGS_set=${GTHREAD_CFLAGS+set} +ac_env_GTHREAD_CFLAGS_value=$GTHREAD_CFLAGS +ac_cv_env_GTHREAD_CFLAGS_set=${GTHREAD_CFLAGS+set} +ac_cv_env_GTHREAD_CFLAGS_value=$GTHREAD_CFLAGS +ac_env_GTHREAD_LIBS_set=${GTHREAD_LIBS+set} +ac_env_GTHREAD_LIBS_value=$GTHREAD_LIBS +ac_cv_env_GTHREAD_LIBS_set=${GTHREAD_LIBS+set} +ac_cv_env_GTHREAD_LIBS_value=$GTHREAD_LIBS +ac_env_SIGC_CFLAGS_set=${SIGC_CFLAGS+set} +ac_env_SIGC_CFLAGS_value=$SIGC_CFLAGS +ac_cv_env_SIGC_CFLAGS_set=${SIGC_CFLAGS+set} +ac_cv_env_SIGC_CFLAGS_value=$SIGC_CFLAGS +ac_env_SIGC_LIBS_set=${SIGC_LIBS+set} +ac_env_SIGC_LIBS_value=$SIGC_LIBS +ac_cv_env_SIGC_LIBS_set=${SIGC_LIBS+set} +ac_cv_env_SIGC_LIBS_value=$SIGC_LIBS +ac_env_FREETYPE_CFLAGS_set=${FREETYPE_CFLAGS+set} +ac_env_FREETYPE_CFLAGS_value=$FREETYPE_CFLAGS +ac_cv_env_FREETYPE_CFLAGS_set=${FREETYPE_CFLAGS+set} +ac_cv_env_FREETYPE_CFLAGS_value=$FREETYPE_CFLAGS +ac_env_FREETYPE_LIBS_set=${FREETYPE_LIBS+set} +ac_env_FREETYPE_LIBS_value=$FREETYPE_LIBS +ac_cv_env_FREETYPE_LIBS_set=${FREETYPE_LIBS+set} +ac_cv_env_FREETYPE_LIBS_value=$FREETYPE_LIBS ac_env_CC_set=${CC+set} ac_env_CC_value=$CC ac_cv_env_CC_set=${CC+set} @@ -792,7 +852,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Passepartout 0.6 to adapt to many kinds of systems. +\`configure' configures Passepartout 0.6-patch1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -854,15 +914,15 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Passepartout 0.6:";; + short | recursive ) echo "Configuration of Passepartout 0.6-patch1:";; esac cat <<\_ACEOF Optional Features: --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 + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors Some influential environment variables: CXX C++ compiler command @@ -872,6 +932,29 @@ CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory APPLY_RPATH ="true" : specify -rpath options to the linker + PKG_CONFIG path to pkg-config utility + XMLPP_CFLAGS + C compiler flags for XMLPP, overriding pkg-config + XMLPP_LIBS linker flags for XMLPP, overriding pkg-config + XML2_CFLAGS C compiler flags for XML2, overriding pkg-config + XML2_LIBS linker flags for XML2, overriding pkg-config + GTKMM_CFLAGS + C compiler flags for GTKMM, overriding pkg-config + GTKMM_LIBS linker flags for GTKMM, overriding pkg-config + GNOMECANVAS_CFLAGS + C compiler flags for GNOMECANVAS, overriding pkg-config + GNOMECANVAS_LIBS + linker flags for GNOMECANVAS, overriding pkg-config + GTHREAD_CFLAGS + C compiler flags for GTHREAD, overriding pkg-config + GTHREAD_LIBS + linker flags for GTHREAD, overriding pkg-config + SIGC_CFLAGS C compiler flags for SIGC, overriding pkg-config + SIGC_LIBS linker flags for SIGC, overriding pkg-config + FREETYPE_CFLAGS + C compiler flags for FREETYPE, overriding pkg-config + FREETYPE_LIBS + linker flags for FREETYPE, overriding pkg-config CC C compiler command CFLAGS C compiler flags CPP C preprocessor @@ -968,14 +1051,14 @@ else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi - cd $ac_popdir + cd "$ac_popdir" done fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -Passepartout configure 0.6 +Passepartout configure 0.6-patch1 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -989,7 +1072,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Passepartout $as_me 0.6, which was +It was created by Passepartout $as_me 0.6-patch1, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1327,7 +1410,7 @@ -am__api_version="1.7" +am__api_version="1.9" ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then @@ -1490,7 +1573,6 @@ program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm conftest.sed - # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` @@ -1504,6 +1586,39 @@ echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi +if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' +else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi +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. @@ -1582,7 +1697,7 @@ fi rmdir .tst 2>/dev/null - # test to see if srcdir already configured +# test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 @@ -1602,7 +1717,7 @@ # Define the identity of the package. PACKAGE='passepartout' - VERSION='0.6' + VERSION='0.6-patch1' cat >>confdefs.h <<_ACEOF @@ -1630,9 +1745,6 @@ 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 @@ -1725,6 +1837,13 @@ # 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 -' + + @@ -1736,7 +1855,7 @@ # AC_CONFIG_HEADER(src/defines.h) # Define global compiler flags: -MY_CXXFLAGS="-Wall -Wold-style-casts" +MY_CXXFLAGS="-Wall" # -Wold-style-cast CXXFLAGS="$CXXFLAGS $MY_CXXFLAGS" # Checks for programs. @@ -2086,8 +2205,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -2145,8 +2263,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -2217,8 +2334,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -2262,8 +2378,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -2402,7 +2517,9 @@ : > 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 @@ -2430,9 +2547,14 @@ 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 + # 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 @@ -2557,11 +2679,11 @@ - succeeded=no - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then @@ -2586,7 +2708,6 @@ done done - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi @@ -2600,80 +2721,19 @@ echo "${ECHO_T}no" >&6 fi - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libxml++-1.0" >&5 -echo $ECHO_N "checking for libxml++-1.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "libxml++-1.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking XMLPP_CFLAGS" >&5 -echo $ECHO_N "checking XMLPP_CFLAGS... $ECHO_C" >&6 - XMLPP_CFLAGS=`$PKG_CONFIG --cflags "libxml++-1.0"` - echo "$as_me:$LINENO: result: $XMLPP_CFLAGS" >&5 -echo "${ECHO_T}$XMLPP_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking XMLPP_LIBS" >&5 -echo $ECHO_N "checking XMLPP_LIBS... $ECHO_C" >&6 - XMLPP_LIBS=`$PKG_CONFIG --libs "libxml++-1.0"` - echo "$as_me:$LINENO: result: $XMLPP_LIBS" >&5 -echo "${ECHO_T}$XMLPP_LIBS" >&6 - else - XMLPP_CFLAGS="" - XMLPP_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - XMLPP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libxml++-1.0"` - echo $XMLPP_PKG_ERRORS - fi - - - - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi - - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (libxml++-1.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (libxml++-1.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} - { (exit 1); exit 1; }; } - fi - -if test "$APPLY_RPATH" != ""; then - XMLPP_LIBS=`echo "$XMLPP_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi - - - - - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in + case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + 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 @@ -2683,185 +2743,391 @@ test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +if test -n "$ac_pt_PKG_CONFIG"; then + echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libxml-2.0" >&5 -echo $ECHO_N "checking for libxml-2.0... $ECHO_C" >&6 + PKG_CONFIG=$ac_pt_PKG_CONFIG +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi - if $PKG_CONFIG --exists "libxml-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 + echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 +echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 - succeeded=yes + else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 + PKG_CONFIG="" + fi + +fi + +pkg_failed=no +echo "$as_me:$LINENO: checking for XMLPP" >&5 +echo $ECHO_N "checking for XMLPP... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$XMLPP_CFLAGS"; then + pkg_cv_XMLPP_CFLAGS="$XMLPP_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libxml++-1.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libxml++-1.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_XMLPP_CFLAGS=`$PKG_CONFIG --cflags "libxml++-1.0" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$XMLPP_LIBS"; then + pkg_cv_XMLPP_LIBS="$XMLPP_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libxml++-1.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libxml++-1.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_XMLPP_LIBS=`$PKG_CONFIG --libs "libxml++-1.0" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + - echo "$as_me:$LINENO: checking XML2_CFLAGS" >&5 -echo $ECHO_N "checking XML2_CFLAGS... $ECHO_C" >&6 - XML2_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0"` - echo "$as_me:$LINENO: result: $XML2_CFLAGS" >&5 -echo "${ECHO_T}$XML2_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking XML2_LIBS" >&5 -echo $ECHO_N "checking XML2_LIBS... $ECHO_C" >&6 - XML2_LIBS=`$PKG_CONFIG --libs "libxml-2.0"` - echo "$as_me:$LINENO: result: $XML2_LIBS" >&5 -echo "${ECHO_T}$XML2_LIBS" >&6 +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 + XMLPP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libxml++-1.0"` else - XML2_CFLAGS="" - XML2_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - XML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libxml-2.0"` - echo $XML2_PKG_ERRORS + XMLPP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libxml++-1.0"` fi + # Put the nasty error message in config.log where it belongs + echo "$XMLPP_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (libxml++-1.0) were not met: +$XMLPP_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (libxml-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (libxml-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables XMLPP_CFLAGS +and XMLPP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (libxml++-1.0) were not met: + +$XMLPP_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 XMLPP_CFLAGS +and XMLPP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables XMLPP_CFLAGS +and XMLPP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables XMLPP_CFLAGS +and XMLPP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + XMLPP_CFLAGS=$pkg_cv_XMLPP_CFLAGS + XMLPP_LIBS=$pkg_cv_XMLPP_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then - XML2_LIBS=`echo "$XML2_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` + XMLPP_LIBS=`echo "$XMLPP_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi - succeeded=no +pkg_failed=no +echo "$as_me:$LINENO: checking for XML2" >&5 +echo $ECHO_N "checking for XML2... $ECHO_C" >&6 - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test -n "$PKG_CONFIG"; then + if test -n "$XML2_CFLAGS"; then + pkg_cv_XML2_CFLAGS="$XML2_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libxml-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_XML2_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0" 2>/dev/null` 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 $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$XML2_LIBS"; then + pkg_cv_XML2_LIBS="$XML2_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libxml-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_XML2_LIBS=`$PKG_CONFIG --libs "libxml-2.0" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + + +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 -PKG_CONFIG=$ac_cv_path_PKG_CONFIG + if test $_pkg_short_errors_supported = yes; then + XML2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libxml-2.0"` + else + XML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libxml-2.0"` + fi + # Put the nasty error message in config.log where it belongs + echo "$XML2_PKG_ERRORS" >&5 + + { { echo "$as_me:$LINENO: error: Package requirements (libxml-2.0) were not met: + +$XML2_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 XML2_CFLAGS +and XML2_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (libxml-2.0) were not met: + +$XML2_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 XML2_CFLAGS +and XML2_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables XML2_CFLAGS +and XML2_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables XML2_CFLAGS +and XML2_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + XML2_CFLAGS=$pkg_cv_XML2_CFLAGS + XML2_LIBS=$pkg_cv_XML2_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi +if test "$APPLY_RPATH" != ""; then + XML2_LIBS=`echo "$XML2_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` +fi + + + + +pkg_failed=no +echo "$as_me:$LINENO: checking for GTKMM" >&5 +echo $ECHO_N "checking for GTKMM... $ECHO_C" >&6 if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 + if test -n "$GTKMM_CFLAGS"; then + pkg_cv_GTKMM_CFLAGS="$GTKMM_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtkmm-2.4\"") >&5 + ($PKG_CONFIG --exists --print-errors "gtkmm-2.4") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GTKMM_CFLAGS=`$PKG_CONFIG --cflags "gtkmm-2.4" 2>/dev/null` else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$GTKMM_LIBS"; then + pkg_cv_GTKMM_LIBS="$GTKMM_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtkmm-2.4\"") >&5 + ($PKG_CONFIG --exists --print-errors "gtkmm-2.4") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GTKMM_LIBS=`$PKG_CONFIG --libs "gtkmm-2.4" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi - fi - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for gtkmm-2.0" >&5 -echo $ECHO_N "checking for gtkmm-2.0... $ECHO_C" >&6 - if $PKG_CONFIG --exists "gtkmm-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes +if test $pkg_failed = yes; then - echo "$as_me:$LINENO: checking GTKMM_CFLAGS" >&5 -echo $ECHO_N "checking GTKMM_CFLAGS... $ECHO_C" >&6 - GTKMM_CFLAGS=`$PKG_CONFIG --cflags "gtkmm-2.0"` - echo "$as_me:$LINENO: result: $GTKMM_CFLAGS" >&5 -echo "${ECHO_T}$GTKMM_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GTKMM_LIBS" >&5 -echo $ECHO_N "checking GTKMM_LIBS... $ECHO_C" >&6 - GTKMM_LIBS=`$PKG_CONFIG --libs "gtkmm-2.0"` - echo "$as_me:$LINENO: result: $GTKMM_LIBS" >&5 -echo "${ECHO_T}$GTKMM_LIBS" >&6 +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 + GTKMM_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtkmm-2.4"` else - GTKMM_CFLAGS="" - GTKMM_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GTKMM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtkmm-2.0"` - echo $GTKMM_PKG_ERRORS + GTKMM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtkmm-2.4"` fi + # Put the nasty error message in config.log where it belongs + echo "$GTKMM_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (gtkmm-2.4) were not met: +$GTKMM_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (gtkmm-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (gtkmm-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables GTKMM_CFLAGS +and GTKMM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (gtkmm-2.4) were not met: + +$GTKMM_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 GTKMM_CFLAGS +and GTKMM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTKMM_CFLAGS +and GTKMM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTKMM_CFLAGS +and GTKMM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + GTKMM_CFLAGS=$pkg_cv_GTKMM_CFLAGS + GTKMM_LIBS=$pkg_cv_GTKMM_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then GTKMM_LIBS=`echo "$GTKMM_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi @@ -2869,103 +3135,116 @@ - succeeded=no +pkg_failed=no +echo "$as_me:$LINENO: checking for GNOMECANVAS" >&5 +echo $ECHO_N "checking for GNOMECANVAS... $ECHO_C" >&6 - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test -n "$PKG_CONFIG"; then + if test -n "$GNOMECANVAS_CFLAGS"; then + pkg_cv_GNOMECANVAS_CFLAGS="$GNOMECANVAS_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgnomecanvasmm-2.6\"") >&5 + ($PKG_CONFIG --exists --print-errors "libgnomecanvasmm-2.6") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GNOMECANVAS_CFLAGS=`$PKG_CONFIG --cflags "libgnomecanvasmm-2.6" 2>/dev/null` 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 $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 + if test -n "$GNOMECANVAS_LIBS"; then + pkg_cv_GNOMECANVAS_LIBS="$GNOMECANVAS_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgnomecanvasmm-2.6\"") >&5 + ($PKG_CONFIG --exists --print-errors "libgnomecanvasmm-2.6") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GNOMECANVAS_LIBS=`$PKG_CONFIG --libs "libgnomecanvasmm-2.6" 2>/dev/null` else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi - fi - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libgnomecanvasmm-2.0" >&5 -echo $ECHO_N "checking for libgnomecanvasmm-2.0... $ECHO_C" >&6 - if $PKG_CONFIG --exists "libgnomecanvasmm-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes +if test $pkg_failed = yes; then - echo "$as_me:$LINENO: checking GNOMECANVAS_CFLAGS" >&5 -echo $ECHO_N "checking GNOMECANVAS_CFLAGS... $ECHO_C" >&6 - GNOMECANVAS_CFLAGS=`$PKG_CONFIG --cflags "libgnomecanvasmm-2.0"` - echo "$as_me:$LINENO: result: $GNOMECANVAS_CFLAGS" >&5 -echo "${ECHO_T}$GNOMECANVAS_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GNOMECANVAS_LIBS" >&5 -echo $ECHO_N "checking GNOMECANVAS_LIBS... $ECHO_C" >&6 - GNOMECANVAS_LIBS=`$PKG_CONFIG --libs "libgnomecanvasmm-2.0"` - echo "$as_me:$LINENO: result: $GNOMECANVAS_LIBS" >&5 -echo "${ECHO_T}$GNOMECANVAS_LIBS" >&6 +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 + GNOMECANVAS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libgnomecanvasmm-2.6"` else - GNOMECANVAS_CFLAGS="" - GNOMECANVAS_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GNOMECANVAS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgnomecanvasmm-2.0"` - echo $GNOMECANVAS_PKG_ERRORS + GNOMECANVAS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgnomecanvasmm-2.6"` fi + # Put the nasty error message in config.log where it belongs + echo "$GNOMECANVAS_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (libgnomecanvasmm-2.6) were not met: +$GNOMECANVAS_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (libgnomecanvasmm-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (libgnomecanvasmm-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables GNOMECANVAS_CFLAGS +and GNOMECANVAS_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (libgnomecanvasmm-2.6) were not met: + +$GNOMECANVAS_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 GNOMECANVAS_CFLAGS +and GNOMECANVAS_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GNOMECANVAS_CFLAGS +and GNOMECANVAS_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GNOMECANVAS_CFLAGS +and GNOMECANVAS_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + GNOMECANVAS_CFLAGS=$pkg_cv_GNOMECANVAS_CFLAGS + GNOMECANVAS_LIBS=$pkg_cv_GNOMECANVAS_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then XMLPP_LIBS=`echo "$XMLPP_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi @@ -2973,207 +3252,234 @@ - succeeded=no +pkg_failed=no +echo "$as_me:$LINENO: checking for GTHREAD" >&5 +echo $ECHO_N "checking for GTHREAD... $ECHO_C" >&6 - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test -n "$PKG_CONFIG"; then + if test -n "$GTHREAD_CFLAGS"; then + pkg_cv_GTHREAD_CFLAGS="$GTHREAD_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0" 2>/dev/null` 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 $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 + if test -n "$GTHREAD_LIBS"; then + pkg_cv_GTHREAD_LIBS="$GTHREAD_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GTHREAD_LIBS=`$PKG_CONFIG --libs "gthread-2.0" 2>/dev/null` else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi - fi - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for gthread-2.0" >&5 -echo $ECHO_N "checking for gthread-2.0... $ECHO_C" >&6 - if $PKG_CONFIG --exists "gthread-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes +if test $pkg_failed = yes; then - echo "$as_me:$LINENO: checking GTHREAD_CFLAGS" >&5 -echo $ECHO_N "checking GTHREAD_CFLAGS... $ECHO_C" >&6 - GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0"` - echo "$as_me:$LINENO: result: $GTHREAD_CFLAGS" >&5 -echo "${ECHO_T}$GTHREAD_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GTHREAD_LIBS" >&5 -echo $ECHO_N "checking GTHREAD_LIBS... $ECHO_C" >&6 - GTHREAD_LIBS=`$PKG_CONFIG --libs "gthread-2.0"` - echo "$as_me:$LINENO: result: $GTHREAD_LIBS" >&5 -echo "${ECHO_T}$GTHREAD_LIBS" >&6 +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 + GTHREAD_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gthread-2.0"` else - GTHREAD_CFLAGS="" - GTHREAD_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GTHREAD_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gthread-2.0"` - echo $GTHREAD_PKG_ERRORS + GTHREAD_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gthread-2.0"` fi + # Put the nasty error message in config.log where it belongs + echo "$GTHREAD_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (gthread-2.0) were not met: +$GTHREAD_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (gthread-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (gthread-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables GTHREAD_CFLAGS +and GTHREAD_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (gthread-2.0) were not met: + +$GTHREAD_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 GTHREAD_CFLAGS +and GTHREAD_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTHREAD_CFLAGS +and GTHREAD_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTHREAD_CFLAGS +and GTHREAD_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + GTHREAD_CFLAGS=$pkg_cv_GTHREAD_CFLAGS + GTHREAD_LIBS=$pkg_cv_GTHREAD_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then GTHREAD_LIBS=`echo "$GTHREAD_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi +#PKG_CHECK_MODULES([SIGC], [sigc++-1.2]) - succeeded=no +pkg_failed=no +echo "$as_me:$LINENO: checking for SIGC" >&5 +echo $ECHO_N "checking for SIGC... $ECHO_C" >&6 - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test -n "$PKG_CONFIG"; then + if test -n "$SIGC_CFLAGS"; then + pkg_cv_SIGC_CFLAGS="$SIGC_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"sigc++-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "sigc++-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_SIGC_CFLAGS=`$PKG_CONFIG --cflags "sigc++-2.0" 2>/dev/null` 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 $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 + if test -n "$SIGC_LIBS"; then + pkg_cv_SIGC_LIBS="$SIGC_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"sigc++-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "sigc++-2.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_SIGC_LIBS=`$PKG_CONFIG --libs "sigc++-2.0" 2>/dev/null` else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi - fi - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for sigc++-1.2" >&5 -echo $ECHO_N "checking for sigc++-1.2... $ECHO_C" >&6 - if $PKG_CONFIG --exists "sigc++-1.2" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes +if test $pkg_failed = yes; then - echo "$as_me:$LINENO: checking SIGC_CFLAGS" >&5 -echo $ECHO_N "checking SIGC_CFLAGS... $ECHO_C" >&6 - SIGC_CFLAGS=`$PKG_CONFIG --cflags "sigc++-1.2"` - echo "$as_me:$LINENO: result: $SIGC_CFLAGS" >&5 -echo "${ECHO_T}$SIGC_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking SIGC_LIBS" >&5 -echo $ECHO_N "checking SIGC_LIBS... $ECHO_C" >&6 - SIGC_LIBS=`$PKG_CONFIG --libs "sigc++-1.2"` - echo "$as_me:$LINENO: result: $SIGC_LIBS" >&5 -echo "${ECHO_T}$SIGC_LIBS" >&6 +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 + SIGC_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "sigc++-2.0"` else - SIGC_CFLAGS="" - SIGC_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - SIGC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "sigc++-1.2"` - echo $SIGC_PKG_ERRORS + SIGC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "sigc++-2.0"` fi + # Put the nasty error message in config.log where it belongs + echo "$SIGC_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (sigc++-2.0) were not met: +$SIGC_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (sigc++-1.2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (sigc++-1.2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables SIGC_CFLAGS +and SIGC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (sigc++-2.0) were not met: + +$SIGC_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 SIGC_CFLAGS +and SIGC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables SIGC_CFLAGS +and SIGC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables SIGC_CFLAGS +and SIGC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + SIGC_CFLAGS=$pkg_cv_SIGC_CFLAGS + SIGC_LIBS=$pkg_cv_SIGC_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then SIGC_LIBS=`echo "$SIGC_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi @@ -3181,103 +3487,116 @@ - succeeded=no +pkg_failed=no +echo "$as_me:$LINENO: checking for FREETYPE" >&5 +echo $ECHO_N "checking for FREETYPE... $ECHO_C" >&6 - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test -n "$PKG_CONFIG"; then + if test -n "$FREETYPE_CFLAGS"; then + pkg_cv_FREETYPE_CFLAGS="$FREETYPE_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"freetype2\"") >&5 + ($PKG_CONFIG --exists --print-errors "freetype2") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_FREETYPE_CFLAGS=`$PKG_CONFIG --cflags "freetype2" 2>/dev/null` 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 $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 + if test -n "$FREETYPE_LIBS"; then + pkg_cv_FREETYPE_LIBS="$FREETYPE_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"freetype2\"") >&5 + ($PKG_CONFIG --exists --print-errors "freetype2") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_FREETYPE_LIBS=`$PKG_CONFIG --libs "freetype2" 2>/dev/null` else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + pkg_failed=yes +fi + fi +else + pkg_failed=untried fi - fi - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for freetype2" >&5 -echo $ECHO_N "checking for freetype2... $ECHO_C" >&6 - if $PKG_CONFIG --exists "freetype2" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes +if test $pkg_failed = yes; then - echo "$as_me:$LINENO: checking FREETYPE_CFLAGS" >&5 -echo $ECHO_N "checking FREETYPE_CFLAGS... $ECHO_C" >&6 - FREETYPE_CFLAGS=`$PKG_CONFIG --cflags "freetype2"` - echo "$as_me:$LINENO: result: $FREETYPE_CFLAGS" >&5 -echo "${ECHO_T}$FREETYPE_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking FREETYPE_LIBS" >&5 -echo $ECHO_N "checking FREETYPE_LIBS... $ECHO_C" >&6 - FREETYPE_LIBS=`$PKG_CONFIG --libs "freetype2"` - echo "$as_me:$LINENO: result: $FREETYPE_LIBS" >&5 -echo "${ECHO_T}$FREETYPE_LIBS" >&6 +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 + FREETYPE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "freetype2"` else - FREETYPE_CFLAGS="" - FREETYPE_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - FREETYPE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "freetype2"` - echo $FREETYPE_PKG_ERRORS + FREETYPE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "freetype2"` fi + # Put the nasty error message in config.log where it belongs + echo "$FREETYPE_PKG_ERRORS" >&5 + { { echo "$as_me:$LINENO: error: Package requirements (freetype2) were not met: +$FREETYPE_PKG_ERRORS - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (freetype2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (freetype2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +Alternatively, you may set the environment variables FREETYPE_CFLAGS +and FREETYPE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (freetype2) were not met: + +$FREETYPE_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 FREETYPE_CFLAGS +and FREETYPE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } - fi +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables FREETYPE_CFLAGS +and FREETYPE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables FREETYPE_CFLAGS +and FREETYPE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + FREETYPE_CFLAGS=$pkg_cv_FREETYPE_CFLAGS + FREETYPE_LIBS=$pkg_cv_FREETYPE_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + : +fi if test "$APPLY_RPATH" != ""; then FREETYPE_LIBS=`echo "$FREETYPE_LIBS" | sed -e "s/-L\([^ ]*\)/& -Wl,-rpath,\1/g"` fi @@ -3650,8 +3969,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3709,8 +4027,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3826,8 +4143,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3881,8 +4197,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3927,8 +4242,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3972,8 +4286,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4053,7 +4366,9 @@ : > 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 @@ -4081,9 +4396,14 @@ 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 + # 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 @@ -4154,8 +4474,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4239,8 +4558,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4312,8 +4630,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4367,8 +4684,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4439,8 +4755,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4494,8 +4809,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4814,8 +5128,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4985,8 +5298,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5051,8 +5363,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5117,8 +5428,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5188,8 +5498,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5374,8 +5683,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5417,18 +5725,24 @@ ac_cv_func_fork_works=cross else cat >conftest.$ac_ext <<_ACEOF -/* By Ruediger Kuhlmann. */ - #include - #if HAVE_UNISTD_H - # include - #endif - /* Some systems only have a dummy stub for fork() */ - int main () - { - if (fork() < 0) - exit (1); - exit (0); - } +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* By Ruediger Kuhlmann. */ + if (fork() < 0) + exit (1); + exit (0); + + ; + return 0; +} _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 @@ -5855,8 +6169,7 @@ cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6274,7 +6587,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by Passepartout $as_me 0.6, which was +This file was extended by Passepartout $as_me 0.6-patch1, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6337,7 +6650,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -Passepartout config.status 0.6 +Passepartout config.status 0.6-patch1 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -6559,14 +6872,17 @@ s,@AUTOMAKE@,$AUTOMAKE,;t t s,@AUTOHEADER@,$AUTOHEADER,;t t s,@MAKEINFO@,$MAKEINFO,;t t -s,@AMTAR@,$AMTAR,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t +s,@mkdir_p@,$mkdir_p,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;t t +s,@AMTAR@,$AMTAR,;t t +s,@am__tar@,$am__tar,;t t +s,@am__untar@,$am__untar,;t t s,@CXX@,$CXX,;t t s,@CXXFLAGS@,$CXXFLAGS,;t t s,@LDFLAGS@,$LDFLAGS,;t t @@ -6589,6 +6905,7 @@ s,@XMLPP_LIBS@,$XMLPP_LIBS,;t t s,@XMLPP_CFLAGS@,$XMLPP_CFLAGS,;t t s,@PKG_CONFIG@,$PKG_CONFIG,;t t +s,@ac_pt_PKG_CONFIG@,$ac_pt_PKG_CONFIG,;t t s,@XML2_LIBS@,$XML2_LIBS,;t t s,@XML2_CFLAGS@,$XML2_CFLAGS,;t t s,@GTKMM_LIBS@,$GTKMM_LIBS,;t t @@ -6779,11 +7096,6 @@ *) ac_INSTALL=$ac_top_builddir$INSTALL ;; esac - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ @@ -6822,6 +7134,12 @@ fi;; esac done` || { (exit 1); exit 1; } + + if test x"$ac_file" != x-; then + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + rm -f "$ac_file" + fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub @@ -7235,27 +7553,21 @@ 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"` + # 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 -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" | \ + 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 diff -ur releases/passepartout-0.6/configure.ac passepartout-0.6/configure.ac --- releases/passepartout-0.6/configure.ac 2004-10-30 17:33:39.000000000 +0200 +++ passepartout-0.6/configure.ac 2007-03-04 00:06:05.000000000 +0100 @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(Passepartout, 0.6, [passepartout@stacken.kth.se]) +AC_INIT(Passepartout, 0.6-patch1, [passepartout@stacken.kth.se]) AC_CONFIG_SRCDIR([src/xml2ps/blockcontainer.cc]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) @@ -10,7 +10,7 @@ # AC_CONFIG_HEADER(src/defines.h) # Define global compiler flags: -MY_CXXFLAGS="-Wall -Wold-style-casts" +MY_CXXFLAGS="-Wall" # -Wold-style-cast CXXFLAGS="$CXXFLAGS $MY_CXXFLAGS" # Checks for programs. @@ -42,12 +42,12 @@ AC_SUBST([GTKMM_LIBS]) AC_SUBST([GTKMM_CFLAGS]) -PKG_CHECK_MODULES(GTKMM, gtkmm-2.0) +PKG_CHECK_MODULES(GTKMM, gtkmm-2.4) AC_APPLY_RPATH([GTKMM_LIBS]) AC_SUBST([GNOMECANVAS_LIBS]) AC_SUBST([GNOMECANVAS_CFLAGS]) -PKG_CHECK_MODULES(GNOMECANVAS, libgnomecanvasmm-2.0) +PKG_CHECK_MODULES(GNOMECANVAS, libgnomecanvasmm-2.6) AC_APPLY_RPATH([XMLPP_LIBS]) AC_SUBST([GTHREAD_LIBS]) @@ -57,7 +57,8 @@ AC_SUBST([SIGC_LIBS]) AC_SUBST([SIGC_CFLAGS]) -PKG_CHECK_MODULES([SIGC], [sigc++-1.2]) +#PKG_CHECK_MODULES([SIGC], [sigc++-1.2]) +PKG_CHECK_MODULES([SIGC], [sigc++-2.0]) AC_APPLY_RPATH([SIGC_LIBS]) AC_SUBST([FREETYPE_LIBS]) Endast i passepartout-0.6/: configure.ac~ diff -ur releases/passepartout-0.6/doc/examples/Makefile.in passepartout-0.6/doc/examples/Makefile.in --- releases/passepartout-0.6/doc/examples/Makefile.in 2004-10-31 20:23:49.000000000 +0100 +++ passepartout-0.6/doc/examples/Makefile.in 2007-03-04 00:05:03.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +34,28 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = doc/examples +DIST_COMMON = $(dist_xmp_DATA) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +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 = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(xmpdir)" +dist_xmpDATA_INSTALL = $(INSTALL_DATA) +DATA = $(dist_xmp_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +122,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +130,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +145,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -137,41 +162,55 @@ hippie.jpg gradient.eps multilingual-head.xml \ multilingual.html multilingual.pp -subdir = doc/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(dist_xmp_DATA) - -DIST_COMMON = $(dist_xmp_DATA) $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/examples/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/examples/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh uninstall-info-am: -dist_xmpDATA_INSTALL = $(INSTALL_DATA) install-dist_xmpDATA: $(dist_xmp_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(xmpdir) + test -z "$(xmpdir)" || $(mkdir_p) "$(DESTDIR)$(xmpdir)" @list='$(dist_xmp_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(dist_xmpDATA_INSTALL) $$d$$p $(DESTDIR)$(xmpdir)/$$f"; \ - $(dist_xmpDATA_INSTALL) $$d$$p $(DESTDIR)$(xmpdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(dist_xmpDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(xmpdir)/$$f'"; \ + $(dist_xmpDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(xmpdir)/$$f"; \ done uninstall-dist_xmpDATA: @$(NORMAL_UNINSTALL) @list='$(dist_xmp_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(xmpdir)/$$f"; \ - rm -f $(DESTDIR)$(xmpdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(xmpdir)/$$f'"; \ + rm -f "$(DESTDIR)$(xmpdir)/$$f"; \ done tags: TAGS TAGS: @@ -179,10 +218,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -196,7 +231,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -214,9 +249,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(xmpdir) + for dir in "$(DESTDIR)$(xmpdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -236,7 +272,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -253,6 +289,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -290,13 +328,14 @@ $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-dist_xmpDATA \ - 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 pdf pdf-am ps ps-am uninstall \ - uninstall-am uninstall-dist_xmpDATA uninstall-info-am + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-hook install-dist_xmpDATA 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 pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-dist_xmpDATA uninstall-hook uninstall-info-am # Make symbolic links to the stylesheets: Endast i passepartout-0.6/doc/examples: xhtml.xslt Endast i passepartout-0.6/doc: faq.html Endast i passepartout-0.6/doc: faq.txt diff -ur releases/passepartout-0.6/doc/Makefile.in passepartout-0.6/doc/Makefile.in --- releases/passepartout-0.6/doc/Makefile.in 2004-10-31 20:23:49.000000000 +0100 +++ passepartout-0.6/doc/Makefile.in 2007-03-04 00:05:03.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +34,42 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = doc +DIST_COMMON = README $(dist_doc_DATA) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +man1dir = $(mandir)/man1 +am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" \ + "$(DESTDIR)$(docdir)" +NROFF = nroff +MANS = $(man_MANS) +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 = `echo $$p | sed -e 's|^.*/||'`; +dist_docDATA_INSTALL = $(INSTALL_DATA) +docDATA_INSTALL = $(INSTALL_DATA) +DATA = $(dist_doc_DATA) $(doc_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +136,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +144,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +159,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -135,7 +174,6 @@ dist_doc_DATA = users_guide.pp users_guide.xml faq.xml nsfaq.xml \ ../logotype/pptout-sv.eps README - doc_DATA = users_guide.html faq.html nsfaq.html \ users_guide.txt faq.txt nsfaq.txt @@ -146,44 +184,45 @@ # documentation stylesheets DOCBOOK2TXT = docbook2txt.xslt DOCBOOK2HTML = docbook2html.xslt - SUFFIXES = .txt .xml .html - EXTRA_DIST = $(man_MANS) $(DOCBOOK2TXT) $(DOCBOOK2HTML) -subdir = doc -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = - -NROFF = nroff -MANS = $(man_MANS) -DATA = $(dist_doc_DATA) $(doc_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 $(dist_doc_DATA) $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: .SUFFIXES: .txt .xml .html -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh uninstall-info-am: - -man1dir = $(mandir)/man1 install-man1: $(man1_MANS) $(man_MANS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(man1dir) + test -z "$(man1dir)" || $(mkdir_p) "$(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 \ @@ -202,8 +241,8 @@ 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; \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ done uninstall-man1: @$(NORMAL_UNINSTALL) @@ -223,44 +262,42 @@ 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; \ + echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \ + rm -f "$(DESTDIR)$(man1dir)/$$inst"; \ done -dist_docDATA_INSTALL = $(INSTALL_DATA) install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(docdir) + test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)" @list='$(dist_doc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(dist_docDATA_INSTALL) $$d$$p $(DESTDIR)$(docdir)/$$f"; \ - $(dist_docDATA_INSTALL) $$d$$p $(DESTDIR)$(docdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(dist_docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ + $(dist_docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(docdir)/$$f"; \ - rm -f $(DESTDIR)$(docdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ + rm -f "$(DESTDIR)$(docdir)/$$f"; \ done -docDATA_INSTALL = $(INSTALL_DATA) install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(docdir) + test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)" @list='$(doc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(docDATA_INSTALL) $$d$$p $(DESTDIR)$(docdir)/$$f"; \ - $(docDATA_INSTALL) $$d$$p $(DESTDIR)$(docdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ + $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(docdir)/$$f"; \ - rm -f $(DESTDIR)$(docdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ + rm -f "$(DESTDIR)$(docdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -270,7 +307,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 \ @@ -282,7 +325,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -290,7 +333,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @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; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -311,7 +360,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -322,14 +371,6 @@ test "$$subdir" = . || (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 \ @@ -338,19 +379,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -360,10 +404,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -386,13 +431,9 @@ 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)/../logotype + $(mkdir_p) $(distdir)/../logotype @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -404,7 +445,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -419,15 +460,17 @@ || 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; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -437,8 +480,9 @@ all-am: Makefile $(MANS) $(DATA) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(man1dir) $(DESTDIR)$(docdir) $(DESTDIR)$(docdir) - + for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(docdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -458,7 +502,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -475,6 +519,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -507,8 +553,8 @@ ps-am: -uninstall-am: uninstall-dist_docDATA uninstall-docDATA uninstall-info-am \ - uninstall-man +uninstall-am: uninstall-dist_docDATA uninstall-docDATA \ + uninstall-info-am uninstall-man @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook @@ -516,23 +562,20 @@ uninstall-man: uninstall-man1 -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-recursive ctags ctags-recursive distclean \ - distclean-generic 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_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-recursive ctags ctags-recursive \ + distclean distclean-generic distclean-recursive distclean-tags \ + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-data-hook \ install-dist_docDATA install-docDATA install-exec \ - install-exec-am install-exec-recursive install-info \ - install-info-am install-info-recursive install-man install-man1 \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-dist_docDATA uninstall-docDATA uninstall-info-am \ - uninstall-info-recursive uninstall-man uninstall-man1 \ - uninstall-recursive + install-exec-am install-info install-info-am install-man \ + install-man1 install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-generic mostlyclean-recursive pdf \ + pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-dist_docDATA uninstall-docDATA uninstall-hook \ + uninstall-info-am uninstall-man uninstall-man1 # Make symbolic links to the stylesheets: Endast i passepartout-0.6/doc: nsfaq.html Endast i passepartout-0.6/doc: nsfaq.txt Endast i passepartout-0.6/doc: users_guide.html Endast i passepartout-0.6/doc: users_guide.txt diff -ur releases/passepartout-0.6/logotype/Makefile.in passepartout-0.6/logotype/Makefile.in --- releases/passepartout-0.6/logotype/Makefile.in 2004-10-31 20:23:49.000000000 +0100 +++ passepartout-0.6/logotype/Makefile.in 2007-03-04 00:05:03.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +33,18 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = logotype +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +111,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +119,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +134,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,21 +144,38 @@ target_alias = @target_alias@ xmldir = @xmldir@ EXTRA_DIST = pptout-sv.eps -subdir = logotype -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign logotype/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign logotype/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh uninstall-info-am: tags: TAGS TAGS: @@ -152,10 +183,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -169,7 +196,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -187,7 +214,6 @@ check-am: all-am check: check-am all-am: Makefile - installdirs: install: install-am install-exec: install-exec-am @@ -208,7 +234,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -225,6 +251,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -258,8 +286,8 @@ uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-generic distdir dvi dvi-am html html-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 \ diff -ur releases/passepartout-0.6/Makefile.in passepartout-0.6/Makefile.in --- releases/passepartout-0.6/Makefile.in 2004-10-31 20:23:48.000000000 +0100 +++ passepartout-0.6/Makefile.in 2007-03-04 00:05:07.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +33,41 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = . +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ + INSTALL NEWS depcomp install-sh missing mkinstalldirs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno configure.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +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); }; } +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 +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@ @@ -101,6 +134,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +142,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +157,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,42 +167,42 @@ target_alias = @target_alias@ xmldir = @xmldir@ SUBDIRS = src doc logotype - EXTRA_DIST = BUGS Doxyfile -subdir = . -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.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 $(srcdir)/configure AUTHORS \ - COPYING INSTALL Makefile.am NEWS aclocal.m4 configure \ - configure.ac depcomp install-sh missing mkinstalldirs -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: - -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +am--refresh: + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ + cd $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe) +.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; -$(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: $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): configure.ac +$(top_srcdir)/configure: $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) uninstall-info-am: @@ -176,7 +213,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 \ @@ -188,7 +231,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -196,7 +239,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @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; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -217,7 +266,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -228,14 +277,6 @@ test "$$subdir" = . || (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 \ @@ -244,19 +285,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -266,10 +310,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -292,19 +337,6 @@ 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) @@ -320,7 +352,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -335,15 +367,17 @@ || 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; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -354,24 +388,46 @@ ! -type d ! -perm -444 -exec $(SHELL) $(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 - $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2 + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(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 - $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2 + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(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.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 @@ -391,19 +447,20 @@ 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) dist \ + && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(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 '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ @@ -427,7 +484,6 @@ all-am: Makefile installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -447,7 +503,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -465,6 +521,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -501,22 +559,19 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-recursive ctags ctags-recursive dist \ - dist-all dist-bzip2 dist-gzip distcheck distclean \ - distclean-generic 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-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ + check-am clean clean-generic clean-recursive ctags \ + ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \ + dist-tarZ dist-zip distcheck distclean distclean-generic \ + distclean-recursive distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-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 \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - 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 + mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -ur releases/passepartout-0.6/src/fonts/Makefile.in passepartout-0.6/src/fonts/Makefile.in --- releases/passepartout-0.6/src/fonts/Makefile.in 2004-10-31 20:23:50.000000000 +0100 +++ passepartout-0.6/src/fonts/Makefile.in 2007-03-04 00:05:03.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,39 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src/fonts +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libfonts_a_AR = $(AR) $(ARFLAGS) +libfonts_a_LIBADD = +am_libfonts_a_OBJECTS = libfonts_a-fontinfo.$(OBJEXT) \ + libfonts_a-fontmanager.$(OBJEXT) libfonts_a-afm.$(OBJEXT) \ + libfonts_a-freetype.$(OBJEXT) +libfonts_a_OBJECTS = $(am_libfonts_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libfonts_a_SOURCES) +DIST_SOURCES = $(libfonts_a_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +134,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +142,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +157,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,59 +167,47 @@ target_alias = @target_alias@ xmldir = @xmldir@ noinst_LIBRARIES = libfonts.a - dist_noinst_HEADERS = fontinfo.hh fontmanager.hh fontmetrics.hh afm.hh \ freetype.hh - libfonts_a_SOURCES = fontinfo.cc fontmanager.cc afm.cc freetype.cc - # for Glib::ustring -libfonts_a_CXXFLAGS = -I$(top_srcdir)/src $(GTKMM_CFLAGS) $(FREETYPE_CFLAGS) -subdir = src/fonts -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libfonts_a_AR = $(AR) cru -libfonts_a_LIBADD = -am_libfonts_a_OBJECTS = libfonts_a-fontinfo.$(OBJEXT) \ - libfonts_a-fontmanager.$(OBJEXT) libfonts_a-afm.$(OBJEXT) \ - libfonts_a-freetype.$(OBJEXT) -libfonts_a_OBJECTS = $(am_libfonts_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libfonts_a-afm.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libfonts_a-fontinfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libfonts_a-fontmanager.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libfonts_a-freetype.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libfonts_a_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libfonts_a_SOURCES) - +libfonts_a_CXXFLAGS = -I$(top_srcdir)/src $(GTKMM_CFLAGS) \ + $(FREETYPE_CFLAGS) all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/fonts/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/fonts/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -192,7 +217,7 @@ $(RANLIB) libfonts.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -203,124 +228,76 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfonts_a-freetype.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libfonts_a-fontinfo.o: fontinfo.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontinfo.o -MD -MP -MF "$(DEPDIR)/libfonts_a-fontinfo.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-fontinfo.o `test -f 'fontinfo.cc' || echo '$(srcdir)/'`fontinfo.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo" "$(DEPDIR)/libfonts_a-fontinfo.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontinfo.o -MD -MP -MF "$(DEPDIR)/libfonts_a-fontinfo.Tpo" -c -o libfonts_a-fontinfo.o `test -f 'fontinfo.cc' || echo '$(srcdir)/'`fontinfo.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo" "$(DEPDIR)/libfonts_a-fontinfo.Po"; else rm -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fontinfo.cc' object='libfonts_a-fontinfo.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-fontinfo.Po' tmpdepfile='$(DEPDIR)/libfonts_a-fontinfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-fontinfo.o `test -f 'fontinfo.cc' || echo '$(srcdir)/'`fontinfo.cc libfonts_a-fontinfo.obj: fontinfo.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontinfo.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-fontinfo.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-fontinfo.obj `if test -f 'fontinfo.cc'; then $(CYGPATH_W) 'fontinfo.cc'; else $(CYGPATH_W) '$(srcdir)/fontinfo.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo" "$(DEPDIR)/libfonts_a-fontinfo.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontinfo.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-fontinfo.Tpo" -c -o libfonts_a-fontinfo.obj `if test -f 'fontinfo.cc'; then $(CYGPATH_W) 'fontinfo.cc'; else $(CYGPATH_W) '$(srcdir)/fontinfo.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo" "$(DEPDIR)/libfonts_a-fontinfo.Po"; else rm -f "$(DEPDIR)/libfonts_a-fontinfo.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fontinfo.cc' object='libfonts_a-fontinfo.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-fontinfo.Po' tmpdepfile='$(DEPDIR)/libfonts_a-fontinfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-fontinfo.obj `if test -f 'fontinfo.cc'; then $(CYGPATH_W) 'fontinfo.cc'; else $(CYGPATH_W) '$(srcdir)/fontinfo.cc'; fi` libfonts_a-fontmanager.o: fontmanager.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontmanager.o -MD -MP -MF "$(DEPDIR)/libfonts_a-fontmanager.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-fontmanager.o `test -f 'fontmanager.cc' || echo '$(srcdir)/'`fontmanager.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo" "$(DEPDIR)/libfonts_a-fontmanager.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontmanager.o -MD -MP -MF "$(DEPDIR)/libfonts_a-fontmanager.Tpo" -c -o libfonts_a-fontmanager.o `test -f 'fontmanager.cc' || echo '$(srcdir)/'`fontmanager.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo" "$(DEPDIR)/libfonts_a-fontmanager.Po"; else rm -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fontmanager.cc' object='libfonts_a-fontmanager.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-fontmanager.Po' tmpdepfile='$(DEPDIR)/libfonts_a-fontmanager.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-fontmanager.o `test -f 'fontmanager.cc' || echo '$(srcdir)/'`fontmanager.cc libfonts_a-fontmanager.obj: fontmanager.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontmanager.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-fontmanager.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-fontmanager.obj `if test -f 'fontmanager.cc'; then $(CYGPATH_W) 'fontmanager.cc'; else $(CYGPATH_W) '$(srcdir)/fontmanager.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo" "$(DEPDIR)/libfonts_a-fontmanager.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-fontmanager.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-fontmanager.Tpo" -c -o libfonts_a-fontmanager.obj `if test -f 'fontmanager.cc'; then $(CYGPATH_W) 'fontmanager.cc'; else $(CYGPATH_W) '$(srcdir)/fontmanager.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo" "$(DEPDIR)/libfonts_a-fontmanager.Po"; else rm -f "$(DEPDIR)/libfonts_a-fontmanager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fontmanager.cc' object='libfonts_a-fontmanager.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-fontmanager.Po' tmpdepfile='$(DEPDIR)/libfonts_a-fontmanager.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-fontmanager.obj `if test -f 'fontmanager.cc'; then $(CYGPATH_W) 'fontmanager.cc'; else $(CYGPATH_W) '$(srcdir)/fontmanager.cc'; fi` libfonts_a-afm.o: afm.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-afm.o -MD -MP -MF "$(DEPDIR)/libfonts_a-afm.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-afm.o `test -f 'afm.cc' || echo '$(srcdir)/'`afm.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-afm.Tpo" "$(DEPDIR)/libfonts_a-afm.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-afm.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-afm.o -MD -MP -MF "$(DEPDIR)/libfonts_a-afm.Tpo" -c -o libfonts_a-afm.o `test -f 'afm.cc' || echo '$(srcdir)/'`afm.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-afm.Tpo" "$(DEPDIR)/libfonts_a-afm.Po"; else rm -f "$(DEPDIR)/libfonts_a-afm.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='afm.cc' object='libfonts_a-afm.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-afm.Po' tmpdepfile='$(DEPDIR)/libfonts_a-afm.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-afm.o `test -f 'afm.cc' || echo '$(srcdir)/'`afm.cc libfonts_a-afm.obj: afm.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-afm.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-afm.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-afm.obj `if test -f 'afm.cc'; then $(CYGPATH_W) 'afm.cc'; else $(CYGPATH_W) '$(srcdir)/afm.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-afm.Tpo" "$(DEPDIR)/libfonts_a-afm.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-afm.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-afm.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-afm.Tpo" -c -o libfonts_a-afm.obj `if test -f 'afm.cc'; then $(CYGPATH_W) 'afm.cc'; else $(CYGPATH_W) '$(srcdir)/afm.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-afm.Tpo" "$(DEPDIR)/libfonts_a-afm.Po"; else rm -f "$(DEPDIR)/libfonts_a-afm.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='afm.cc' object='libfonts_a-afm.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-afm.Po' tmpdepfile='$(DEPDIR)/libfonts_a-afm.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-afm.obj `if test -f 'afm.cc'; then $(CYGPATH_W) 'afm.cc'; else $(CYGPATH_W) '$(srcdir)/afm.cc'; fi` libfonts_a-freetype.o: freetype.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-freetype.o -MD -MP -MF "$(DEPDIR)/libfonts_a-freetype.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-freetype.o `test -f 'freetype.cc' || echo '$(srcdir)/'`freetype.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-freetype.Tpo" "$(DEPDIR)/libfonts_a-freetype.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-freetype.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-freetype.o -MD -MP -MF "$(DEPDIR)/libfonts_a-freetype.Tpo" -c -o libfonts_a-freetype.o `test -f 'freetype.cc' || echo '$(srcdir)/'`freetype.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-freetype.Tpo" "$(DEPDIR)/libfonts_a-freetype.Po"; else rm -f "$(DEPDIR)/libfonts_a-freetype.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='freetype.cc' object='libfonts_a-freetype.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-freetype.Po' tmpdepfile='$(DEPDIR)/libfonts_a-freetype.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-freetype.o `test -f 'freetype.cc' || echo '$(srcdir)/'`freetype.cc libfonts_a-freetype.obj: freetype.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-freetype.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-freetype.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libfonts_a-freetype.obj `if test -f 'freetype.cc'; then $(CYGPATH_W) 'freetype.cc'; else $(CYGPATH_W) '$(srcdir)/freetype.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-freetype.Tpo" "$(DEPDIR)/libfonts_a-freetype.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libfonts_a-freetype.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -MT libfonts_a-freetype.obj -MD -MP -MF "$(DEPDIR)/libfonts_a-freetype.Tpo" -c -o libfonts_a-freetype.obj `if test -f 'freetype.cc'; then $(CYGPATH_W) 'freetype.cc'; else $(CYGPATH_W) '$(srcdir)/freetype.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libfonts_a-freetype.Tpo" "$(DEPDIR)/libfonts_a-freetype.Po"; else rm -f "$(DEPDIR)/libfonts_a-freetype.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='freetype.cc' object='libfonts_a-freetype.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libfonts_a-freetype.Po' tmpdepfile='$(DEPDIR)/libfonts_a-freetype.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfonts_a_CXXFLAGS) $(CXXFLAGS) -c -o libfonts_a-freetype.obj `if test -f 'freetype.cc'; then $(CYGPATH_W) 'freetype.cc'; else $(CYGPATH_W) '$(srcdir)/freetype.cc'; fi` 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 \ @@ -329,6 +306,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -340,10 +318,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -366,10 +345,6 @@ 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'`; \ @@ -383,7 +358,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -401,7 +376,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) - installdirs: install: install-am install-exec: install-exec-am @@ -422,7 +396,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -441,6 +415,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -476,13 +452,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-noinstLIBRARIES ctags distclean distclean-compile \ - distclean-generic 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 pdf pdf-am \ - ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-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 pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am #libfonts_a_LIBADD = $(top_srcdir)/src/util/libpptutil.a diff -ur releases/passepartout-0.6/src/Makefile.in passepartout-0.6/src/Makefile.in --- releases/passepartout-0.6/src/Makefile.in 2004-10-31 20:23:49.000000000 +0100 +++ passepartout-0.6/src/Makefile.in 2007-03-04 00:05:03.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +33,28 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/defines.h.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = defines.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +121,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +129,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +144,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,29 +154,39 @@ target_alias = @target_alias@ xmldir = @xmldir@ SUBDIRS = testbed util fonts ps xml2ps pptout -subdir = src -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = defines.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 Makefile.am defines.h.in -DIST_SUBDIRS = $(SUBDIRS) all: defines.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh defines.h: stamp-h1 @if test ! -f $@; then \ @@ -163,10 +197,10 @@ stamp-h1: $(srcdir)/defines.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/defines.h - -$(srcdir)/defines.h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/defines.h.in: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) - touch $(srcdir)/defines.h.in + rm -f stamp-h1 + touch $@ distclean-hdr: -rm -f defines.h stamp-h1 @@ -179,7 +213,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 \ @@ -191,7 +231,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -199,7 +239,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @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; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -220,7 +266,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -231,14 +277,6 @@ test "$$subdir" = . || (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 \ @@ -247,19 +285,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) defines.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -269,10 +310,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) defines.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -295,10 +337,6 @@ 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'`; \ @@ -312,7 +350,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -327,15 +365,17 @@ || 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; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -345,7 +385,6 @@ all-am: Makefile defines.h installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -365,7 +404,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -382,6 +421,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -416,21 +457,17 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-recursive ctags ctags-recursive distclean \ - distclean-generic distclean-hdr 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 \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-recursive ctags ctags-recursive \ + distclean distclean-generic distclean-hdr distclean-recursive \ + distclean-tags distdir dvi dvi-am html html-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 \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-generic 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 + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-generic \ + mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -ur releases/passepartout-0.6/src/pptout/aboutdialog.cc passepartout-0.6/src/pptout/aboutdialog.cc --- releases/passepartout-0.6/src/pptout/aboutdialog.cc 2004-04-26 19:32:25.000000000 +0200 +++ passepartout-0.6/src/pptout/aboutdialog.cc 2007-03-03 22:36:45.000000000 +0100 @@ -61,9 +61,9 @@ webpage->set_relief(Gtk::RELIEF_NONE); webpage->set_border_width(0); webpage->signal_clicked().connect - (bind(slot(*this, &AboutDialog::on_response), OPEN_WEBPAGE)); + (sigc::bind(mem_fun(*this, &AboutDialog::on_response), static_cast(OPEN_WEBPAGE))); webpage->signal_activate().connect - (bind(slot(*this, &AboutDialog::on_response), OPEN_WEBPAGE)); + (sigc::bind(mem_fun(*this, &AboutDialog::on_response), static_cast(OPEN_WEBPAGE))); message->pack_start(*webpage, Gtk::PACK_SHRINK); label = Endast i passepartout-0.6/src/pptout: aboutdialog.cc~ Endast i passepartout-0.6/src/pptout: aboutdialog.h~ diff -ur releases/passepartout-0.6/src/pptout/config.cc passepartout-0.6/src/pptout/config.cc --- releases/passepartout-0.6/src/pptout/config.cc 2004-10-07 13:59:14.000000000 +0200 +++ passepartout-0.6/src/pptout/config.cc 2007-03-03 23:14:03.000000000 +0100 @@ -136,7 +136,7 @@ if(dialog) return *dialog; dialog = new PreferencesDialog(); - dialog->signal_hide().connect(slot(*this, &PFile::dialog_done)); + dialog->signal_hide().connect(mem_fun(*this, &PFile::dialog_done)); return *dialog; } Endast i passepartout-0.6/src/pptout: config.cc~ diff -ur releases/passepartout-0.6/src/pptout/docpropsdialog.cc passepartout-0.6/src/pptout/docpropsdialog.cc --- releases/passepartout-0.6/src/pptout/docpropsdialog.cc 2004-01-12 20:01:19.000000000 +0100 +++ passepartout-0.6/src/pptout/docpropsdialog.cc 2007-03-03 23:22:50.000000000 +0100 @@ -142,7 +142,7 @@ create_button = add_button(Gtk::Stock::NEW, 1); template_button->signal_clicked().connect - (slot(*this, &DocPropsDialog::update_mode)); + (mem_fun(*this, &DocPropsDialog::update_mode)); update_mode(); get_vbox()->show_all(); Endast i passepartout-0.6/src/pptout: docpropsdialog.cc~ diff -ur releases/passepartout-0.6/src/pptout/document/imageframe.cc passepartout-0.6/src/pptout/document/imageframe.cc --- releases/passepartout-0.6/src/pptout/document/imageframe.cc 2004-10-03 21:57:16.000000000 +0200 +++ passepartout-0.6/src/pptout/document/imageframe.cc 2007-03-03 22:15:18.000000000 +0100 @@ -28,8 +28,8 @@ : CachedFrame(parent, "Image " + basename(assoc)), association(assoc), filewatcher(association) { - filewatcher.modified_signal.connect(slot(*this, - &ImageFrame::on_file_modified)); + filewatcher.modified_signal.connect(mem_fun(*this, + &ImageFrame::on_file_modified)); read_size(); } @@ -38,8 +38,8 @@ association(xml.get_filename("file")), filewatcher(association) { - filewatcher.modified_signal.connect(slot(*this, - &ImageFrame::on_file_modified)); + filewatcher.modified_signal.connect(mem_fun(*this, + &ImageFrame::on_file_modified)); if(association.empty()) { warning << "No or empty \"file\" attribute found in image frame" Endast i passepartout-0.6/src/pptout/document: imageframe.cc~ diff -ur releases/passepartout-0.6/src/pptout/document/Makefile.in passepartout-0.6/src/pptout/document/Makefile.in --- releases/passepartout-0.6/src/pptout/document/Makefile.in 2004-10-31 20:23:51.000000000 +0100 +++ passepartout-0.6/src/pptout/document/Makefile.in 2007-03-04 00:05:04.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,47 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src/pptout/document +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libdocument_a_AR = $(AR) $(ARFLAGS) +libdocument_a_LIBADD = +am_libdocument_a_OBJECTS = libdocument_a-basicframe.$(OBJEXT) \ + libdocument_a-cachedframe.$(OBJEXT) \ + libdocument_a-document.$(OBJEXT) libdocument_a-group.$(OBJEXT) \ + libdocument_a-imageframe.$(OBJEXT) \ + libdocument_a-page.$(OBJEXT) libdocument_a-pagent.$(OBJEXT) \ + libdocument_a-rasterframe.$(OBJEXT) \ + libdocument_a-textframe.$(OBJEXT) \ + libdocument_a-textstream.$(OBJEXT) \ + libdocument_a-paper_sizes.$(OBJEXT) \ + libdocument_a-getxsltparams.$(OBJEXT) \ + libdocument_a-loader.$(OBJEXT) +libdocument_a_OBJECTS = $(am_libdocument_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libdocument_a_SOURCES) +DIST_SOURCES = $(libdocument_a_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +142,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +150,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +165,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,79 +175,50 @@ target_alias = @target_alias@ xmldir = @xmldir@ noinst_LIBRARIES = libdocument.a - dist_noinst_HEADERS = basicframe.h cachedframe.h document.h group.h \ imageframe.h page.h pagent.h rasterframe.h textframe.h \ textstream.h fileerrors.h paper_sizes.h getxsltparams.h \ loader.h filecontext.h - libdocument_a_SOURCES = basicframe.cc cachedframe.cc document.cc group.cc \ imageframe.cc page.cc pagent.cc rasterframe.cc textframe.cc \ textstream.cc paper_sizes.cc getxsltparams.cc loader.cc - -libdocument_a_CXXFLAGS = $(GTKMM_CFLAGS) $(XMLPP_CFLAGS) $(SIGC_CFLAGS) -I$(top_srcdir)/src -subdir = src/pptout/document -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libdocument_a_AR = $(AR) cru -libdocument_a_LIBADD = -am_libdocument_a_OBJECTS = libdocument_a-basicframe.$(OBJEXT) \ - libdocument_a-cachedframe.$(OBJEXT) \ - libdocument_a-document.$(OBJEXT) libdocument_a-group.$(OBJEXT) \ - libdocument_a-imageframe.$(OBJEXT) libdocument_a-page.$(OBJEXT) \ - libdocument_a-pagent.$(OBJEXT) \ - libdocument_a-rasterframe.$(OBJEXT) \ - libdocument_a-textframe.$(OBJEXT) \ - libdocument_a-textstream.$(OBJEXT) \ - libdocument_a-paper_sizes.$(OBJEXT) \ - libdocument_a-getxsltparams.$(OBJEXT) \ - libdocument_a-loader.$(OBJEXT) -libdocument_a_OBJECTS = $(am_libdocument_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libdocument_a-basicframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-cachedframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-document.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-getxsltparams.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-group.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-imageframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-loader.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-page.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-pagent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-paper_sizes.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-rasterframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-textframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libdocument_a-textstream.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libdocument_a_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libdocument_a_SOURCES) - +libdocument_a_CXXFLAGS = $(GTKMM_CFLAGS) $(XMLPP_CFLAGS) \ + $(SIGC_CFLAGS) -I$(top_srcdir)/src all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/pptout/document/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/pptout/document/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -212,7 +228,7 @@ $(RANLIB) libdocument.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -232,322 +248,202 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdocument_a-textstream.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libdocument_a-basicframe.o: basicframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-basicframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-basicframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-basicframe.o `test -f 'basicframe.cc' || echo '$(srcdir)/'`basicframe.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-basicframe.Tpo" "$(DEPDIR)/libdocument_a-basicframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-basicframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-basicframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-basicframe.Tpo" -c -o libdocument_a-basicframe.o `test -f 'basicframe.cc' || echo '$(srcdir)/'`basicframe.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-basicframe.Tpo" "$(DEPDIR)/libdocument_a-basicframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-basicframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='basicframe.cc' object='libdocument_a-basicframe.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-basicframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-basicframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-basicframe.o `test -f 'basicframe.cc' || echo '$(srcdir)/'`basicframe.cc libdocument_a-basicframe.obj: basicframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-basicframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-basicframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-basicframe.obj `if test -f 'basicframe.cc'; then $(CYGPATH_W) 'basicframe.cc'; else $(CYGPATH_W) '$(srcdir)/basicframe.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-basicframe.Tpo" "$(DEPDIR)/libdocument_a-basicframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-basicframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-basicframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-basicframe.Tpo" -c -o libdocument_a-basicframe.obj `if test -f 'basicframe.cc'; then $(CYGPATH_W) 'basicframe.cc'; else $(CYGPATH_W) '$(srcdir)/basicframe.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-basicframe.Tpo" "$(DEPDIR)/libdocument_a-basicframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-basicframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='basicframe.cc' object='libdocument_a-basicframe.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-basicframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-basicframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-basicframe.obj `if test -f 'basicframe.cc'; then $(CYGPATH_W) 'basicframe.cc'; else $(CYGPATH_W) '$(srcdir)/basicframe.cc'; fi` libdocument_a-cachedframe.o: cachedframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-cachedframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-cachedframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-cachedframe.o `test -f 'cachedframe.cc' || echo '$(srcdir)/'`cachedframe.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo" "$(DEPDIR)/libdocument_a-cachedframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-cachedframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-cachedframe.Tpo" -c -o libdocument_a-cachedframe.o `test -f 'cachedframe.cc' || echo '$(srcdir)/'`cachedframe.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo" "$(DEPDIR)/libdocument_a-cachedframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cachedframe.cc' object='libdocument_a-cachedframe.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-cachedframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-cachedframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-cachedframe.o `test -f 'cachedframe.cc' || echo '$(srcdir)/'`cachedframe.cc libdocument_a-cachedframe.obj: cachedframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-cachedframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-cachedframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-cachedframe.obj `if test -f 'cachedframe.cc'; then $(CYGPATH_W) 'cachedframe.cc'; else $(CYGPATH_W) '$(srcdir)/cachedframe.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo" "$(DEPDIR)/libdocument_a-cachedframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-cachedframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-cachedframe.Tpo" -c -o libdocument_a-cachedframe.obj `if test -f 'cachedframe.cc'; then $(CYGPATH_W) 'cachedframe.cc'; else $(CYGPATH_W) '$(srcdir)/cachedframe.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo" "$(DEPDIR)/libdocument_a-cachedframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-cachedframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cachedframe.cc' object='libdocument_a-cachedframe.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-cachedframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-cachedframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-cachedframe.obj `if test -f 'cachedframe.cc'; then $(CYGPATH_W) 'cachedframe.cc'; else $(CYGPATH_W) '$(srcdir)/cachedframe.cc'; fi` libdocument_a-document.o: document.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-document.o -MD -MP -MF "$(DEPDIR)/libdocument_a-document.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-document.o `test -f 'document.cc' || echo '$(srcdir)/'`document.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-document.Tpo" "$(DEPDIR)/libdocument_a-document.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-document.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-document.o -MD -MP -MF "$(DEPDIR)/libdocument_a-document.Tpo" -c -o libdocument_a-document.o `test -f 'document.cc' || echo '$(srcdir)/'`document.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-document.Tpo" "$(DEPDIR)/libdocument_a-document.Po"; else rm -f "$(DEPDIR)/libdocument_a-document.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='document.cc' object='libdocument_a-document.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-document.Po' tmpdepfile='$(DEPDIR)/libdocument_a-document.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-document.o `test -f 'document.cc' || echo '$(srcdir)/'`document.cc libdocument_a-document.obj: document.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-document.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-document.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-document.obj `if test -f 'document.cc'; then $(CYGPATH_W) 'document.cc'; else $(CYGPATH_W) '$(srcdir)/document.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-document.Tpo" "$(DEPDIR)/libdocument_a-document.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-document.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-document.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-document.Tpo" -c -o libdocument_a-document.obj `if test -f 'document.cc'; then $(CYGPATH_W) 'document.cc'; else $(CYGPATH_W) '$(srcdir)/document.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-document.Tpo" "$(DEPDIR)/libdocument_a-document.Po"; else rm -f "$(DEPDIR)/libdocument_a-document.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='document.cc' object='libdocument_a-document.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-document.Po' tmpdepfile='$(DEPDIR)/libdocument_a-document.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-document.obj `if test -f 'document.cc'; then $(CYGPATH_W) 'document.cc'; else $(CYGPATH_W) '$(srcdir)/document.cc'; fi` libdocument_a-group.o: group.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-group.o -MD -MP -MF "$(DEPDIR)/libdocument_a-group.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-group.o `test -f 'group.cc' || echo '$(srcdir)/'`group.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-group.Tpo" "$(DEPDIR)/libdocument_a-group.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-group.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-group.o -MD -MP -MF "$(DEPDIR)/libdocument_a-group.Tpo" -c -o libdocument_a-group.o `test -f 'group.cc' || echo '$(srcdir)/'`group.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-group.Tpo" "$(DEPDIR)/libdocument_a-group.Po"; else rm -f "$(DEPDIR)/libdocument_a-group.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='group.cc' object='libdocument_a-group.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-group.Po' tmpdepfile='$(DEPDIR)/libdocument_a-group.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-group.o `test -f 'group.cc' || echo '$(srcdir)/'`group.cc libdocument_a-group.obj: group.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-group.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-group.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-group.obj `if test -f 'group.cc'; then $(CYGPATH_W) 'group.cc'; else $(CYGPATH_W) '$(srcdir)/group.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-group.Tpo" "$(DEPDIR)/libdocument_a-group.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-group.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-group.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-group.Tpo" -c -o libdocument_a-group.obj `if test -f 'group.cc'; then $(CYGPATH_W) 'group.cc'; else $(CYGPATH_W) '$(srcdir)/group.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-group.Tpo" "$(DEPDIR)/libdocument_a-group.Po"; else rm -f "$(DEPDIR)/libdocument_a-group.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='group.cc' object='libdocument_a-group.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-group.Po' tmpdepfile='$(DEPDIR)/libdocument_a-group.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-group.obj `if test -f 'group.cc'; then $(CYGPATH_W) 'group.cc'; else $(CYGPATH_W) '$(srcdir)/group.cc'; fi` libdocument_a-imageframe.o: imageframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-imageframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-imageframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-imageframe.o `test -f 'imageframe.cc' || echo '$(srcdir)/'`imageframe.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-imageframe.Tpo" "$(DEPDIR)/libdocument_a-imageframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-imageframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-imageframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-imageframe.Tpo" -c -o libdocument_a-imageframe.o `test -f 'imageframe.cc' || echo '$(srcdir)/'`imageframe.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-imageframe.Tpo" "$(DEPDIR)/libdocument_a-imageframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-imageframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imageframe.cc' object='libdocument_a-imageframe.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-imageframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-imageframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-imageframe.o `test -f 'imageframe.cc' || echo '$(srcdir)/'`imageframe.cc libdocument_a-imageframe.obj: imageframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-imageframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-imageframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-imageframe.obj `if test -f 'imageframe.cc'; then $(CYGPATH_W) 'imageframe.cc'; else $(CYGPATH_W) '$(srcdir)/imageframe.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-imageframe.Tpo" "$(DEPDIR)/libdocument_a-imageframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-imageframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-imageframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-imageframe.Tpo" -c -o libdocument_a-imageframe.obj `if test -f 'imageframe.cc'; then $(CYGPATH_W) 'imageframe.cc'; else $(CYGPATH_W) '$(srcdir)/imageframe.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-imageframe.Tpo" "$(DEPDIR)/libdocument_a-imageframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-imageframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imageframe.cc' object='libdocument_a-imageframe.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-imageframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-imageframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-imageframe.obj `if test -f 'imageframe.cc'; then $(CYGPATH_W) 'imageframe.cc'; else $(CYGPATH_W) '$(srcdir)/imageframe.cc'; fi` libdocument_a-page.o: page.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-page.o -MD -MP -MF "$(DEPDIR)/libdocument_a-page.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-page.o `test -f 'page.cc' || echo '$(srcdir)/'`page.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-page.Tpo" "$(DEPDIR)/libdocument_a-page.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-page.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-page.o -MD -MP -MF "$(DEPDIR)/libdocument_a-page.Tpo" -c -o libdocument_a-page.o `test -f 'page.cc' || echo '$(srcdir)/'`page.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-page.Tpo" "$(DEPDIR)/libdocument_a-page.Po"; else rm -f "$(DEPDIR)/libdocument_a-page.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='page.cc' object='libdocument_a-page.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-page.Po' tmpdepfile='$(DEPDIR)/libdocument_a-page.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-page.o `test -f 'page.cc' || echo '$(srcdir)/'`page.cc libdocument_a-page.obj: page.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-page.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-page.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-page.obj `if test -f 'page.cc'; then $(CYGPATH_W) 'page.cc'; else $(CYGPATH_W) '$(srcdir)/page.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-page.Tpo" "$(DEPDIR)/libdocument_a-page.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-page.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-page.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-page.Tpo" -c -o libdocument_a-page.obj `if test -f 'page.cc'; then $(CYGPATH_W) 'page.cc'; else $(CYGPATH_W) '$(srcdir)/page.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-page.Tpo" "$(DEPDIR)/libdocument_a-page.Po"; else rm -f "$(DEPDIR)/libdocument_a-page.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='page.cc' object='libdocument_a-page.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-page.Po' tmpdepfile='$(DEPDIR)/libdocument_a-page.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-page.obj `if test -f 'page.cc'; then $(CYGPATH_W) 'page.cc'; else $(CYGPATH_W) '$(srcdir)/page.cc'; fi` libdocument_a-pagent.o: pagent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-pagent.o -MD -MP -MF "$(DEPDIR)/libdocument_a-pagent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-pagent.o `test -f 'pagent.cc' || echo '$(srcdir)/'`pagent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-pagent.Tpo" "$(DEPDIR)/libdocument_a-pagent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-pagent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-pagent.o -MD -MP -MF "$(DEPDIR)/libdocument_a-pagent.Tpo" -c -o libdocument_a-pagent.o `test -f 'pagent.cc' || echo '$(srcdir)/'`pagent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-pagent.Tpo" "$(DEPDIR)/libdocument_a-pagent.Po"; else rm -f "$(DEPDIR)/libdocument_a-pagent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagent.cc' object='libdocument_a-pagent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-pagent.Po' tmpdepfile='$(DEPDIR)/libdocument_a-pagent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-pagent.o `test -f 'pagent.cc' || echo '$(srcdir)/'`pagent.cc libdocument_a-pagent.obj: pagent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-pagent.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-pagent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-pagent.obj `if test -f 'pagent.cc'; then $(CYGPATH_W) 'pagent.cc'; else $(CYGPATH_W) '$(srcdir)/pagent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-pagent.Tpo" "$(DEPDIR)/libdocument_a-pagent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-pagent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-pagent.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-pagent.Tpo" -c -o libdocument_a-pagent.obj `if test -f 'pagent.cc'; then $(CYGPATH_W) 'pagent.cc'; else $(CYGPATH_W) '$(srcdir)/pagent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-pagent.Tpo" "$(DEPDIR)/libdocument_a-pagent.Po"; else rm -f "$(DEPDIR)/libdocument_a-pagent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagent.cc' object='libdocument_a-pagent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-pagent.Po' tmpdepfile='$(DEPDIR)/libdocument_a-pagent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-pagent.obj `if test -f 'pagent.cc'; then $(CYGPATH_W) 'pagent.cc'; else $(CYGPATH_W) '$(srcdir)/pagent.cc'; fi` libdocument_a-rasterframe.o: rasterframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-rasterframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-rasterframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-rasterframe.o `test -f 'rasterframe.cc' || echo '$(srcdir)/'`rasterframe.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo" "$(DEPDIR)/libdocument_a-rasterframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-rasterframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-rasterframe.Tpo" -c -o libdocument_a-rasterframe.o `test -f 'rasterframe.cc' || echo '$(srcdir)/'`rasterframe.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo" "$(DEPDIR)/libdocument_a-rasterframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rasterframe.cc' object='libdocument_a-rasterframe.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-rasterframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-rasterframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-rasterframe.o `test -f 'rasterframe.cc' || echo '$(srcdir)/'`rasterframe.cc libdocument_a-rasterframe.obj: rasterframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-rasterframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-rasterframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-rasterframe.obj `if test -f 'rasterframe.cc'; then $(CYGPATH_W) 'rasterframe.cc'; else $(CYGPATH_W) '$(srcdir)/rasterframe.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo" "$(DEPDIR)/libdocument_a-rasterframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-rasterframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-rasterframe.Tpo" -c -o libdocument_a-rasterframe.obj `if test -f 'rasterframe.cc'; then $(CYGPATH_W) 'rasterframe.cc'; else $(CYGPATH_W) '$(srcdir)/rasterframe.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo" "$(DEPDIR)/libdocument_a-rasterframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-rasterframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rasterframe.cc' object='libdocument_a-rasterframe.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-rasterframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-rasterframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-rasterframe.obj `if test -f 'rasterframe.cc'; then $(CYGPATH_W) 'rasterframe.cc'; else $(CYGPATH_W) '$(srcdir)/rasterframe.cc'; fi` libdocument_a-textframe.o: textframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-textframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-textframe.o `test -f 'textframe.cc' || echo '$(srcdir)/'`textframe.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textframe.Tpo" "$(DEPDIR)/libdocument_a-textframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-textframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textframe.o -MD -MP -MF "$(DEPDIR)/libdocument_a-textframe.Tpo" -c -o libdocument_a-textframe.o `test -f 'textframe.cc' || echo '$(srcdir)/'`textframe.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textframe.Tpo" "$(DEPDIR)/libdocument_a-textframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-textframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textframe.cc' object='libdocument_a-textframe.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-textframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-textframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-textframe.o `test -f 'textframe.cc' || echo '$(srcdir)/'`textframe.cc libdocument_a-textframe.obj: textframe.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-textframe.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-textframe.obj `if test -f 'textframe.cc'; then $(CYGPATH_W) 'textframe.cc'; else $(CYGPATH_W) '$(srcdir)/textframe.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textframe.Tpo" "$(DEPDIR)/libdocument_a-textframe.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-textframe.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textframe.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-textframe.Tpo" -c -o libdocument_a-textframe.obj `if test -f 'textframe.cc'; then $(CYGPATH_W) 'textframe.cc'; else $(CYGPATH_W) '$(srcdir)/textframe.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textframe.Tpo" "$(DEPDIR)/libdocument_a-textframe.Po"; else rm -f "$(DEPDIR)/libdocument_a-textframe.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textframe.cc' object='libdocument_a-textframe.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-textframe.Po' tmpdepfile='$(DEPDIR)/libdocument_a-textframe.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-textframe.obj `if test -f 'textframe.cc'; then $(CYGPATH_W) 'textframe.cc'; else $(CYGPATH_W) '$(srcdir)/textframe.cc'; fi` libdocument_a-textstream.o: textstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textstream.o -MD -MP -MF "$(DEPDIR)/libdocument_a-textstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-textstream.o `test -f 'textstream.cc' || echo '$(srcdir)/'`textstream.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textstream.Tpo" "$(DEPDIR)/libdocument_a-textstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-textstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textstream.o -MD -MP -MF "$(DEPDIR)/libdocument_a-textstream.Tpo" -c -o libdocument_a-textstream.o `test -f 'textstream.cc' || echo '$(srcdir)/'`textstream.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textstream.Tpo" "$(DEPDIR)/libdocument_a-textstream.Po"; else rm -f "$(DEPDIR)/libdocument_a-textstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textstream.cc' object='libdocument_a-textstream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-textstream.Po' tmpdepfile='$(DEPDIR)/libdocument_a-textstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-textstream.o `test -f 'textstream.cc' || echo '$(srcdir)/'`textstream.cc libdocument_a-textstream.obj: textstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textstream.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-textstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-textstream.obj `if test -f 'textstream.cc'; then $(CYGPATH_W) 'textstream.cc'; else $(CYGPATH_W) '$(srcdir)/textstream.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textstream.Tpo" "$(DEPDIR)/libdocument_a-textstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-textstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-textstream.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-textstream.Tpo" -c -o libdocument_a-textstream.obj `if test -f 'textstream.cc'; then $(CYGPATH_W) 'textstream.cc'; else $(CYGPATH_W) '$(srcdir)/textstream.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-textstream.Tpo" "$(DEPDIR)/libdocument_a-textstream.Po"; else rm -f "$(DEPDIR)/libdocument_a-textstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textstream.cc' object='libdocument_a-textstream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-textstream.Po' tmpdepfile='$(DEPDIR)/libdocument_a-textstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-textstream.obj `if test -f 'textstream.cc'; then $(CYGPATH_W) 'textstream.cc'; else $(CYGPATH_W) '$(srcdir)/textstream.cc'; fi` libdocument_a-paper_sizes.o: paper_sizes.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-paper_sizes.o -MD -MP -MF "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-paper_sizes.o `test -f 'paper_sizes.cc' || echo '$(srcdir)/'`paper_sizes.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" "$(DEPDIR)/libdocument_a-paper_sizes.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-paper_sizes.o -MD -MP -MF "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" -c -o libdocument_a-paper_sizes.o `test -f 'paper_sizes.cc' || echo '$(srcdir)/'`paper_sizes.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" "$(DEPDIR)/libdocument_a-paper_sizes.Po"; else rm -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='paper_sizes.cc' object='libdocument_a-paper_sizes.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-paper_sizes.Po' tmpdepfile='$(DEPDIR)/libdocument_a-paper_sizes.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-paper_sizes.o `test -f 'paper_sizes.cc' || echo '$(srcdir)/'`paper_sizes.cc libdocument_a-paper_sizes.obj: paper_sizes.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-paper_sizes.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-paper_sizes.obj `if test -f 'paper_sizes.cc'; then $(CYGPATH_W) 'paper_sizes.cc'; else $(CYGPATH_W) '$(srcdir)/paper_sizes.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" "$(DEPDIR)/libdocument_a-paper_sizes.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-paper_sizes.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" -c -o libdocument_a-paper_sizes.obj `if test -f 'paper_sizes.cc'; then $(CYGPATH_W) 'paper_sizes.cc'; else $(CYGPATH_W) '$(srcdir)/paper_sizes.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo" "$(DEPDIR)/libdocument_a-paper_sizes.Po"; else rm -f "$(DEPDIR)/libdocument_a-paper_sizes.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='paper_sizes.cc' object='libdocument_a-paper_sizes.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-paper_sizes.Po' tmpdepfile='$(DEPDIR)/libdocument_a-paper_sizes.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-paper_sizes.obj `if test -f 'paper_sizes.cc'; then $(CYGPATH_W) 'paper_sizes.cc'; else $(CYGPATH_W) '$(srcdir)/paper_sizes.cc'; fi` libdocument_a-getxsltparams.o: getxsltparams.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-getxsltparams.o -MD -MP -MF "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-getxsltparams.o `test -f 'getxsltparams.cc' || echo '$(srcdir)/'`getxsltparams.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" "$(DEPDIR)/libdocument_a-getxsltparams.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-getxsltparams.o -MD -MP -MF "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" -c -o libdocument_a-getxsltparams.o `test -f 'getxsltparams.cc' || echo '$(srcdir)/'`getxsltparams.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" "$(DEPDIR)/libdocument_a-getxsltparams.Po"; else rm -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='getxsltparams.cc' object='libdocument_a-getxsltparams.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-getxsltparams.Po' tmpdepfile='$(DEPDIR)/libdocument_a-getxsltparams.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-getxsltparams.o `test -f 'getxsltparams.cc' || echo '$(srcdir)/'`getxsltparams.cc libdocument_a-getxsltparams.obj: getxsltparams.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-getxsltparams.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-getxsltparams.obj `if test -f 'getxsltparams.cc'; then $(CYGPATH_W) 'getxsltparams.cc'; else $(CYGPATH_W) '$(srcdir)/getxsltparams.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" "$(DEPDIR)/libdocument_a-getxsltparams.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-getxsltparams.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" -c -o libdocument_a-getxsltparams.obj `if test -f 'getxsltparams.cc'; then $(CYGPATH_W) 'getxsltparams.cc'; else $(CYGPATH_W) '$(srcdir)/getxsltparams.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo" "$(DEPDIR)/libdocument_a-getxsltparams.Po"; else rm -f "$(DEPDIR)/libdocument_a-getxsltparams.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='getxsltparams.cc' object='libdocument_a-getxsltparams.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-getxsltparams.Po' tmpdepfile='$(DEPDIR)/libdocument_a-getxsltparams.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-getxsltparams.obj `if test -f 'getxsltparams.cc'; then $(CYGPATH_W) 'getxsltparams.cc'; else $(CYGPATH_W) '$(srcdir)/getxsltparams.cc'; fi` libdocument_a-loader.o: loader.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-loader.o -MD -MP -MF "$(DEPDIR)/libdocument_a-loader.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-loader.o `test -f 'loader.cc' || echo '$(srcdir)/'`loader.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-loader.Tpo" "$(DEPDIR)/libdocument_a-loader.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-loader.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-loader.o -MD -MP -MF "$(DEPDIR)/libdocument_a-loader.Tpo" -c -o libdocument_a-loader.o `test -f 'loader.cc' || echo '$(srcdir)/'`loader.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-loader.Tpo" "$(DEPDIR)/libdocument_a-loader.Po"; else rm -f "$(DEPDIR)/libdocument_a-loader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='loader.cc' object='libdocument_a-loader.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-loader.Po' tmpdepfile='$(DEPDIR)/libdocument_a-loader.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-loader.o `test -f 'loader.cc' || echo '$(srcdir)/'`loader.cc libdocument_a-loader.obj: loader.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-loader.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-loader.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libdocument_a-loader.obj `if test -f 'loader.cc'; then $(CYGPATH_W) 'loader.cc'; else $(CYGPATH_W) '$(srcdir)/loader.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-loader.Tpo" "$(DEPDIR)/libdocument_a-loader.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libdocument_a-loader.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -MT libdocument_a-loader.obj -MD -MP -MF "$(DEPDIR)/libdocument_a-loader.Tpo" -c -o libdocument_a-loader.obj `if test -f 'loader.cc'; then $(CYGPATH_W) 'loader.cc'; else $(CYGPATH_W) '$(srcdir)/loader.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdocument_a-loader.Tpo" "$(DEPDIR)/libdocument_a-loader.Po"; else rm -f "$(DEPDIR)/libdocument_a-loader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='loader.cc' object='libdocument_a-loader.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libdocument_a-loader.Po' tmpdepfile='$(DEPDIR)/libdocument_a-loader.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdocument_a_CXXFLAGS) $(CXXFLAGS) -c -o libdocument_a-loader.obj `if test -f 'loader.cc'; then $(CYGPATH_W) 'loader.cc'; else $(CYGPATH_W) '$(srcdir)/loader.cc'; fi` 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 \ @@ -556,6 +452,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -567,10 +464,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -593,10 +491,6 @@ 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'`; \ @@ -610,7 +504,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -628,7 +522,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) - installdirs: install: install-am install-exec: install-exec-am @@ -649,7 +542,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -668,6 +561,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -703,13 +598,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-noinstLIBRARIES ctags distclean distclean-compile \ - distclean-generic 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 pdf pdf-am \ - ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-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 pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -ur releases/passepartout-0.6/src/pptout/document/pagent.cc passepartout-0.6/src/pptout/document/pagent.cc --- releases/passepartout-0.6/src/pptout/document/pagent.cc 2004-09-26 21:32:34.000000000 +0200 +++ passepartout-0.6/src/pptout/document/pagent.cc 2007-03-03 22:16:38.000000000 +0100 @@ -119,13 +119,12 @@ // a group would need to maintain a list of connections. // Note: we will get multible implicit signals. if(parent) { - using SigC::slot; - geometry_connection = geometry_changed_signal.connect - (slot(*parent, &Group::child_geometry_changed)); - - props_connection = props_changed_signal.connect - (slot(*parent, &Group::child_props_changed)); - } + geometry_connection = geometry_changed_signal.connect + (mem_fun(*parent, &Group::child_geometry_changed)); + + props_connection = props_changed_signal.connect + (mem_fun(*parent, &Group::child_props_changed)); + } } Pagent::Resizable::~Resizable() {} Endast i passepartout-0.6/src/pptout/document: pagent.cc~ diff -ur releases/passepartout-0.6/src/pptout/document/pagent.h passepartout-0.6/src/pptout/document/pagent.h --- releases/passepartout-0.6/src/pptout/document/pagent.h 2004-10-02 23:18:45.000000000 +0200 +++ passepartout-0.6/src/pptout/document/pagent.h 2007-03-03 22:14:29.000000000 +0100 @@ -7,7 +7,7 @@ #include "util/boundary.h" #include "ps/pdf.h" #include -#include +#include #include #include #include @@ -132,7 +132,7 @@ float obstacle_margin; // connections to parent - SigC::Connection draw_connection, geometry_connection, props_connection; + sigc::connection draw_connection, geometry_connection, props_connection; void connect_to_parent(); private: Endast i passepartout-0.6/src/pptout/document: pagent.h~ diff -ur releases/passepartout-0.6/src/pptout/document/rasterframe.cc passepartout-0.6/src/pptout/document/rasterframe.cc --- releases/passepartout-0.6/src/pptout/document/rasterframe.cc 2004-10-02 23:18:45.000000000 +0200 +++ passepartout-0.6/src/pptout/document/rasterframe.cc 2007-03-03 22:17:06.000000000 +0100 @@ -20,8 +20,8 @@ if(association.empty()) throw Error::Read("\"file\" attribute missing or empty in RasterFrame"); - filewatcher.modified_signal.connect(slot(*this, - &RasterFrame::on_file_modified)); + filewatcher.modified_signal.connect(mem_fun(*this, + &RasterFrame::on_file_modified)); on_file_modified(); // Handle widht and height for backwards compatibility @@ -40,8 +40,8 @@ : BasicFrame(parent, "Raster " + basename(filename)), association(filename), filewatcher(association) { - filewatcher.modified_signal.connect(slot(*this, - &RasterFrame::on_file_modified)); + filewatcher.modified_signal.connect(mem_fun(*this, + &RasterFrame::on_file_modified)); try { filepixbuf = Gdk::Pixbuf::create_from_file(association); Endast i passepartout-0.6/src/pptout/document: rasterframe.cc~ diff -ur releases/passepartout-0.6/src/pptout/document/textframe.cc passepartout-0.6/src/pptout/document/textframe.cc --- releases/passepartout-0.6/src/pptout/document/textframe.cc 2004-10-02 23:18:45.000000000 +0200 +++ passepartout-0.6/src/pptout/document/textframe.cc 2007-03-03 22:17:34.000000000 +0100 @@ -30,7 +30,7 @@ if(text_stream) text_stream->add_frame(this); signal_end_write_ps.connect - (slot(*this, &TextFrame::_end_write_ps)); + (mem_fun(*this, &TextFrame::_end_write_ps)); } TextFrame::TextFrame(const ElementWrap& xml, Group *parent) @@ -54,7 +54,7 @@ + "\" for text frame"); } // If stream is not present text_stream is null. This is ok. signal_end_write_ps.connect - (slot(*this, &TextFrame::_end_write_ps)); + (mem_fun(*this, &TextFrame::_end_write_ps)); } TextFrame::~TextFrame() { Endast i passepartout-0.6/src/pptout/document: textframe.cc~ diff -ur releases/passepartout-0.6/src/pptout/document/textstream.cc passepartout-0.6/src/pptout/document/textstream.cc --- releases/passepartout-0.6/src/pptout/document/textstream.cc 2004-10-28 20:18:32.000000000 +0200 +++ passepartout-0.6/src/pptout/document/textstream.cc 2007-03-03 23:56:36.000000000 +0100 @@ -139,15 +139,15 @@ TextStream::WorkerThread::WorkerThread(TextStream& s, const Frames& frames) : count_(0), stream(s), sorted_frames(frames), truncated(false), proc_stop_connection(ProcessManager::instance().process_stopped.connect - (SigC::slot(*this, - &WorkerThread::process_stopped))) + (mem_fun(*this, + &WorkerThread::process_stopped))) { sorted_frames.sort(SortingPredicate()); - signal_done.connect(SigC::slot(*this, &WorkerThread::on_done)); - signal_error.connect(SigC::slot(*this, &WorkerThread::on_error)); + signal_done.connect(mem_fun(*this, &WorkerThread::on_done)); + signal_error.connect(mem_fun(*this, &WorkerThread::on_error)); - thread = Glib::Thread::create(SigC::slot(*this, &WorkerThread::run), false); + thread = Glib::Thread::create(mem_fun(*this, &WorkerThread::run), false); debug << "Started thread " << thread << " from " << Glib::Thread::self() << std::endl; @@ -181,12 +181,12 @@ parameters[*i] = ""; association_watcher.modified_signal.connect - (SigC::slot(*this, &TextStream::on_file_modified)); + (mem_fun(*this, &TextStream::on_file_modified)); transform_watcher.modified_signal.connect - (SigC::slot(*this, &TextStream::on_file_modified)); + (mem_fun(*this, &TextStream::on_file_modified)); // make sure Gtk::main() is running - Glib::signal_idle().connect(SigC::slot(*this, &TextStream::on_idle)); + Glib::signal_idle().connect(mem_fun(*this, &TextStream::on_idle)); } TextStream::TextStream(const ElementWrap& xml) @@ -218,12 +218,12 @@ } association_watcher.modified_signal.connect - (SigC::slot(*this, &TextStream::on_file_modified)); + (mem_fun(*this, &TextStream::on_file_modified)); transform_watcher.modified_signal.connect - (SigC::slot(*this, &TextStream::on_file_modified)); + (mem_fun(*this, &TextStream::on_file_modified)); // make sure Gtk::main() is running - Glib::signal_idle().connect(SigC::slot(*this, &TextStream::on_idle)); + Glib::signal_idle().connect(mem_fun(*this, &TextStream::on_idle)); } TextStream::~TextStream() { @@ -399,7 +399,9 @@ started.open(); debug << "running internal xml2ps ..." << std::endl; - new_canvas = (new xml2ps::PsCanvas(pages, false /* no extra pages */)); + xml2ps::PsCanvas *tmp = new xml2ps::PsCanvas(pages, false /* no extra pages */); + tmp->reference(); + new_canvas = Glib::RefPtr(tmp); new_canvas->setSubstituteFontAliases(true); xml2ps::PsConverter parser(*new_canvas.operator->()); try { Endast i passepartout-0.6/src/pptout/document: textstream.cc~ diff -ur releases/passepartout-0.6/src/pptout/docview.cc passepartout-0.6/src/pptout/docview.cc --- releases/passepartout-0.6/src/pptout/docview.cc 2004-08-02 21:51:03.000000000 +0200 +++ passepartout-0.6/src/pptout/docview.cc 2007-03-03 22:52:04.000000000 +0100 @@ -230,11 +230,11 @@ current_page_num = document->get_first_page_num(); Document::size_changed_signal.connect - (slot(*this, &DocumentView::update_document_size)); + (mem_fun(*this, &DocumentView::update_document_size)); Document::changed_signal.connect - (slot(*this, &DocumentView::act_on_document_change)); + (mem_fun(*this, &DocumentView::act_on_document_change)); Document::selection_changed_signal.connect - (slot(*this, &DocumentView::act_on_selection_change)); + (mem_fun(*this, &DocumentView::act_on_selection_change)); } else { no_pages_group.hide(); } @@ -313,7 +313,7 @@ // Update handles when we turn pages current_page_num_changed_signal.connect - (slot(*this, &DocumentView::update_handles)); + (mem_fun(*this, &DocumentView::update_handles)); } DocumentView::~DocumentView() { @@ -446,8 +446,8 @@ std::list target_list; target_list.push_back(Gtk::TargetEntry(pptout_target)); clipboard->set(target_list, - SigC::slot(*this, &DocumentView::on_clipboard_get), - SigC::slot(*this, &DocumentView::on_clipboard_clear)); + mem_fun(*this, &DocumentView::on_clipboard_get), + mem_fun(*this, &DocumentView::on_clipboard_clear)); // store an XML representation of the selected pagents xmlpp::Document rep; @@ -504,7 +504,7 @@ Glib::RefPtr clipboard = Gtk::Clipboard::get(); clipboard->request_contents - (pptout_target, SigC::slot(*this, &DocumentView::on_clipboard_received)); + (pptout_target, mem_fun(*this, &DocumentView::on_clipboard_received)); } void @@ -685,39 +685,39 @@ Gdk::Cursor DocumentView::get_cursor(int x, int y) { DocRef document = get_document(); if(!document) - return Gdk::LEFT_PTR; + return Gdk::Cursor(Gdk::LEFT_PTR); if(moving) - return Gdk::FLEUR; + return Gdk::Cursor(Gdk::FLEUR); const Document::Selection selection = document->selected(); Pagent *obj = in_select_area(x, y); if(!reshaping && obj && find(selection.begin(), selection.end(), obj) == selection.end()) - return Gdk::TOP_LEFT_ARROW; + return Gdk::Cursor(Gdk::TOP_LEFT_ARROW); int j = reshape_box; if(reshaping || ((j = hover_reshape(x, y)) != -1)) switch(j) { - case 0: return Gdk::BOTTOM_LEFT_CORNER; - case 1: return Gdk::LEFT_SIDE; - case 2: return Gdk::TOP_LEFT_CORNER; - case 3: return Gdk::TOP_SIDE; - case 4: return Gdk::TOP_RIGHT_CORNER; - case 5: return Gdk::RIGHT_SIDE; - case 6: return Gdk::BOTTOM_RIGHT_CORNER; - case 7: return Gdk::BOTTOM_SIDE; - default: return Gdk::QUESTION_ARROW; + case 0: return Gdk::Cursor(Gdk::BOTTOM_LEFT_CORNER); + case 1: return Gdk::Cursor(Gdk::LEFT_SIDE); + case 2: return Gdk::Cursor(Gdk::TOP_LEFT_CORNER); + case 3: return Gdk::Cursor(Gdk::TOP_SIDE); + case 4: return Gdk::Cursor(Gdk::TOP_RIGHT_CORNER); + case 5: return Gdk::Cursor(Gdk::RIGHT_SIDE); + case 6: return Gdk::Cursor(Gdk::BOTTOM_RIGHT_CORNER); + case 7: return Gdk::Cursor(Gdk::BOTTOM_SIDE); + default: return Gdk::Cursor(Gdk::QUESTION_ARROW); } if(in_move_area(x, y)) - return Gdk::FLEUR; + return Gdk::Cursor(Gdk::FLEUR); if(in_select_area(x, y)) - return Gdk::TOP_LEFT_ARROW; + return Gdk::Cursor(Gdk::TOP_LEFT_ARROW); - return Gdk::LEFT_PTR; + return Gdk::Cursor(Gdk::LEFT_PTR); } void DocumentView::update_cursor(int x, int y) { @@ -997,10 +997,10 @@ selected_geometry_connection.disconnect(); selected_props_connection.disconnect(); selected_geometry_connection = pagent->geometry_changed_signal.connect - (SigC::hide(slot(*this, &DocumentView::update_handles))); + (sigc::hide(mem_fun(*this, &DocumentView::update_handles))); // this is for noticing if the pagent is being locked/unlocked selected_props_connection = pagent->props_changed_signal.connect - (SigC::hide(slot(*this, &DocumentView::update_handles))); + (sigc::hide(mem_fun(*this, &DocumentView::update_handles))); } ResizeHandles pos = get_resize_handles(*pagent); assert(pos.size() == 8); Endast i passepartout-0.6/src/pptout: docview.cc~ diff -ur releases/passepartout-0.6/src/pptout/docview.h passepartout-0.6/src/pptout/docview.h --- releases/passepartout-0.6/src/pptout/docview.h 2004-08-02 21:51:03.000000000 +0200 +++ passepartout-0.6/src/pptout/docview.h 2007-03-03 22:32:37.000000000 +0100 @@ -143,7 +143,7 @@ bool in_move_area(int x, int y); Pagent* in_select_area(int x, int y); - SigC::Connection connect_zoom_change(SigC::Slot1 slot) { + sigc::connection connect_zoom_change(sigc::slot1 slot) { return zoom_change_signal.connect(slot); } }; Endast i passepartout-0.6/src/pptout: docview.h~ diff -ur releases/passepartout-0.6/src/pptout/groupmeta.cc passepartout-0.6/src/pptout/groupmeta.cc --- releases/passepartout-0.6/src/pptout/groupmeta.cc 2004-04-27 17:54:03.000000000 +0200 +++ passepartout-0.6/src/pptout/groupmeta.cc 2007-03-03 23:19:44.000000000 +0100 @@ -15,7 +15,6 @@ Viewent::Ref GroupMeta::create_viewent(View& view, Pagent& node) { Viewent::Ref result(new GroupViewent (view, &dynamic_cast(node))); - result->set_manage(); // turn refcounting on result->reference(); return result; } Endast i passepartout-0.6/src/pptout: groupmeta.cc~ diff -ur releases/passepartout-0.6/src/pptout/groupviewent.cc passepartout-0.6/src/pptout/groupviewent.cc --- releases/passepartout-0.6/src/pptout/groupviewent.cc 2004-09-26 16:13:02.000000000 +0200 +++ passepartout-0.6/src/pptout/groupviewent.cc 2007-03-03 22:39:23.000000000 +0100 @@ -39,7 +39,7 @@ const Gdk::Color &get_color(Color::Id color) const { return parent.get_color(color); } - SigC::Connection connect_zoom_change(SigC::Slot1 slot) { + sigc::connection connect_zoom_change(sigc::slot1 slot) { return parent.connect_zoom_change(slot); } private: @@ -53,7 +53,7 @@ subview(new SubView(view, groupframe->get_matrix(), *content_group)), frame(groupframe), groupcon(frame->group_changed_signal.connect - (SigC::hide(slot(*this, &GroupViewent::group_changed)))) + (sigc::hide(mem_fun(*this, &GroupViewent::group_changed)))) { // Create the initial content, just as if it was added after this object. group_changed(); Endast i passepartout-0.6/src/pptout: groupviewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/icons/Makefile.in passepartout-0.6/src/pptout/icons/Makefile.in --- releases/passepartout-0.6/src/pptout/icons/Makefile.in 2004-10-31 20:23:52.000000000 +0100 +++ passepartout-0.6/src/pptout/icons/Makefile.in 2007-03-04 00:05:05.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +33,18 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src/pptout/icons +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +111,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +119,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +134,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -132,21 +146,38 @@ EXTRA_DIST = broken.xpm missing.xpm wait.xpm icons.h moose_24.h newframe_24.h\ streams_24.h grid_24.h icon_48.h logo.h -subdir = src/pptout/icons -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/pptout/icons/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/pptout/icons/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh uninstall-info-am: tags: TAGS TAGS: @@ -154,10 +185,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -171,7 +198,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -189,7 +216,6 @@ check-am: all-am check: check-am all-am: Makefile - installdirs: install: install-am install-exec: install-exec-am @@ -210,7 +236,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -227,6 +253,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -260,8 +288,8 @@ uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-generic distdir dvi dvi-am html html-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 \ diff -ur releases/passepartout-0.6/src/pptout/imagemeta.cc passepartout-0.6/src/pptout/imagemeta.cc --- releases/passepartout-0.6/src/pptout/imagemeta.cc 2004-06-03 16:35:20.000000000 +0200 +++ passepartout-0.6/src/pptout/imagemeta.cc 2007-03-03 23:17:15.000000000 +0100 @@ -18,13 +18,12 @@ PostscriptViewent* rawresult = new PostscriptViewent(view, &dynamic_cast(node)); Viewent::Ref result(rawresult); - result->set_manage(); // turn refcounting on result->reference(); // Images should be re-rastered when geometry changes, but not text frames, // so connect this signal here rather than in the result. node.geometry_changed_signal.connect - (SigC::hide(slot(*rawresult, &PostscriptViewent::regenerate))); + (sigc::hide(mem_fun(*rawresult, &PostscriptViewent::regenerate))); return result; } @@ -45,11 +44,11 @@ line->pack_start(*label, Gtk::PACK_SHRINK); line->pack_start(e_fname); e_fname.entry.get_entry()->signal_activate().connect - (slot(*this, &PropImage::on_change)); + (mem_fun(*this, &PropImage::on_change)); e_fname.entry.get_entry()->signal_focus_out_event().connect - (SigC::hide(bind_return(slot(*this, - &PropImage::on_change), - true))); + (sigc::hide(bind_return(mem_fun(*this, + &PropImage::on_change), + true))); pack_start(*line, Gtk::PACK_SHRINK); set_sensitive(false); update(); Endast i passepartout-0.6/src/pptout: imagemeta.cc~ diff -ur releases/passepartout-0.6/src/pptout/inspiration.cc passepartout-0.6/src/pptout/inspiration.cc --- releases/passepartout-0.6/src/pptout/inspiration.cc 2004-01-12 20:01:19.000000000 +0100 +++ passepartout-0.6/src/pptout/inspiration.cc 2007-03-03 22:30:33.000000000 +0100 @@ -207,7 +207,7 @@ grow(); candy_found(); connection = Glib::signal_timeout().connect - (slot(*this, &Game::update), 20); + (mem_fun(*this, &Game::update), 20); } void Game::stop_game() { @@ -292,7 +292,7 @@ add_button(Gtk::Stock::CLOSE, 0); add_button(Gtk::Stock::EXECUTE, 1); - game->score_change_signal.connect(slot(*this, &Inspiration::score_change)); + game->score_change_signal.connect(mem_fun(*this, &Inspiration::score_change)); } Inspiration::~Inspiration() {} Endast i passepartout-0.6/src/pptout: inspiration.cc~ diff -ur releases/passepartout-0.6/src/pptout/Makefile.in passepartout-0.6/src/pptout/Makefile.in --- releases/passepartout-0.6/src/pptout/Makefile.in 2004-10-31 20:23:51.000000000 +0100 +++ passepartout-0.6/src/pptout/Makefile.in 2007-03-04 00:05:04.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,78 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +bin_PROGRAMS = passepartout$(EXEEXT) +subdir = src/pptout +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_passepartout_OBJECTS = passepartout-inspiration.$(OBJEXT) \ + passepartout-streamdialog.$(OBJEXT) \ + passepartout-pagesel.$(OBJEXT) \ + passepartout-aboutdialog.$(OBJEXT) \ + passepartout-docmeta.$(OBJEXT) \ + passepartout-printdialog.$(OBJEXT) \ + passepartout-viewent.$(OBJEXT) \ + passepartout-groupviewent.$(OBJEXT) \ + passepartout-postscriptviewent.$(OBJEXT) \ + passepartout-pageviewent.$(OBJEXT) \ + passepartout-rasterviewent.$(OBJEXT) \ + passepartout-textviewent.$(OBJEXT) \ + passepartout-docview.$(OBJEXT) passepartout-window.$(OBJEXT) \ + passepartout-main.$(OBJEXT) passepartout-lengthunits.$(OBJEXT) \ + passepartout-config.$(OBJEXT) \ + passepartout-preferencesdialog.$(OBJEXT) \ + passepartout-propertiesdialog.$(OBJEXT) \ + passepartout-imagemeta.$(OBJEXT) \ + passepartout-rastermeta.$(OBJEXT) \ + passepartout-textmeta.$(OBJEXT) \ + passepartout-groupmeta.$(OBJEXT) \ + passepartout-pagemeta.$(OBJEXT) \ + passepartout-propbase.$(OBJEXT) passepartout-pptcore.$(OBJEXT) \ + passepartout-docpropsdialog.$(OBJEXT) \ + passepartout-webbrowser.$(OBJEXT) \ + passepartout-builddate.$(OBJEXT) \ + passepartout-windowmenus.$(OBJEXT) \ + passepartout-authors.$(OBJEXT) +passepartout_OBJECTS = $(am_passepartout_OBJECTS) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = document/libdocument.a ../xml2ps/libxml2ps.a \ + ../fonts/libfonts.a ../ps/libps.a ../util/libpptutil.a \ + widget/libwidget.a +passepartout_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(passepartout_SOURCES) +DIST_SOURCES = $(passepartout_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +173,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +181,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +196,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,11 +206,7 @@ target_alias = @target_alias@ xmldir = @xmldir@ SUBDIRS = document widget icons - EXTRA_DIST = NOTES - -bin_PROGRAMS = passepartout - dist_noinst_HEADERS = aboutdialog.h \ config.h preferencesdialog.h docpropsdialog.h docview.h \ groupmeta.h imagemeta.h pagemeta.h inspiration.h \ @@ -147,7 +219,6 @@ lengthunits.h view.h window.h \ webbrowser.h - passepartout_SOURCES = inspiration.cc streamdialog.cc pagesel.cc \ aboutdialog.cc docmeta.cc \ printdialog.cc \ @@ -160,136 +231,60 @@ propbase.cc pptcore.cc docpropsdialog.cc \ webbrowser.cc builddate.cc windowmenus.cc authors.cc - passepartout_CXXFLAGS = $(XML2_CFLAGS) $(XMLPP_CFLAGS) \ - $(GDK_PIXBUF_CFLAGS) $(GTKMM_CFLAGS) $(GNOMECANVAS_CFLAGS) \ - $(SIGC_CFLAGS)\ --I$(top_srcdir)/src -D'DOCDIR=$(docdir)' \ - -D'XMLPATH=$(xmldir)' - - -passepartout_LDADD = $(XML2_LIBS) $(XMLPP_LIBS) $(GDK_PIXBUF_LIBS) \ - $(GTKMM_LIBS) $(GNOMECANVAS_LIBS) $(SIGC_LIBS) $(GTHREAD_LIBS)\ -$(pptpartlibs) - + $(GDK_PIXBUF_CFLAGS) $(GTKMM_CFLAGS) $(GNOMECANVAS_CFLAGS) \ + $(SIGC_CFLAGS) -I$(top_srcdir)/src -D'DOCDIR=$(docdir)' \ + -D'XMLPATH=$(xmldir)' +passepartout_LDADD = $(XML2_LIBS) $(XMLPP_LIBS) $(GDK_PIXBUF_LIBS) \ + $(GTKMM_LIBS) $(GNOMECANVAS_LIBS) $(SIGC_LIBS) $(GTHREAD_LIBS) \ + $(pptpartlibs) pptpartlibs = document/libdocument.a ../xml2ps/libxml2ps.a \ ../fonts/libfonts.a ../ps/libps.a \ ../util/libpptutil.a widget/libwidget.a -subdir = src/pptout -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -bin_PROGRAMS = passepartout$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) - -am_passepartout_OBJECTS = passepartout-inspiration.$(OBJEXT) \ - passepartout-streamdialog.$(OBJEXT) \ - passepartout-pagesel.$(OBJEXT) \ - passepartout-aboutdialog.$(OBJEXT) \ - passepartout-docmeta.$(OBJEXT) \ - passepartout-printdialog.$(OBJEXT) \ - passepartout-viewent.$(OBJEXT) \ - passepartout-groupviewent.$(OBJEXT) \ - passepartout-postscriptviewent.$(OBJEXT) \ - passepartout-pageviewent.$(OBJEXT) \ - passepartout-rasterviewent.$(OBJEXT) \ - passepartout-textviewent.$(OBJEXT) \ - passepartout-docview.$(OBJEXT) passepartout-window.$(OBJEXT) \ - passepartout-main.$(OBJEXT) passepartout-lengthunits.$(OBJEXT) \ - passepartout-config.$(OBJEXT) \ - passepartout-preferencesdialog.$(OBJEXT) \ - passepartout-propertiesdialog.$(OBJEXT) \ - passepartout-imagemeta.$(OBJEXT) \ - passepartout-rastermeta.$(OBJEXT) \ - passepartout-textmeta.$(OBJEXT) \ - passepartout-groupmeta.$(OBJEXT) \ - passepartout-pagemeta.$(OBJEXT) passepartout-propbase.$(OBJEXT) \ - passepartout-pptcore.$(OBJEXT) \ - passepartout-docpropsdialog.$(OBJEXT) \ - passepartout-webbrowser.$(OBJEXT) \ - passepartout-builddate.$(OBJEXT) \ - passepartout-windowmenus.$(OBJEXT) \ - passepartout-authors.$(OBJEXT) -passepartout_OBJECTS = $(am_passepartout_OBJECTS) -passepartout_DEPENDENCIES = document/libdocument.a ../xml2ps/libxml2ps.a \ - ../fonts/libfonts.a ../ps/libps.a ../util/libpptutil.a \ - widget/libwidget.a -passepartout_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/passepartout-aboutdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-authors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-builddate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-config.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-docmeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-docpropsdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-docview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-groupmeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-groupviewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-imagemeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-inspiration.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-lengthunits.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-main.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-pagemeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-pagesel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-pageviewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-postscriptviewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-pptcore.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-preferencesdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-printdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-propbase.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-propertiesdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-rastermeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-rasterviewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-streamdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-textmeta.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-textviewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-viewent.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-webbrowser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-window.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/passepartout-windowmenus.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(passepartout_SOURCES) -HEADERS = $(dist_noinst_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 = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(passepartout_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/pptout/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/pptout/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -297,8 +292,8 @@ @$(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; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -308,7 +303,7 @@ $(CXXLINK) $(passepartout_LDFLAGS) $(passepartout_OBJECTS) $(passepartout_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -346,707 +341,451 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/passepartout-windowmenus.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` passepartout-inspiration.o: inspiration.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-inspiration.o -MD -MP -MF "$(DEPDIR)/passepartout-inspiration.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-inspiration.o `test -f 'inspiration.cc' || echo '$(srcdir)/'`inspiration.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-inspiration.Tpo" "$(DEPDIR)/passepartout-inspiration.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-inspiration.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-inspiration.o -MD -MP -MF "$(DEPDIR)/passepartout-inspiration.Tpo" -c -o passepartout-inspiration.o `test -f 'inspiration.cc' || echo '$(srcdir)/'`inspiration.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-inspiration.Tpo" "$(DEPDIR)/passepartout-inspiration.Po"; else rm -f "$(DEPDIR)/passepartout-inspiration.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='inspiration.cc' object='passepartout-inspiration.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-inspiration.Po' tmpdepfile='$(DEPDIR)/passepartout-inspiration.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-inspiration.o `test -f 'inspiration.cc' || echo '$(srcdir)/'`inspiration.cc passepartout-inspiration.obj: inspiration.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-inspiration.obj -MD -MP -MF "$(DEPDIR)/passepartout-inspiration.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-inspiration.obj `if test -f 'inspiration.cc'; then $(CYGPATH_W) 'inspiration.cc'; else $(CYGPATH_W) '$(srcdir)/inspiration.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-inspiration.Tpo" "$(DEPDIR)/passepartout-inspiration.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-inspiration.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-inspiration.obj -MD -MP -MF "$(DEPDIR)/passepartout-inspiration.Tpo" -c -o passepartout-inspiration.obj `if test -f 'inspiration.cc'; then $(CYGPATH_W) 'inspiration.cc'; else $(CYGPATH_W) '$(srcdir)/inspiration.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-inspiration.Tpo" "$(DEPDIR)/passepartout-inspiration.Po"; else rm -f "$(DEPDIR)/passepartout-inspiration.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='inspiration.cc' object='passepartout-inspiration.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-inspiration.Po' tmpdepfile='$(DEPDIR)/passepartout-inspiration.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-inspiration.obj `if test -f 'inspiration.cc'; then $(CYGPATH_W) 'inspiration.cc'; else $(CYGPATH_W) '$(srcdir)/inspiration.cc'; fi` passepartout-streamdialog.o: streamdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-streamdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-streamdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-streamdialog.o `test -f 'streamdialog.cc' || echo '$(srcdir)/'`streamdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-streamdialog.Tpo" "$(DEPDIR)/passepartout-streamdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-streamdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-streamdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-streamdialog.Tpo" -c -o passepartout-streamdialog.o `test -f 'streamdialog.cc' || echo '$(srcdir)/'`streamdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-streamdialog.Tpo" "$(DEPDIR)/passepartout-streamdialog.Po"; else rm -f "$(DEPDIR)/passepartout-streamdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='streamdialog.cc' object='passepartout-streamdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-streamdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-streamdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-streamdialog.o `test -f 'streamdialog.cc' || echo '$(srcdir)/'`streamdialog.cc passepartout-streamdialog.obj: streamdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-streamdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-streamdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-streamdialog.obj `if test -f 'streamdialog.cc'; then $(CYGPATH_W) 'streamdialog.cc'; else $(CYGPATH_W) '$(srcdir)/streamdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-streamdialog.Tpo" "$(DEPDIR)/passepartout-streamdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-streamdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-streamdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-streamdialog.Tpo" -c -o passepartout-streamdialog.obj `if test -f 'streamdialog.cc'; then $(CYGPATH_W) 'streamdialog.cc'; else $(CYGPATH_W) '$(srcdir)/streamdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-streamdialog.Tpo" "$(DEPDIR)/passepartout-streamdialog.Po"; else rm -f "$(DEPDIR)/passepartout-streamdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='streamdialog.cc' object='passepartout-streamdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-streamdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-streamdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-streamdialog.obj `if test -f 'streamdialog.cc'; then $(CYGPATH_W) 'streamdialog.cc'; else $(CYGPATH_W) '$(srcdir)/streamdialog.cc'; fi` passepartout-pagesel.o: pagesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagesel.o -MD -MP -MF "$(DEPDIR)/passepartout-pagesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pagesel.o `test -f 'pagesel.cc' || echo '$(srcdir)/'`pagesel.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagesel.Tpo" "$(DEPDIR)/passepartout-pagesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pagesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagesel.o -MD -MP -MF "$(DEPDIR)/passepartout-pagesel.Tpo" -c -o passepartout-pagesel.o `test -f 'pagesel.cc' || echo '$(srcdir)/'`pagesel.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagesel.Tpo" "$(DEPDIR)/passepartout-pagesel.Po"; else rm -f "$(DEPDIR)/passepartout-pagesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagesel.cc' object='passepartout-pagesel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pagesel.Po' tmpdepfile='$(DEPDIR)/passepartout-pagesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pagesel.o `test -f 'pagesel.cc' || echo '$(srcdir)/'`pagesel.cc passepartout-pagesel.obj: pagesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagesel.obj -MD -MP -MF "$(DEPDIR)/passepartout-pagesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pagesel.obj `if test -f 'pagesel.cc'; then $(CYGPATH_W) 'pagesel.cc'; else $(CYGPATH_W) '$(srcdir)/pagesel.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagesel.Tpo" "$(DEPDIR)/passepartout-pagesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pagesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagesel.obj -MD -MP -MF "$(DEPDIR)/passepartout-pagesel.Tpo" -c -o passepartout-pagesel.obj `if test -f 'pagesel.cc'; then $(CYGPATH_W) 'pagesel.cc'; else $(CYGPATH_W) '$(srcdir)/pagesel.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagesel.Tpo" "$(DEPDIR)/passepartout-pagesel.Po"; else rm -f "$(DEPDIR)/passepartout-pagesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagesel.cc' object='passepartout-pagesel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pagesel.Po' tmpdepfile='$(DEPDIR)/passepartout-pagesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pagesel.obj `if test -f 'pagesel.cc'; then $(CYGPATH_W) 'pagesel.cc'; else $(CYGPATH_W) '$(srcdir)/pagesel.cc'; fi` passepartout-aboutdialog.o: aboutdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-aboutdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-aboutdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-aboutdialog.o `test -f 'aboutdialog.cc' || echo '$(srcdir)/'`aboutdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-aboutdialog.Tpo" "$(DEPDIR)/passepartout-aboutdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-aboutdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-aboutdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-aboutdialog.Tpo" -c -o passepartout-aboutdialog.o `test -f 'aboutdialog.cc' || echo '$(srcdir)/'`aboutdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-aboutdialog.Tpo" "$(DEPDIR)/passepartout-aboutdialog.Po"; else rm -f "$(DEPDIR)/passepartout-aboutdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='aboutdialog.cc' object='passepartout-aboutdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-aboutdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-aboutdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-aboutdialog.o `test -f 'aboutdialog.cc' || echo '$(srcdir)/'`aboutdialog.cc passepartout-aboutdialog.obj: aboutdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-aboutdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-aboutdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-aboutdialog.obj `if test -f 'aboutdialog.cc'; then $(CYGPATH_W) 'aboutdialog.cc'; else $(CYGPATH_W) '$(srcdir)/aboutdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-aboutdialog.Tpo" "$(DEPDIR)/passepartout-aboutdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-aboutdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-aboutdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-aboutdialog.Tpo" -c -o passepartout-aboutdialog.obj `if test -f 'aboutdialog.cc'; then $(CYGPATH_W) 'aboutdialog.cc'; else $(CYGPATH_W) '$(srcdir)/aboutdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-aboutdialog.Tpo" "$(DEPDIR)/passepartout-aboutdialog.Po"; else rm -f "$(DEPDIR)/passepartout-aboutdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='aboutdialog.cc' object='passepartout-aboutdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-aboutdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-aboutdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-aboutdialog.obj `if test -f 'aboutdialog.cc'; then $(CYGPATH_W) 'aboutdialog.cc'; else $(CYGPATH_W) '$(srcdir)/aboutdialog.cc'; fi` passepartout-docmeta.o: docmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-docmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docmeta.o `test -f 'docmeta.cc' || echo '$(srcdir)/'`docmeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docmeta.Tpo" "$(DEPDIR)/passepartout-docmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-docmeta.Tpo" -c -o passepartout-docmeta.o `test -f 'docmeta.cc' || echo '$(srcdir)/'`docmeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docmeta.Tpo" "$(DEPDIR)/passepartout-docmeta.Po"; else rm -f "$(DEPDIR)/passepartout-docmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docmeta.cc' object='passepartout-docmeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-docmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docmeta.o `test -f 'docmeta.cc' || echo '$(srcdir)/'`docmeta.cc passepartout-docmeta.obj: docmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-docmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docmeta.obj `if test -f 'docmeta.cc'; then $(CYGPATH_W) 'docmeta.cc'; else $(CYGPATH_W) '$(srcdir)/docmeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docmeta.Tpo" "$(DEPDIR)/passepartout-docmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-docmeta.Tpo" -c -o passepartout-docmeta.obj `if test -f 'docmeta.cc'; then $(CYGPATH_W) 'docmeta.cc'; else $(CYGPATH_W) '$(srcdir)/docmeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docmeta.Tpo" "$(DEPDIR)/passepartout-docmeta.Po"; else rm -f "$(DEPDIR)/passepartout-docmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docmeta.cc' object='passepartout-docmeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-docmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docmeta.obj `if test -f 'docmeta.cc'; then $(CYGPATH_W) 'docmeta.cc'; else $(CYGPATH_W) '$(srcdir)/docmeta.cc'; fi` passepartout-printdialog.o: printdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-printdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-printdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-printdialog.o `test -f 'printdialog.cc' || echo '$(srcdir)/'`printdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-printdialog.Tpo" "$(DEPDIR)/passepartout-printdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-printdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-printdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-printdialog.Tpo" -c -o passepartout-printdialog.o `test -f 'printdialog.cc' || echo '$(srcdir)/'`printdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-printdialog.Tpo" "$(DEPDIR)/passepartout-printdialog.Po"; else rm -f "$(DEPDIR)/passepartout-printdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='printdialog.cc' object='passepartout-printdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-printdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-printdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-printdialog.o `test -f 'printdialog.cc' || echo '$(srcdir)/'`printdialog.cc passepartout-printdialog.obj: printdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-printdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-printdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-printdialog.obj `if test -f 'printdialog.cc'; then $(CYGPATH_W) 'printdialog.cc'; else $(CYGPATH_W) '$(srcdir)/printdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-printdialog.Tpo" "$(DEPDIR)/passepartout-printdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-printdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-printdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-printdialog.Tpo" -c -o passepartout-printdialog.obj `if test -f 'printdialog.cc'; then $(CYGPATH_W) 'printdialog.cc'; else $(CYGPATH_W) '$(srcdir)/printdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-printdialog.Tpo" "$(DEPDIR)/passepartout-printdialog.Po"; else rm -f "$(DEPDIR)/passepartout-printdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='printdialog.cc' object='passepartout-printdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-printdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-printdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-printdialog.obj `if test -f 'printdialog.cc'; then $(CYGPATH_W) 'printdialog.cc'; else $(CYGPATH_W) '$(srcdir)/printdialog.cc'; fi` passepartout-viewent.o: viewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-viewent.o -MD -MP -MF "$(DEPDIR)/passepartout-viewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-viewent.o `test -f 'viewent.cc' || echo '$(srcdir)/'`viewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-viewent.Tpo" "$(DEPDIR)/passepartout-viewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-viewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-viewent.o -MD -MP -MF "$(DEPDIR)/passepartout-viewent.Tpo" -c -o passepartout-viewent.o `test -f 'viewent.cc' || echo '$(srcdir)/'`viewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-viewent.Tpo" "$(DEPDIR)/passepartout-viewent.Po"; else rm -f "$(DEPDIR)/passepartout-viewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='viewent.cc' object='passepartout-viewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-viewent.Po' tmpdepfile='$(DEPDIR)/passepartout-viewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-viewent.o `test -f 'viewent.cc' || echo '$(srcdir)/'`viewent.cc passepartout-viewent.obj: viewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-viewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-viewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-viewent.obj `if test -f 'viewent.cc'; then $(CYGPATH_W) 'viewent.cc'; else $(CYGPATH_W) '$(srcdir)/viewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-viewent.Tpo" "$(DEPDIR)/passepartout-viewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-viewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-viewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-viewent.Tpo" -c -o passepartout-viewent.obj `if test -f 'viewent.cc'; then $(CYGPATH_W) 'viewent.cc'; else $(CYGPATH_W) '$(srcdir)/viewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-viewent.Tpo" "$(DEPDIR)/passepartout-viewent.Po"; else rm -f "$(DEPDIR)/passepartout-viewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='viewent.cc' object='passepartout-viewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-viewent.Po' tmpdepfile='$(DEPDIR)/passepartout-viewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-viewent.obj `if test -f 'viewent.cc'; then $(CYGPATH_W) 'viewent.cc'; else $(CYGPATH_W) '$(srcdir)/viewent.cc'; fi` passepartout-groupviewent.o: groupviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-groupviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-groupviewent.o `test -f 'groupviewent.cc' || echo '$(srcdir)/'`groupviewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupviewent.Tpo" "$(DEPDIR)/passepartout-groupviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-groupviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-groupviewent.Tpo" -c -o passepartout-groupviewent.o `test -f 'groupviewent.cc' || echo '$(srcdir)/'`groupviewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupviewent.Tpo" "$(DEPDIR)/passepartout-groupviewent.Po"; else rm -f "$(DEPDIR)/passepartout-groupviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='groupviewent.cc' object='passepartout-groupviewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-groupviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-groupviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-groupviewent.o `test -f 'groupviewent.cc' || echo '$(srcdir)/'`groupviewent.cc passepartout-groupviewent.obj: groupviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-groupviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-groupviewent.obj `if test -f 'groupviewent.cc'; then $(CYGPATH_W) 'groupviewent.cc'; else $(CYGPATH_W) '$(srcdir)/groupviewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupviewent.Tpo" "$(DEPDIR)/passepartout-groupviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-groupviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-groupviewent.Tpo" -c -o passepartout-groupviewent.obj `if test -f 'groupviewent.cc'; then $(CYGPATH_W) 'groupviewent.cc'; else $(CYGPATH_W) '$(srcdir)/groupviewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupviewent.Tpo" "$(DEPDIR)/passepartout-groupviewent.Po"; else rm -f "$(DEPDIR)/passepartout-groupviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='groupviewent.cc' object='passepartout-groupviewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-groupviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-groupviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-groupviewent.obj `if test -f 'groupviewent.cc'; then $(CYGPATH_W) 'groupviewent.cc'; else $(CYGPATH_W) '$(srcdir)/groupviewent.cc'; fi` passepartout-postscriptviewent.o: postscriptviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-postscriptviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-postscriptviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-postscriptviewent.o `test -f 'postscriptviewent.cc' || echo '$(srcdir)/'`postscriptviewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo" "$(DEPDIR)/passepartout-postscriptviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-postscriptviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-postscriptviewent.Tpo" -c -o passepartout-postscriptviewent.o `test -f 'postscriptviewent.cc' || echo '$(srcdir)/'`postscriptviewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo" "$(DEPDIR)/passepartout-postscriptviewent.Po"; else rm -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='postscriptviewent.cc' object='passepartout-postscriptviewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-postscriptviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-postscriptviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-postscriptviewent.o `test -f 'postscriptviewent.cc' || echo '$(srcdir)/'`postscriptviewent.cc passepartout-postscriptviewent.obj: postscriptviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-postscriptviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-postscriptviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-postscriptviewent.obj `if test -f 'postscriptviewent.cc'; then $(CYGPATH_W) 'postscriptviewent.cc'; else $(CYGPATH_W) '$(srcdir)/postscriptviewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo" "$(DEPDIR)/passepartout-postscriptviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-postscriptviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-postscriptviewent.Tpo" -c -o passepartout-postscriptviewent.obj `if test -f 'postscriptviewent.cc'; then $(CYGPATH_W) 'postscriptviewent.cc'; else $(CYGPATH_W) '$(srcdir)/postscriptviewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo" "$(DEPDIR)/passepartout-postscriptviewent.Po"; else rm -f "$(DEPDIR)/passepartout-postscriptviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='postscriptviewent.cc' object='passepartout-postscriptviewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-postscriptviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-postscriptviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-postscriptviewent.obj `if test -f 'postscriptviewent.cc'; then $(CYGPATH_W) 'postscriptviewent.cc'; else $(CYGPATH_W) '$(srcdir)/postscriptviewent.cc'; fi` passepartout-pageviewent.o: pageviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pageviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-pageviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pageviewent.o `test -f 'pageviewent.cc' || echo '$(srcdir)/'`pageviewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pageviewent.Tpo" "$(DEPDIR)/passepartout-pageviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pageviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pageviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-pageviewent.Tpo" -c -o passepartout-pageviewent.o `test -f 'pageviewent.cc' || echo '$(srcdir)/'`pageviewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pageviewent.Tpo" "$(DEPDIR)/passepartout-pageviewent.Po"; else rm -f "$(DEPDIR)/passepartout-pageviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pageviewent.cc' object='passepartout-pageviewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pageviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-pageviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pageviewent.o `test -f 'pageviewent.cc' || echo '$(srcdir)/'`pageviewent.cc passepartout-pageviewent.obj: pageviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pageviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-pageviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pageviewent.obj `if test -f 'pageviewent.cc'; then $(CYGPATH_W) 'pageviewent.cc'; else $(CYGPATH_W) '$(srcdir)/pageviewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pageviewent.Tpo" "$(DEPDIR)/passepartout-pageviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pageviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pageviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-pageviewent.Tpo" -c -o passepartout-pageviewent.obj `if test -f 'pageviewent.cc'; then $(CYGPATH_W) 'pageviewent.cc'; else $(CYGPATH_W) '$(srcdir)/pageviewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pageviewent.Tpo" "$(DEPDIR)/passepartout-pageviewent.Po"; else rm -f "$(DEPDIR)/passepartout-pageviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pageviewent.cc' object='passepartout-pageviewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pageviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-pageviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pageviewent.obj `if test -f 'pageviewent.cc'; then $(CYGPATH_W) 'pageviewent.cc'; else $(CYGPATH_W) '$(srcdir)/pageviewent.cc'; fi` passepartout-rasterviewent.o: rasterviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rasterviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-rasterviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-rasterviewent.o `test -f 'rasterviewent.cc' || echo '$(srcdir)/'`rasterviewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rasterviewent.Tpo" "$(DEPDIR)/passepartout-rasterviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-rasterviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rasterviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-rasterviewent.Tpo" -c -o passepartout-rasterviewent.o `test -f 'rasterviewent.cc' || echo '$(srcdir)/'`rasterviewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rasterviewent.Tpo" "$(DEPDIR)/passepartout-rasterviewent.Po"; else rm -f "$(DEPDIR)/passepartout-rasterviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rasterviewent.cc' object='passepartout-rasterviewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-rasterviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-rasterviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-rasterviewent.o `test -f 'rasterviewent.cc' || echo '$(srcdir)/'`rasterviewent.cc passepartout-rasterviewent.obj: rasterviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rasterviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-rasterviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-rasterviewent.obj `if test -f 'rasterviewent.cc'; then $(CYGPATH_W) 'rasterviewent.cc'; else $(CYGPATH_W) '$(srcdir)/rasterviewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rasterviewent.Tpo" "$(DEPDIR)/passepartout-rasterviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-rasterviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rasterviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-rasterviewent.Tpo" -c -o passepartout-rasterviewent.obj `if test -f 'rasterviewent.cc'; then $(CYGPATH_W) 'rasterviewent.cc'; else $(CYGPATH_W) '$(srcdir)/rasterviewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rasterviewent.Tpo" "$(DEPDIR)/passepartout-rasterviewent.Po"; else rm -f "$(DEPDIR)/passepartout-rasterviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rasterviewent.cc' object='passepartout-rasterviewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-rasterviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-rasterviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-rasterviewent.obj `if test -f 'rasterviewent.cc'; then $(CYGPATH_W) 'rasterviewent.cc'; else $(CYGPATH_W) '$(srcdir)/rasterviewent.cc'; fi` passepartout-textviewent.o: textviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-textviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-textviewent.o `test -f 'textviewent.cc' || echo '$(srcdir)/'`textviewent.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textviewent.Tpo" "$(DEPDIR)/passepartout-textviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-textviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textviewent.o -MD -MP -MF "$(DEPDIR)/passepartout-textviewent.Tpo" -c -o passepartout-textviewent.o `test -f 'textviewent.cc' || echo '$(srcdir)/'`textviewent.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textviewent.Tpo" "$(DEPDIR)/passepartout-textviewent.Po"; else rm -f "$(DEPDIR)/passepartout-textviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textviewent.cc' object='passepartout-textviewent.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-textviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-textviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-textviewent.o `test -f 'textviewent.cc' || echo '$(srcdir)/'`textviewent.cc passepartout-textviewent.obj: textviewent.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-textviewent.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-textviewent.obj `if test -f 'textviewent.cc'; then $(CYGPATH_W) 'textviewent.cc'; else $(CYGPATH_W) '$(srcdir)/textviewent.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textviewent.Tpo" "$(DEPDIR)/passepartout-textviewent.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-textviewent.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textviewent.obj -MD -MP -MF "$(DEPDIR)/passepartout-textviewent.Tpo" -c -o passepartout-textviewent.obj `if test -f 'textviewent.cc'; then $(CYGPATH_W) 'textviewent.cc'; else $(CYGPATH_W) '$(srcdir)/textviewent.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textviewent.Tpo" "$(DEPDIR)/passepartout-textviewent.Po"; else rm -f "$(DEPDIR)/passepartout-textviewent.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textviewent.cc' object='passepartout-textviewent.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-textviewent.Po' tmpdepfile='$(DEPDIR)/passepartout-textviewent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-textviewent.obj `if test -f 'textviewent.cc'; then $(CYGPATH_W) 'textviewent.cc'; else $(CYGPATH_W) '$(srcdir)/textviewent.cc'; fi` passepartout-docview.o: docview.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docview.o -MD -MP -MF "$(DEPDIR)/passepartout-docview.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docview.o `test -f 'docview.cc' || echo '$(srcdir)/'`docview.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docview.Tpo" "$(DEPDIR)/passepartout-docview.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docview.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docview.o -MD -MP -MF "$(DEPDIR)/passepartout-docview.Tpo" -c -o passepartout-docview.o `test -f 'docview.cc' || echo '$(srcdir)/'`docview.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docview.Tpo" "$(DEPDIR)/passepartout-docview.Po"; else rm -f "$(DEPDIR)/passepartout-docview.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docview.cc' object='passepartout-docview.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docview.Po' tmpdepfile='$(DEPDIR)/passepartout-docview.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docview.o `test -f 'docview.cc' || echo '$(srcdir)/'`docview.cc passepartout-docview.obj: docview.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docview.obj -MD -MP -MF "$(DEPDIR)/passepartout-docview.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docview.obj `if test -f 'docview.cc'; then $(CYGPATH_W) 'docview.cc'; else $(CYGPATH_W) '$(srcdir)/docview.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docview.Tpo" "$(DEPDIR)/passepartout-docview.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docview.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docview.obj -MD -MP -MF "$(DEPDIR)/passepartout-docview.Tpo" -c -o passepartout-docview.obj `if test -f 'docview.cc'; then $(CYGPATH_W) 'docview.cc'; else $(CYGPATH_W) '$(srcdir)/docview.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docview.Tpo" "$(DEPDIR)/passepartout-docview.Po"; else rm -f "$(DEPDIR)/passepartout-docview.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docview.cc' object='passepartout-docview.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docview.Po' tmpdepfile='$(DEPDIR)/passepartout-docview.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docview.obj `if test -f 'docview.cc'; then $(CYGPATH_W) 'docview.cc'; else $(CYGPATH_W) '$(srcdir)/docview.cc'; fi` passepartout-window.o: window.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-window.o -MD -MP -MF "$(DEPDIR)/passepartout-window.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-window.o `test -f 'window.cc' || echo '$(srcdir)/'`window.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-window.Tpo" "$(DEPDIR)/passepartout-window.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-window.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-window.o -MD -MP -MF "$(DEPDIR)/passepartout-window.Tpo" -c -o passepartout-window.o `test -f 'window.cc' || echo '$(srcdir)/'`window.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-window.Tpo" "$(DEPDIR)/passepartout-window.Po"; else rm -f "$(DEPDIR)/passepartout-window.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='window.cc' object='passepartout-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-window.Po' tmpdepfile='$(DEPDIR)/passepartout-window.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-window.o `test -f 'window.cc' || echo '$(srcdir)/'`window.cc passepartout-window.obj: window.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-window.obj -MD -MP -MF "$(DEPDIR)/passepartout-window.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-window.obj `if test -f 'window.cc'; then $(CYGPATH_W) 'window.cc'; else $(CYGPATH_W) '$(srcdir)/window.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-window.Tpo" "$(DEPDIR)/passepartout-window.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-window.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-window.obj -MD -MP -MF "$(DEPDIR)/passepartout-window.Tpo" -c -o passepartout-window.obj `if test -f 'window.cc'; then $(CYGPATH_W) 'window.cc'; else $(CYGPATH_W) '$(srcdir)/window.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-window.Tpo" "$(DEPDIR)/passepartout-window.Po"; else rm -f "$(DEPDIR)/passepartout-window.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='window.cc' object='passepartout-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-window.Po' tmpdepfile='$(DEPDIR)/passepartout-window.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-window.obj `if test -f 'window.cc'; then $(CYGPATH_W) 'window.cc'; else $(CYGPATH_W) '$(srcdir)/window.cc'; fi` passepartout-main.o: main.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-main.o -MD -MP -MF "$(DEPDIR)/passepartout-main.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-main.Tpo" "$(DEPDIR)/passepartout-main.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-main.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-main.o -MD -MP -MF "$(DEPDIR)/passepartout-main.Tpo" -c -o passepartout-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-main.Tpo" "$(DEPDIR)/passepartout-main.Po"; else rm -f "$(DEPDIR)/passepartout-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='passepartout-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-main.Po' tmpdepfile='$(DEPDIR)/passepartout-main.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc passepartout-main.obj: main.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-main.obj -MD -MP -MF "$(DEPDIR)/passepartout-main.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-main.Tpo" "$(DEPDIR)/passepartout-main.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-main.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-main.obj -MD -MP -MF "$(DEPDIR)/passepartout-main.Tpo" -c -o passepartout-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-main.Tpo" "$(DEPDIR)/passepartout-main.Po"; else rm -f "$(DEPDIR)/passepartout-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='passepartout-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-main.Po' tmpdepfile='$(DEPDIR)/passepartout-main.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` passepartout-lengthunits.o: lengthunits.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-lengthunits.o -MD -MP -MF "$(DEPDIR)/passepartout-lengthunits.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-lengthunits.o `test -f 'lengthunits.cc' || echo '$(srcdir)/'`lengthunits.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-lengthunits.Tpo" "$(DEPDIR)/passepartout-lengthunits.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-lengthunits.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-lengthunits.o -MD -MP -MF "$(DEPDIR)/passepartout-lengthunits.Tpo" -c -o passepartout-lengthunits.o `test -f 'lengthunits.cc' || echo '$(srcdir)/'`lengthunits.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-lengthunits.Tpo" "$(DEPDIR)/passepartout-lengthunits.Po"; else rm -f "$(DEPDIR)/passepartout-lengthunits.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lengthunits.cc' object='passepartout-lengthunits.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-lengthunits.Po' tmpdepfile='$(DEPDIR)/passepartout-lengthunits.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-lengthunits.o `test -f 'lengthunits.cc' || echo '$(srcdir)/'`lengthunits.cc passepartout-lengthunits.obj: lengthunits.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-lengthunits.obj -MD -MP -MF "$(DEPDIR)/passepartout-lengthunits.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-lengthunits.obj `if test -f 'lengthunits.cc'; then $(CYGPATH_W) 'lengthunits.cc'; else $(CYGPATH_W) '$(srcdir)/lengthunits.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-lengthunits.Tpo" "$(DEPDIR)/passepartout-lengthunits.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-lengthunits.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-lengthunits.obj -MD -MP -MF "$(DEPDIR)/passepartout-lengthunits.Tpo" -c -o passepartout-lengthunits.obj `if test -f 'lengthunits.cc'; then $(CYGPATH_W) 'lengthunits.cc'; else $(CYGPATH_W) '$(srcdir)/lengthunits.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-lengthunits.Tpo" "$(DEPDIR)/passepartout-lengthunits.Po"; else rm -f "$(DEPDIR)/passepartout-lengthunits.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lengthunits.cc' object='passepartout-lengthunits.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-lengthunits.Po' tmpdepfile='$(DEPDIR)/passepartout-lengthunits.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-lengthunits.obj `if test -f 'lengthunits.cc'; then $(CYGPATH_W) 'lengthunits.cc'; else $(CYGPATH_W) '$(srcdir)/lengthunits.cc'; fi` passepartout-config.o: config.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-config.o -MD -MP -MF "$(DEPDIR)/passepartout-config.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-config.o `test -f 'config.cc' || echo '$(srcdir)/'`config.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-config.Tpo" "$(DEPDIR)/passepartout-config.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-config.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-config.o -MD -MP -MF "$(DEPDIR)/passepartout-config.Tpo" -c -o passepartout-config.o `test -f 'config.cc' || echo '$(srcdir)/'`config.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-config.Tpo" "$(DEPDIR)/passepartout-config.Po"; else rm -f "$(DEPDIR)/passepartout-config.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='config.cc' object='passepartout-config.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-config.Po' tmpdepfile='$(DEPDIR)/passepartout-config.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-config.o `test -f 'config.cc' || echo '$(srcdir)/'`config.cc passepartout-config.obj: config.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-config.obj -MD -MP -MF "$(DEPDIR)/passepartout-config.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-config.obj `if test -f 'config.cc'; then $(CYGPATH_W) 'config.cc'; else $(CYGPATH_W) '$(srcdir)/config.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-config.Tpo" "$(DEPDIR)/passepartout-config.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-config.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-config.obj -MD -MP -MF "$(DEPDIR)/passepartout-config.Tpo" -c -o passepartout-config.obj `if test -f 'config.cc'; then $(CYGPATH_W) 'config.cc'; else $(CYGPATH_W) '$(srcdir)/config.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-config.Tpo" "$(DEPDIR)/passepartout-config.Po"; else rm -f "$(DEPDIR)/passepartout-config.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='config.cc' object='passepartout-config.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-config.Po' tmpdepfile='$(DEPDIR)/passepartout-config.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-config.obj `if test -f 'config.cc'; then $(CYGPATH_W) 'config.cc'; else $(CYGPATH_W) '$(srcdir)/config.cc'; fi` passepartout-preferencesdialog.o: preferencesdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-preferencesdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-preferencesdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-preferencesdialog.o `test -f 'preferencesdialog.cc' || echo '$(srcdir)/'`preferencesdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo" "$(DEPDIR)/passepartout-preferencesdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-preferencesdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-preferencesdialog.Tpo" -c -o passepartout-preferencesdialog.o `test -f 'preferencesdialog.cc' || echo '$(srcdir)/'`preferencesdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo" "$(DEPDIR)/passepartout-preferencesdialog.Po"; else rm -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='preferencesdialog.cc' object='passepartout-preferencesdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-preferencesdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-preferencesdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-preferencesdialog.o `test -f 'preferencesdialog.cc' || echo '$(srcdir)/'`preferencesdialog.cc passepartout-preferencesdialog.obj: preferencesdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-preferencesdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-preferencesdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-preferencesdialog.obj `if test -f 'preferencesdialog.cc'; then $(CYGPATH_W) 'preferencesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/preferencesdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo" "$(DEPDIR)/passepartout-preferencesdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-preferencesdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-preferencesdialog.Tpo" -c -o passepartout-preferencesdialog.obj `if test -f 'preferencesdialog.cc'; then $(CYGPATH_W) 'preferencesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/preferencesdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo" "$(DEPDIR)/passepartout-preferencesdialog.Po"; else rm -f "$(DEPDIR)/passepartout-preferencesdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='preferencesdialog.cc' object='passepartout-preferencesdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-preferencesdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-preferencesdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-preferencesdialog.obj `if test -f 'preferencesdialog.cc'; then $(CYGPATH_W) 'preferencesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/preferencesdialog.cc'; fi` passepartout-propertiesdialog.o: propertiesdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propertiesdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-propertiesdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-propertiesdialog.o `test -f 'propertiesdialog.cc' || echo '$(srcdir)/'`propertiesdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo" "$(DEPDIR)/passepartout-propertiesdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propertiesdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-propertiesdialog.Tpo" -c -o passepartout-propertiesdialog.o `test -f 'propertiesdialog.cc' || echo '$(srcdir)/'`propertiesdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo" "$(DEPDIR)/passepartout-propertiesdialog.Po"; else rm -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='propertiesdialog.cc' object='passepartout-propertiesdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-propertiesdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-propertiesdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-propertiesdialog.o `test -f 'propertiesdialog.cc' || echo '$(srcdir)/'`propertiesdialog.cc passepartout-propertiesdialog.obj: propertiesdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propertiesdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-propertiesdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-propertiesdialog.obj `if test -f 'propertiesdialog.cc'; then $(CYGPATH_W) 'propertiesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/propertiesdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo" "$(DEPDIR)/passepartout-propertiesdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propertiesdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-propertiesdialog.Tpo" -c -o passepartout-propertiesdialog.obj `if test -f 'propertiesdialog.cc'; then $(CYGPATH_W) 'propertiesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/propertiesdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo" "$(DEPDIR)/passepartout-propertiesdialog.Po"; else rm -f "$(DEPDIR)/passepartout-propertiesdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='propertiesdialog.cc' object='passepartout-propertiesdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-propertiesdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-propertiesdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-propertiesdialog.obj `if test -f 'propertiesdialog.cc'; then $(CYGPATH_W) 'propertiesdialog.cc'; else $(CYGPATH_W) '$(srcdir)/propertiesdialog.cc'; fi` passepartout-imagemeta.o: imagemeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-imagemeta.o -MD -MP -MF "$(DEPDIR)/passepartout-imagemeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-imagemeta.o `test -f 'imagemeta.cc' || echo '$(srcdir)/'`imagemeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-imagemeta.Tpo" "$(DEPDIR)/passepartout-imagemeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-imagemeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-imagemeta.o -MD -MP -MF "$(DEPDIR)/passepartout-imagemeta.Tpo" -c -o passepartout-imagemeta.o `test -f 'imagemeta.cc' || echo '$(srcdir)/'`imagemeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-imagemeta.Tpo" "$(DEPDIR)/passepartout-imagemeta.Po"; else rm -f "$(DEPDIR)/passepartout-imagemeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imagemeta.cc' object='passepartout-imagemeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-imagemeta.Po' tmpdepfile='$(DEPDIR)/passepartout-imagemeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-imagemeta.o `test -f 'imagemeta.cc' || echo '$(srcdir)/'`imagemeta.cc passepartout-imagemeta.obj: imagemeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-imagemeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-imagemeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-imagemeta.obj `if test -f 'imagemeta.cc'; then $(CYGPATH_W) 'imagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/imagemeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-imagemeta.Tpo" "$(DEPDIR)/passepartout-imagemeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-imagemeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-imagemeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-imagemeta.Tpo" -c -o passepartout-imagemeta.obj `if test -f 'imagemeta.cc'; then $(CYGPATH_W) 'imagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/imagemeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-imagemeta.Tpo" "$(DEPDIR)/passepartout-imagemeta.Po"; else rm -f "$(DEPDIR)/passepartout-imagemeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imagemeta.cc' object='passepartout-imagemeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-imagemeta.Po' tmpdepfile='$(DEPDIR)/passepartout-imagemeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-imagemeta.obj `if test -f 'imagemeta.cc'; then $(CYGPATH_W) 'imagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/imagemeta.cc'; fi` passepartout-rastermeta.o: rastermeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rastermeta.o -MD -MP -MF "$(DEPDIR)/passepartout-rastermeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-rastermeta.o `test -f 'rastermeta.cc' || echo '$(srcdir)/'`rastermeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rastermeta.Tpo" "$(DEPDIR)/passepartout-rastermeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-rastermeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rastermeta.o -MD -MP -MF "$(DEPDIR)/passepartout-rastermeta.Tpo" -c -o passepartout-rastermeta.o `test -f 'rastermeta.cc' || echo '$(srcdir)/'`rastermeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rastermeta.Tpo" "$(DEPDIR)/passepartout-rastermeta.Po"; else rm -f "$(DEPDIR)/passepartout-rastermeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rastermeta.cc' object='passepartout-rastermeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-rastermeta.Po' tmpdepfile='$(DEPDIR)/passepartout-rastermeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-rastermeta.o `test -f 'rastermeta.cc' || echo '$(srcdir)/'`rastermeta.cc passepartout-rastermeta.obj: rastermeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rastermeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-rastermeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-rastermeta.obj `if test -f 'rastermeta.cc'; then $(CYGPATH_W) 'rastermeta.cc'; else $(CYGPATH_W) '$(srcdir)/rastermeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rastermeta.Tpo" "$(DEPDIR)/passepartout-rastermeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-rastermeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-rastermeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-rastermeta.Tpo" -c -o passepartout-rastermeta.obj `if test -f 'rastermeta.cc'; then $(CYGPATH_W) 'rastermeta.cc'; else $(CYGPATH_W) '$(srcdir)/rastermeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-rastermeta.Tpo" "$(DEPDIR)/passepartout-rastermeta.Po"; else rm -f "$(DEPDIR)/passepartout-rastermeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='rastermeta.cc' object='passepartout-rastermeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-rastermeta.Po' tmpdepfile='$(DEPDIR)/passepartout-rastermeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-rastermeta.obj `if test -f 'rastermeta.cc'; then $(CYGPATH_W) 'rastermeta.cc'; else $(CYGPATH_W) '$(srcdir)/rastermeta.cc'; fi` passepartout-textmeta.o: textmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-textmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-textmeta.o `test -f 'textmeta.cc' || echo '$(srcdir)/'`textmeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textmeta.Tpo" "$(DEPDIR)/passepartout-textmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-textmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-textmeta.Tpo" -c -o passepartout-textmeta.o `test -f 'textmeta.cc' || echo '$(srcdir)/'`textmeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textmeta.Tpo" "$(DEPDIR)/passepartout-textmeta.Po"; else rm -f "$(DEPDIR)/passepartout-textmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textmeta.cc' object='passepartout-textmeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-textmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-textmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-textmeta.o `test -f 'textmeta.cc' || echo '$(srcdir)/'`textmeta.cc passepartout-textmeta.obj: textmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-textmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-textmeta.obj `if test -f 'textmeta.cc'; then $(CYGPATH_W) 'textmeta.cc'; else $(CYGPATH_W) '$(srcdir)/textmeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textmeta.Tpo" "$(DEPDIR)/passepartout-textmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-textmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-textmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-textmeta.Tpo" -c -o passepartout-textmeta.obj `if test -f 'textmeta.cc'; then $(CYGPATH_W) 'textmeta.cc'; else $(CYGPATH_W) '$(srcdir)/textmeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-textmeta.Tpo" "$(DEPDIR)/passepartout-textmeta.Po"; else rm -f "$(DEPDIR)/passepartout-textmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='textmeta.cc' object='passepartout-textmeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-textmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-textmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-textmeta.obj `if test -f 'textmeta.cc'; then $(CYGPATH_W) 'textmeta.cc'; else $(CYGPATH_W) '$(srcdir)/textmeta.cc'; fi` passepartout-groupmeta.o: groupmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-groupmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-groupmeta.o `test -f 'groupmeta.cc' || echo '$(srcdir)/'`groupmeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupmeta.Tpo" "$(DEPDIR)/passepartout-groupmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-groupmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupmeta.o -MD -MP -MF "$(DEPDIR)/passepartout-groupmeta.Tpo" -c -o passepartout-groupmeta.o `test -f 'groupmeta.cc' || echo '$(srcdir)/'`groupmeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupmeta.Tpo" "$(DEPDIR)/passepartout-groupmeta.Po"; else rm -f "$(DEPDIR)/passepartout-groupmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='groupmeta.cc' object='passepartout-groupmeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-groupmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-groupmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-groupmeta.o `test -f 'groupmeta.cc' || echo '$(srcdir)/'`groupmeta.cc passepartout-groupmeta.obj: groupmeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-groupmeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-groupmeta.obj `if test -f 'groupmeta.cc'; then $(CYGPATH_W) 'groupmeta.cc'; else $(CYGPATH_W) '$(srcdir)/groupmeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupmeta.Tpo" "$(DEPDIR)/passepartout-groupmeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-groupmeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-groupmeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-groupmeta.Tpo" -c -o passepartout-groupmeta.obj `if test -f 'groupmeta.cc'; then $(CYGPATH_W) 'groupmeta.cc'; else $(CYGPATH_W) '$(srcdir)/groupmeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-groupmeta.Tpo" "$(DEPDIR)/passepartout-groupmeta.Po"; else rm -f "$(DEPDIR)/passepartout-groupmeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='groupmeta.cc' object='passepartout-groupmeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-groupmeta.Po' tmpdepfile='$(DEPDIR)/passepartout-groupmeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-groupmeta.obj `if test -f 'groupmeta.cc'; then $(CYGPATH_W) 'groupmeta.cc'; else $(CYGPATH_W) '$(srcdir)/groupmeta.cc'; fi` passepartout-pagemeta.o: pagemeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagemeta.o -MD -MP -MF "$(DEPDIR)/passepartout-pagemeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pagemeta.o `test -f 'pagemeta.cc' || echo '$(srcdir)/'`pagemeta.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagemeta.Tpo" "$(DEPDIR)/passepartout-pagemeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pagemeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagemeta.o -MD -MP -MF "$(DEPDIR)/passepartout-pagemeta.Tpo" -c -o passepartout-pagemeta.o `test -f 'pagemeta.cc' || echo '$(srcdir)/'`pagemeta.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagemeta.Tpo" "$(DEPDIR)/passepartout-pagemeta.Po"; else rm -f "$(DEPDIR)/passepartout-pagemeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagemeta.cc' object='passepartout-pagemeta.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pagemeta.Po' tmpdepfile='$(DEPDIR)/passepartout-pagemeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pagemeta.o `test -f 'pagemeta.cc' || echo '$(srcdir)/'`pagemeta.cc passepartout-pagemeta.obj: pagemeta.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagemeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-pagemeta.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pagemeta.obj `if test -f 'pagemeta.cc'; then $(CYGPATH_W) 'pagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/pagemeta.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagemeta.Tpo" "$(DEPDIR)/passepartout-pagemeta.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pagemeta.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pagemeta.obj -MD -MP -MF "$(DEPDIR)/passepartout-pagemeta.Tpo" -c -o passepartout-pagemeta.obj `if test -f 'pagemeta.cc'; then $(CYGPATH_W) 'pagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/pagemeta.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pagemeta.Tpo" "$(DEPDIR)/passepartout-pagemeta.Po"; else rm -f "$(DEPDIR)/passepartout-pagemeta.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagemeta.cc' object='passepartout-pagemeta.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pagemeta.Po' tmpdepfile='$(DEPDIR)/passepartout-pagemeta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pagemeta.obj `if test -f 'pagemeta.cc'; then $(CYGPATH_W) 'pagemeta.cc'; else $(CYGPATH_W) '$(srcdir)/pagemeta.cc'; fi` passepartout-propbase.o: propbase.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propbase.o -MD -MP -MF "$(DEPDIR)/passepartout-propbase.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-propbase.o `test -f 'propbase.cc' || echo '$(srcdir)/'`propbase.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propbase.Tpo" "$(DEPDIR)/passepartout-propbase.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-propbase.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propbase.o -MD -MP -MF "$(DEPDIR)/passepartout-propbase.Tpo" -c -o passepartout-propbase.o `test -f 'propbase.cc' || echo '$(srcdir)/'`propbase.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propbase.Tpo" "$(DEPDIR)/passepartout-propbase.Po"; else rm -f "$(DEPDIR)/passepartout-propbase.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='propbase.cc' object='passepartout-propbase.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-propbase.Po' tmpdepfile='$(DEPDIR)/passepartout-propbase.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-propbase.o `test -f 'propbase.cc' || echo '$(srcdir)/'`propbase.cc passepartout-propbase.obj: propbase.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propbase.obj -MD -MP -MF "$(DEPDIR)/passepartout-propbase.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-propbase.obj `if test -f 'propbase.cc'; then $(CYGPATH_W) 'propbase.cc'; else $(CYGPATH_W) '$(srcdir)/propbase.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propbase.Tpo" "$(DEPDIR)/passepartout-propbase.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-propbase.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-propbase.obj -MD -MP -MF "$(DEPDIR)/passepartout-propbase.Tpo" -c -o passepartout-propbase.obj `if test -f 'propbase.cc'; then $(CYGPATH_W) 'propbase.cc'; else $(CYGPATH_W) '$(srcdir)/propbase.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-propbase.Tpo" "$(DEPDIR)/passepartout-propbase.Po"; else rm -f "$(DEPDIR)/passepartout-propbase.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='propbase.cc' object='passepartout-propbase.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-propbase.Po' tmpdepfile='$(DEPDIR)/passepartout-propbase.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-propbase.obj `if test -f 'propbase.cc'; then $(CYGPATH_W) 'propbase.cc'; else $(CYGPATH_W) '$(srcdir)/propbase.cc'; fi` passepartout-pptcore.o: pptcore.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pptcore.o -MD -MP -MF "$(DEPDIR)/passepartout-pptcore.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pptcore.o `test -f 'pptcore.cc' || echo '$(srcdir)/'`pptcore.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pptcore.Tpo" "$(DEPDIR)/passepartout-pptcore.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pptcore.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pptcore.o -MD -MP -MF "$(DEPDIR)/passepartout-pptcore.Tpo" -c -o passepartout-pptcore.o `test -f 'pptcore.cc' || echo '$(srcdir)/'`pptcore.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pptcore.Tpo" "$(DEPDIR)/passepartout-pptcore.Po"; else rm -f "$(DEPDIR)/passepartout-pptcore.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pptcore.cc' object='passepartout-pptcore.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pptcore.Po' tmpdepfile='$(DEPDIR)/passepartout-pptcore.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pptcore.o `test -f 'pptcore.cc' || echo '$(srcdir)/'`pptcore.cc passepartout-pptcore.obj: pptcore.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pptcore.obj -MD -MP -MF "$(DEPDIR)/passepartout-pptcore.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-pptcore.obj `if test -f 'pptcore.cc'; then $(CYGPATH_W) 'pptcore.cc'; else $(CYGPATH_W) '$(srcdir)/pptcore.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pptcore.Tpo" "$(DEPDIR)/passepartout-pptcore.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-pptcore.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-pptcore.obj -MD -MP -MF "$(DEPDIR)/passepartout-pptcore.Tpo" -c -o passepartout-pptcore.obj `if test -f 'pptcore.cc'; then $(CYGPATH_W) 'pptcore.cc'; else $(CYGPATH_W) '$(srcdir)/pptcore.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-pptcore.Tpo" "$(DEPDIR)/passepartout-pptcore.Po"; else rm -f "$(DEPDIR)/passepartout-pptcore.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pptcore.cc' object='passepartout-pptcore.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-pptcore.Po' tmpdepfile='$(DEPDIR)/passepartout-pptcore.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-pptcore.obj `if test -f 'pptcore.cc'; then $(CYGPATH_W) 'pptcore.cc'; else $(CYGPATH_W) '$(srcdir)/pptcore.cc'; fi` passepartout-docpropsdialog.o: docpropsdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docpropsdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-docpropsdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docpropsdialog.o `test -f 'docpropsdialog.cc' || echo '$(srcdir)/'`docpropsdialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo" "$(DEPDIR)/passepartout-docpropsdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docpropsdialog.o -MD -MP -MF "$(DEPDIR)/passepartout-docpropsdialog.Tpo" -c -o passepartout-docpropsdialog.o `test -f 'docpropsdialog.cc' || echo '$(srcdir)/'`docpropsdialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo" "$(DEPDIR)/passepartout-docpropsdialog.Po"; else rm -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docpropsdialog.cc' object='passepartout-docpropsdialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docpropsdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-docpropsdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docpropsdialog.o `test -f 'docpropsdialog.cc' || echo '$(srcdir)/'`docpropsdialog.cc passepartout-docpropsdialog.obj: docpropsdialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docpropsdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-docpropsdialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-docpropsdialog.obj `if test -f 'docpropsdialog.cc'; then $(CYGPATH_W) 'docpropsdialog.cc'; else $(CYGPATH_W) '$(srcdir)/docpropsdialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo" "$(DEPDIR)/passepartout-docpropsdialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-docpropsdialog.obj -MD -MP -MF "$(DEPDIR)/passepartout-docpropsdialog.Tpo" -c -o passepartout-docpropsdialog.obj `if test -f 'docpropsdialog.cc'; then $(CYGPATH_W) 'docpropsdialog.cc'; else $(CYGPATH_W) '$(srcdir)/docpropsdialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo" "$(DEPDIR)/passepartout-docpropsdialog.Po"; else rm -f "$(DEPDIR)/passepartout-docpropsdialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='docpropsdialog.cc' object='passepartout-docpropsdialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-docpropsdialog.Po' tmpdepfile='$(DEPDIR)/passepartout-docpropsdialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-docpropsdialog.obj `if test -f 'docpropsdialog.cc'; then $(CYGPATH_W) 'docpropsdialog.cc'; else $(CYGPATH_W) '$(srcdir)/docpropsdialog.cc'; fi` passepartout-webbrowser.o: webbrowser.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-webbrowser.o -MD -MP -MF "$(DEPDIR)/passepartout-webbrowser.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-webbrowser.o `test -f 'webbrowser.cc' || echo '$(srcdir)/'`webbrowser.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-webbrowser.Tpo" "$(DEPDIR)/passepartout-webbrowser.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-webbrowser.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-webbrowser.o -MD -MP -MF "$(DEPDIR)/passepartout-webbrowser.Tpo" -c -o passepartout-webbrowser.o `test -f 'webbrowser.cc' || echo '$(srcdir)/'`webbrowser.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-webbrowser.Tpo" "$(DEPDIR)/passepartout-webbrowser.Po"; else rm -f "$(DEPDIR)/passepartout-webbrowser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='webbrowser.cc' object='passepartout-webbrowser.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-webbrowser.Po' tmpdepfile='$(DEPDIR)/passepartout-webbrowser.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-webbrowser.o `test -f 'webbrowser.cc' || echo '$(srcdir)/'`webbrowser.cc passepartout-webbrowser.obj: webbrowser.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-webbrowser.obj -MD -MP -MF "$(DEPDIR)/passepartout-webbrowser.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-webbrowser.obj `if test -f 'webbrowser.cc'; then $(CYGPATH_W) 'webbrowser.cc'; else $(CYGPATH_W) '$(srcdir)/webbrowser.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-webbrowser.Tpo" "$(DEPDIR)/passepartout-webbrowser.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-webbrowser.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-webbrowser.obj -MD -MP -MF "$(DEPDIR)/passepartout-webbrowser.Tpo" -c -o passepartout-webbrowser.obj `if test -f 'webbrowser.cc'; then $(CYGPATH_W) 'webbrowser.cc'; else $(CYGPATH_W) '$(srcdir)/webbrowser.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-webbrowser.Tpo" "$(DEPDIR)/passepartout-webbrowser.Po"; else rm -f "$(DEPDIR)/passepartout-webbrowser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='webbrowser.cc' object='passepartout-webbrowser.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-webbrowser.Po' tmpdepfile='$(DEPDIR)/passepartout-webbrowser.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-webbrowser.obj `if test -f 'webbrowser.cc'; then $(CYGPATH_W) 'webbrowser.cc'; else $(CYGPATH_W) '$(srcdir)/webbrowser.cc'; fi` passepartout-builddate.o: builddate.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-builddate.o -MD -MP -MF "$(DEPDIR)/passepartout-builddate.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-builddate.o `test -f 'builddate.cc' || echo '$(srcdir)/'`builddate.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-builddate.Tpo" "$(DEPDIR)/passepartout-builddate.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-builddate.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-builddate.o -MD -MP -MF "$(DEPDIR)/passepartout-builddate.Tpo" -c -o passepartout-builddate.o `test -f 'builddate.cc' || echo '$(srcdir)/'`builddate.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-builddate.Tpo" "$(DEPDIR)/passepartout-builddate.Po"; else rm -f "$(DEPDIR)/passepartout-builddate.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='builddate.cc' object='passepartout-builddate.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-builddate.Po' tmpdepfile='$(DEPDIR)/passepartout-builddate.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-builddate.o `test -f 'builddate.cc' || echo '$(srcdir)/'`builddate.cc passepartout-builddate.obj: builddate.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-builddate.obj -MD -MP -MF "$(DEPDIR)/passepartout-builddate.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-builddate.obj `if test -f 'builddate.cc'; then $(CYGPATH_W) 'builddate.cc'; else $(CYGPATH_W) '$(srcdir)/builddate.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-builddate.Tpo" "$(DEPDIR)/passepartout-builddate.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-builddate.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-builddate.obj -MD -MP -MF "$(DEPDIR)/passepartout-builddate.Tpo" -c -o passepartout-builddate.obj `if test -f 'builddate.cc'; then $(CYGPATH_W) 'builddate.cc'; else $(CYGPATH_W) '$(srcdir)/builddate.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-builddate.Tpo" "$(DEPDIR)/passepartout-builddate.Po"; else rm -f "$(DEPDIR)/passepartout-builddate.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='builddate.cc' object='passepartout-builddate.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-builddate.Po' tmpdepfile='$(DEPDIR)/passepartout-builddate.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-builddate.obj `if test -f 'builddate.cc'; then $(CYGPATH_W) 'builddate.cc'; else $(CYGPATH_W) '$(srcdir)/builddate.cc'; fi` passepartout-windowmenus.o: windowmenus.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-windowmenus.o -MD -MP -MF "$(DEPDIR)/passepartout-windowmenus.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-windowmenus.o `test -f 'windowmenus.cc' || echo '$(srcdir)/'`windowmenus.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-windowmenus.Tpo" "$(DEPDIR)/passepartout-windowmenus.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-windowmenus.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-windowmenus.o -MD -MP -MF "$(DEPDIR)/passepartout-windowmenus.Tpo" -c -o passepartout-windowmenus.o `test -f 'windowmenus.cc' || echo '$(srcdir)/'`windowmenus.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-windowmenus.Tpo" "$(DEPDIR)/passepartout-windowmenus.Po"; else rm -f "$(DEPDIR)/passepartout-windowmenus.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='windowmenus.cc' object='passepartout-windowmenus.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-windowmenus.Po' tmpdepfile='$(DEPDIR)/passepartout-windowmenus.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-windowmenus.o `test -f 'windowmenus.cc' || echo '$(srcdir)/'`windowmenus.cc passepartout-windowmenus.obj: windowmenus.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-windowmenus.obj -MD -MP -MF "$(DEPDIR)/passepartout-windowmenus.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-windowmenus.obj `if test -f 'windowmenus.cc'; then $(CYGPATH_W) 'windowmenus.cc'; else $(CYGPATH_W) '$(srcdir)/windowmenus.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-windowmenus.Tpo" "$(DEPDIR)/passepartout-windowmenus.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-windowmenus.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-windowmenus.obj -MD -MP -MF "$(DEPDIR)/passepartout-windowmenus.Tpo" -c -o passepartout-windowmenus.obj `if test -f 'windowmenus.cc'; then $(CYGPATH_W) 'windowmenus.cc'; else $(CYGPATH_W) '$(srcdir)/windowmenus.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-windowmenus.Tpo" "$(DEPDIR)/passepartout-windowmenus.Po"; else rm -f "$(DEPDIR)/passepartout-windowmenus.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='windowmenus.cc' object='passepartout-windowmenus.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-windowmenus.Po' tmpdepfile='$(DEPDIR)/passepartout-windowmenus.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-windowmenus.obj `if test -f 'windowmenus.cc'; then $(CYGPATH_W) 'windowmenus.cc'; else $(CYGPATH_W) '$(srcdir)/windowmenus.cc'; fi` passepartout-authors.o: authors.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-authors.o -MD -MP -MF "$(DEPDIR)/passepartout-authors.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-authors.o `test -f 'authors.cc' || echo '$(srcdir)/'`authors.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-authors.Tpo" "$(DEPDIR)/passepartout-authors.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-authors.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-authors.o -MD -MP -MF "$(DEPDIR)/passepartout-authors.Tpo" -c -o passepartout-authors.o `test -f 'authors.cc' || echo '$(srcdir)/'`authors.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-authors.Tpo" "$(DEPDIR)/passepartout-authors.Po"; else rm -f "$(DEPDIR)/passepartout-authors.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='authors.cc' object='passepartout-authors.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-authors.Po' tmpdepfile='$(DEPDIR)/passepartout-authors.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-authors.o `test -f 'authors.cc' || echo '$(srcdir)/'`authors.cc passepartout-authors.obj: authors.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-authors.obj -MD -MP -MF "$(DEPDIR)/passepartout-authors.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o passepartout-authors.obj `if test -f 'authors.cc'; then $(CYGPATH_W) 'authors.cc'; else $(CYGPATH_W) '$(srcdir)/authors.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-authors.Tpo" "$(DEPDIR)/passepartout-authors.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/passepartout-authors.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -MT passepartout-authors.obj -MD -MP -MF "$(DEPDIR)/passepartout-authors.Tpo" -c -o passepartout-authors.obj `if test -f 'authors.cc'; then $(CYGPATH_W) 'authors.cc'; else $(CYGPATH_W) '$(srcdir)/authors.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/passepartout-authors.Tpo" "$(DEPDIR)/passepartout-authors.Po"; else rm -f "$(DEPDIR)/passepartout-authors.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='authors.cc' object='passepartout-authors.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/passepartout-authors.Po' tmpdepfile='$(DEPDIR)/passepartout-authors.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(passepartout_CXXFLAGS) $(CXXFLAGS) -c -o passepartout-authors.obj `if test -f 'authors.cc'; then $(CYGPATH_W) 'authors.cc'; else $(CYGPATH_W) '$(srcdir)/authors.cc'; fi` uninstall-info-am: @@ -1057,7 +796,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 \ @@ -1069,7 +814,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -1077,7 +822,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @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; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -1098,7 +849,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -1109,14 +860,6 @@ test "$$subdir" = . || (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 \ @@ -1125,19 +868,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -1147,10 +893,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1173,10 +920,6 @@ 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'`; \ @@ -1190,7 +933,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -1205,15 +948,17 @@ || 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; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -1223,8 +968,9 @@ all-am: Makefile $(PROGRAMS) $(HEADERS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(bindir) - + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -1244,7 +990,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1263,6 +1009,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -1298,22 +1046,19 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-binPROGRAMS clean-generic clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-binPROGRAMS clean-generic clean-recursive ctags \ ctags-recursive distclean distclean-compile distclean-generic \ - 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-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-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-recursive + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-info-am # Extra dependencies for builddate, so it is rebuilt every time anything else diff -ur releases/passepartout-0.6/src/pptout/pagemeta.cc passepartout-0.6/src/pptout/pagemeta.cc --- releases/passepartout-0.6/src/pptout/pagemeta.cc 2004-03-20 02:45:03.000000000 +0100 +++ passepartout-0.6/src/pptout/pagemeta.cc 2007-03-03 23:20:05.000000000 +0100 @@ -11,7 +11,6 @@ Viewent::Ref PageMeta::create_viewent(View& view, Pagent& node) { Viewent::Ref result(new PageViewent (view, &dynamic_cast(node))); - result->set_manage(); // turn refcounting on result->reference(); return result; } Endast i passepartout-0.6/src/pptout: pagemeta.cc~ diff -ur releases/passepartout-0.6/src/pptout/pagesel.cc passepartout-0.6/src/pptout/pagesel.cc --- releases/passepartout-0.6/src/pptout/pagesel.cc 2004-04-28 01:59:42.000000000 +0200 +++ passepartout-0.6/src/pptout/pagesel.cc 2007-03-03 22:34:38.000000000 +0100 @@ -98,9 +98,9 @@ document_view(docview) { document_view.current_page_num_changed_signal.connect - (slot(*this, &Pagesel::update)); + (mem_fun(*this, &Pagesel::update)); document_view.document_changed_signal.connect - (slot(*this, &Pagesel::update)); + (mem_fun(*this, &Pagesel::update)); left.add(*manage(new Gtk::Arrow(Gtk::ARROW_LEFT, Gtk::SHADOW_NONE))); right.add(*manage(new Gtk::Arrow(Gtk::ARROW_RIGHT, Gtk::SHADOW_NONE))); @@ -112,10 +112,10 @@ pack_start(pages); pack_start(right); - left.signal_clicked().connect(slot(*this, &Pagesel::prev)); - right.signal_clicked().connect(slot(*this, &Pagesel::next)); + left.signal_clicked().connect(mem_fun(*this, &Pagesel::prev)); + right.signal_clicked().connect(mem_fun(*this, &Pagesel::next)); pages.get_menu()->signal_selection_done().connect - (slot(*this, &Pagesel::page_selected_action)); + (mem_fun(*this, &Pagesel::page_selected_action)); show_all(); } Endast i passepartout-0.6/src/pptout: pagesel.cc~ diff -ur releases/passepartout-0.6/src/pptout/pageviewent.cc passepartout-0.6/src/pptout/pageviewent.cc --- releases/passepartout-0.6/src/pptout/pageviewent.cc 2004-09-26 16:13:02.000000000 +0200 +++ passepartout-0.6/src/pptout/pageviewent.cc 2007-03-03 22:47:36.000000000 +0100 @@ -9,10 +9,10 @@ guide_group(view.get_guide_group()) { Document::selection_changed_signal.connect - (slot(*this, &PageViewent::on_selection_changed)); + (mem_fun(*this, &PageViewent::on_selection_changed)); /// \todo maybe let Page throw a size_changed_signal instead? Document::size_changed_signal.connect - (slot(*this, &PageViewent::on_size_changed)); + (mem_fun(*this, &PageViewent::on_size_changed)); using namespace Gnome::Canvas; Endast i passepartout-0.6/src/pptout: pageviewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/postscriptviewent.cc passepartout-0.6/src/pptout/postscriptviewent.cc --- releases/passepartout-0.6/src/pptout/postscriptviewent.cc 2004-10-28 00:46:18.000000000 +0200 +++ passepartout-0.6/src/pptout/postscriptviewent.cc 2007-03-03 22:47:03.000000000 +0100 @@ -51,12 +51,12 @@ scale_factor = 1; ProcessManager::instance().process_stopped.connect - (slot(*this, &PostscriptViewent::process_stopped)); + (mem_fun(*this, &PostscriptViewent::process_stopped)); /// \todo Only regenerate when necessary, i.e. not when just moving ... frame->object_changed_signal.connect - (SigC::hide(slot(*this, &PostscriptViewent::regenerate))); + (sigc::hide(mem_fun(*this, &PostscriptViewent::regenerate))); view.connect_zoom_change - (SigC::hide(slot(*this, &PostscriptViewent::regenerate))); + (sigc::hide(mem_fun(*this, &PostscriptViewent::regenerate))); canvas_pixbuf.reset(new Gnome::Canvas::Pixbuf(*content_group)); canvas_pixbuf->property_anchor() = Gtk::ANCHOR_SOUTH_WEST; @@ -110,7 +110,7 @@ pid = P_STARTUP; Glib::signal_timeout().connect - (SigC::slot(*this, &PostscriptViewent::regenerate_bg), + (mem_fun(*this, &PostscriptViewent::regenerate_bg), 200, Glib::PRIORITY_DEFAULT_IDLE); } } Endast i passepartout-0.6/src/pptout: postscriptviewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/preferencesdialog.cc passepartout-0.6/src/pptout/preferencesdialog.cc --- releases/passepartout-0.6/src/pptout/preferencesdialog.cc 2004-10-13 02:02:16.000000000 +0200 +++ passepartout-0.6/src/pptout/preferencesdialog.cc 2007-03-03 23:14:40.000000000 +0100 @@ -136,11 +136,11 @@ cancel_button->set_flags(Gtk::CAN_DEFAULT); cancel_button->grab_default(); cancel_button->signal_clicked(). - connect(SigC::slot(*this, &PreferencesDialog::dialog_cancel)); + connect(mem_fun(*this, &PreferencesDialog::dialog_cancel)); apply_button->signal_clicked(). - connect(SigC::slot(*this, &PreferencesDialog::dialog_apply)); + connect(mem_fun(*this, &PreferencesDialog::dialog_apply)); signal_delete_event(). - connect(SigC::slot(*this, &PreferencesDialog::dialog_delete)); + connect(mem_fun(*this, &PreferencesDialog::dialog_delete)); //Add the notebook pages Endast i passepartout-0.6/src/pptout: preferencesdialog.cc~ diff -ur releases/passepartout-0.6/src/pptout/printdialog.cc passepartout-0.6/src/pptout/printdialog.cc --- releases/passepartout-0.6/src/pptout/printdialog.cc 2004-10-27 11:38:24.000000000 +0200 +++ passepartout-0.6/src/pptout/printdialog.cc 2007-03-03 22:38:03.000000000 +0100 @@ -76,7 +76,7 @@ format_menu.set_menu(*menu); } format_menu.get_menu()->signal_selection_done().connect - (slot(*this, &PrintDialog::update)); + (mem_fun(*this, &PrintDialog::update)); format_menu_box->pack_start(format_menu, Gtk::PACK_EXPAND_WIDGET); Gtk::HBox *using_box = manage(new Gtk::HBox(false, double_space)); @@ -126,12 +126,12 @@ using_entry.set_text(config.PrintCommand.values.front()); using_button.set_active(true); - using_button.signal_clicked().connect(slot(*this, &PrintDialog::update)); + using_button.signal_clicked().connect(mem_fun(*this, &PrintDialog::update)); // If there are only two buttons in a group, you only need to connect one. // If there are more, you need to connect them all. That is annoying. - all_button.signal_clicked().connect(slot(*this, &PrintDialog::update)); - current_button.signal_clicked().connect(slot(*this, &PrintDialog::update)); - from_button.signal_clicked().connect(slot(*this, &PrintDialog::update)); + all_button.signal_clicked().connect(mem_fun(*this, &PrintDialog::update)); + current_button.signal_clicked().connect(mem_fun(*this, &PrintDialog::update)); + from_button.signal_clicked().connect(mem_fun(*this, &PrintDialog::update)); add_button(Gtk::Stock::CANCEL, 0); add_button(Gtk::Stock::PRINT, 1)->grab_default(); @@ -221,7 +221,7 @@ + file_entry.entry.get_text(), "Check if you have permission " "to write to this file"); - window->set_cursor(Gdk::WATCH); + window->set_cursor(Gdk::Cursor(Gdk::WATCH)); // make sure the cursor is updated while(Gtk::Main::events_pending()) Gtk::Main::iteration(); Endast i passepartout-0.6/src/pptout: printdialog.cc~ diff -ur releases/passepartout-0.6/src/pptout/propbase.cc passepartout-0.6/src/pptout/propbase.cc --- releases/passepartout-0.6/src/pptout/propbase.cc 2004-04-16 21:03:56.000000000 +0200 +++ passepartout-0.6/src/pptout/propbase.cc 2007-03-03 23:22:21.000000000 +0100 @@ -23,7 +23,7 @@ // one. I think this has to do with Gtk::Entry having its own // window. if(!sensitive) - foreach(slot(hide_widget)); + foreach(sigc::ptr_fun(hide_widget)); } void PropBase::right_justify(Gtk::Label &label) { Endast i passepartout-0.6/src/pptout: propbase.cc~ diff -ur releases/passepartout-0.6/src/pptout/propertiesdialog.cc passepartout-0.6/src/pptout/propertiesdialog.cc --- releases/passepartout-0.6/src/pptout/propertiesdialog.cc 2004-05-06 01:56:30.000000000 +0200 +++ passepartout-0.6/src/pptout/propertiesdialog.cc 2007-03-03 23:15:40.000000000 +0100 @@ -53,10 +53,10 @@ line->pack_start(e_name); // not sure if connecting to signal_activate adds anything e_name.signal_activate().connect - (bind(slot(*this, &PropBasic::on_change), NAME)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), NAME)); e_name.signal_focus_out_event().connect - (SigC::hide - (bind_return(bind(slot(*this, &PropBasic::on_change), NAME), true))); + (sigc::hide + (sigc::bind_return(sigc::bind(mem_fun(*this, &PropBasic::on_change), NAME), true))); pack_start(*line, Gtk::PACK_SHRINK); SubPanel *box = manage(new SubPanel("Geometry")); @@ -69,7 +69,7 @@ line->pack_start(*label, Gtk::PACK_SHRINK); line->pack_start(e_left, Gtk::PACK_SHRINK); e_left.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), LEFT)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), LEFT)); label->set_mnemonic_widget(e_left); sizegroup->add_widget(*(label = manage(new Gtk::Label("_Width:", @@ -78,7 +78,7 @@ line->pack_start(e_width, Gtk::PACK_SHRINK); label->set_mnemonic_widget(e_width); e_width.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), WIDTH)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), WIDTH)); box->pack_start(*line, Gtk::PACK_SHRINK); line = manage(new Gtk::HBox(false, double_space)); @@ -87,7 +87,7 @@ line->pack_start(*label, Gtk::PACK_SHRINK); line->pack_start(e_bottom, Gtk::PACK_SHRINK); e_bottom.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), BOTTOM)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), BOTTOM)); label->set_mnemonic_widget(e_bottom); sizegroup->add_widget(*(label = manage(new Gtk::Label("_Height:", @@ -96,7 +96,7 @@ line->pack_start(e_height, Gtk::PACK_SHRINK); label->set_mnemonic_widget(e_height); e_height.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), HEIGHT)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), HEIGHT)); box->pack_start(*line, Gtk::PACK_SHRINK); line = manage(new Gtk::HBox(false, double_space)); @@ -106,7 +106,7 @@ line->pack_start(e_rotate, Gtk::PACK_SHRINK); label->set_mnemonic_widget(e_rotate); e_rotate.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), ROTATE)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), ROTATE)); box->pack_start(*line, Gtk::PACK_SHRINK); pack_start(*box, Gtk::PACK_SHRINK); @@ -116,13 +116,13 @@ Gtk::HBox *flow_box = manage(new Gtk::HBox(false, double_space)); flow_box->pack_start(c_locked, Gtk::PACK_SHRINK, triple_space); c_locked.signal_toggled().connect - (bind(slot(*this, &PropBasic::on_change), LOCKED)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), LOCKED)); flow_box->pack_start(c_flow, Gtk::PACK_SHRINK, 0); c_flow.signal_toggled().connect - (bind(slot(*this, &PropBasic::on_change), FLOWAROUND)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), FLOWAROUND)); flow_box->pack_start(e_margin, Gtk::PACK_SHRINK, 0); e_margin.signal_value_changed().connect - (bind(slot(*this, &PropBasic::on_change), MARGIN)); + (sigc::bind(mem_fun(*this, &PropBasic::on_change), MARGIN)); pack_start(*flow_box, Gtk::PACK_SHRINK); set_sensitive(false); @@ -139,9 +139,9 @@ object = pagent; if(object) { geometry_changed_connection = object->geometry_changed_signal.connect - (slot(*this, &PropBasic::on_geometry_changed)); + (mem_fun(*this, &PropBasic::on_geometry_changed)); props_changed_connection = object->props_changed_signal.connect - (slot(*this, &PropBasic::on_props_changed)); + (mem_fun(*this, &PropBasic::on_props_changed)); } set_sensitive(object); if(is_visible()) @@ -245,7 +245,7 @@ add(book); book.signal_switch_page().connect - (slot(*this, &PropertiesDialog::show_page_contents)); + (mem_fun(*this, &PropertiesDialog::show_page_contents)); PropBase* prop = new PropBasic(config.LengthUnit.values.front()); pages.push_back(prop); @@ -260,7 +260,7 @@ // listen to selection change signals: Document::selection_changed_signal.connect - (slot(*this, &PropertiesDialog::select_change)); + (mem_fun(*this, &PropertiesDialog::select_change)); } PropertiesDialog::~PropertiesDialog() {} Endast i passepartout-0.6/src/pptout: propertiesdialog.cc~ diff -ur releases/passepartout-0.6/src/pptout/rastermeta.cc passepartout-0.6/src/pptout/rastermeta.cc --- releases/passepartout-0.6/src/pptout/rastermeta.cc 2004-04-29 00:26:14.000000000 +0200 +++ passepartout-0.6/src/pptout/rastermeta.cc 2007-03-03 23:18:20.000000000 +0100 @@ -21,7 +21,6 @@ Viewent::Ref RasterMeta::create_viewent(View& view, Pagent& node) { Viewent::Ref result(new RasterViewent (view, &dynamic_cast(node))); - result->set_manage(); // turn refcounting on result->reference(); return result; } @@ -44,7 +43,7 @@ Spinner e_ppix, e_ppiy; Gtk::ToggleButton b_ppic; Gtk::HSeparator hsep; - SigC::Connection geometry_changed_connection, props_changed_connection; + sigc::connection geometry_changed_connection, props_changed_connection; }; }; @@ -63,12 +62,12 @@ line->pack_start(*label, Gtk::PACK_SHRINK); line->pack_start(e_fname); e_fname.entry.get_entry()->signal_activate().connect - (bind(slot(*this, &PropRaster::on_change), FILENAME)); + (bind(mem_fun(*this, &PropRaster::on_change), FILENAME)); e_fname.entry.get_entry()->signal_focus_out_event().connect - (SigC::hide(bind_return(bind(slot(*this, - &PropRaster::on_change), - FILENAME), - true))); + (sigc::hide(bind_return(bind(mem_fun(*this, + &PropRaster::on_change), + FILENAME), + true))); pack_start(*line, Gtk::PACK_SHRINK); Glib::RefPtr sizegroup = @@ -108,11 +107,11 @@ pack_start(*rezpanel, Gtk::PACK_SHRINK); e_ppix.signal_value_changed().connect - (bind(slot(*this, &PropRaster::on_change), HRES)); + (bind(mem_fun(*this, &PropRaster::on_change), HRES)); e_ppiy.signal_value_changed().connect - (bind(slot(*this, &PropRaster::on_change), VRES)); + (bind(mem_fun(*this, &PropRaster::on_change), VRES)); b_ppic.signal_toggled().connect - (bind(slot(*this, &PropRaster::on_change), ASPECT)); + (bind(mem_fun(*this, &PropRaster::on_change), ASPECT)); set_sensitive(false); update(); } @@ -123,10 +122,10 @@ if(object) { // Switch raster resolution geometry_changed_connection = object->geometry_changed_signal.connect - (SigC::hide(slot(*this, &PropRaster::update))); + (sigc::hide(mem_fun(*this, &PropRaster::update))); // Switched file props_changed_connection = object->props_changed_signal.connect - (SigC::hide(slot(*this, &PropRaster::update))); + (sigc::hide(mem_fun(*this, &PropRaster::update))); } } Endast i passepartout-0.6/src/pptout: rastermeta.cc~ diff -ur releases/passepartout-0.6/src/pptout/rasterviewent.cc passepartout-0.6/src/pptout/rasterviewent.cc --- releases/passepartout-0.6/src/pptout/rasterviewent.cc 2004-04-29 22:36:17.000000000 +0200 +++ passepartout-0.6/src/pptout/rasterviewent.cc 2007-03-03 22:47:58.000000000 +0100 @@ -7,9 +7,9 @@ : Viewent(view, rasterframe), frame(rasterframe) { frame->props_changed_signal.connect - (slot(*this, &RasterViewent::on_geometry_changed)); + (mem_fun(*this, &RasterViewent::on_geometry_changed)); frame->object_changed_signal.connect - (slot(*this, &RasterViewent::on_object_changed)); + (mem_fun(*this, &RasterViewent::on_object_changed)); canvas_pixbuf.reset(new Gnome::Canvas::Pixbuf(*content_group)); canvas_pixbuf->property_x() = 0; canvas_pixbuf->property_y() = 0; Endast i passepartout-0.6/src/pptout: rasterviewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/streamdialog.cc passepartout-0.6/src/pptout/streamdialog.cc --- releases/passepartout-0.6/src/pptout/streamdialog.cc 2004-04-27 22:41:50.000000000 +0200 +++ passepartout-0.6/src/pptout/streamdialog.cc 2007-03-03 22:34:04.000000000 +0100 @@ -61,10 +61,10 @@ } namespace { - SigC::Slot1 - adapt_focus_out(SigC::Slot1 slot, int response_id) { - return SigC::hide(SigC::bind_return - (SigC::bind(slot, response_id), true)); + sigc::slot1 + adapt_focus_out(sigc::slot1 slot, int response_id) { + return sigc::hide(sigc::bind_return + (sigc::bind(slot, response_id), true)); } } @@ -90,7 +90,7 @@ Glib::RefPtr selection = stream_list.get_selection(); selection->signal_changed().connect - (slot(*this, &StreamDialog::on_selection_changed)); + (mem_fun(*this, &StreamDialog::on_selection_changed)); Gtk::ScrolledWindow *scroll = manage(new Gtk::ScrolledWindow()); scroll->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); @@ -159,7 +159,7 @@ param_list.append_column_editable("Value", param_columns.value); param_list.property_height_request() = 90; param_model->signal_row_changed().connect - (slot(*this, &StreamDialog::on_param_row_changed)); + (mem_fun(*this, &StreamDialog::on_param_row_changed)); Gtk::ScrolledWindow *scroll = manage(new Gtk::ScrolledWindow()); scroll->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll->set_shadow_type(Gtk::SHADOW_IN); @@ -174,24 +174,24 @@ show_all_children(); Document::streams_changed_signal.connect - (slot(*this, &StreamDialog::_update)); + (mem_fun(*this, &StreamDialog::_update)); name_entry.signal_activate().connect - (bind(slot(*this, &StreamDialog::on_response), Response::SETNAME)); + (bind(mem_fun(*this, &StreamDialog::on_response), Response::SETNAME)); name_entry.signal_focus_out_event().connect - (adapt_focus_out(slot(*this, &StreamDialog::on_response), + (adapt_focus_out(mem_fun(*this, &StreamDialog::on_response), Response::SETNAME)); file_entry.entry.get_entry()->signal_activate().connect - (bind(slot(*this, &StreamDialog::on_response), Response::SETFILE)); + (bind(mem_fun(*this, &StreamDialog::on_response), Response::SETFILE)); file_entry.entry.get_entry()->signal_focus_out_event().connect - (adapt_focus_out(slot(*this, &StreamDialog::on_response), + (adapt_focus_out(mem_fun(*this, &StreamDialog::on_response), Response::SETFILE)); xfrm_entry.entry.get_entry()->signal_activate().connect - (bind(slot(*this, &StreamDialog::on_response), Response::SETXFRM)); + (bind(mem_fun(*this, &StreamDialog::on_response), Response::SETXFRM)); xfrm_entry.entry.get_entry()->signal_focus_out_event().connect - (adapt_focus_out(slot(*this, &StreamDialog::on_response), + (adapt_focus_out(mem_fun(*this, &StreamDialog::on_response), Response::SETXFRM)); } @@ -224,9 +224,9 @@ Gtk::Button *b = manage(button); // Note: It seems that activate means "in any way except a simple click". // So we have to add callbacks for both activate and clicked. - b->signal_clicked().connect(bind(slot(*this, &StreamDialog::on_response), + b->signal_clicked().connect(bind(mem_fun(*this, &StreamDialog::on_response), action_id)); - b->signal_activate().connect(bind(slot(*this, &StreamDialog::on_response), + b->signal_activate().connect(bind(mem_fun(*this, &StreamDialog::on_response), action_id)); return b; } @@ -491,7 +491,7 @@ get_vbox()->pack_start(*main_box); - Gtk::RadioButton_Helpers::Group group = old_button->get_group(); + Gtk::RadioButtonGroup group = old_button->get_group(); new_button->set_group(group); old_button->set_active(); fix_button(new_button, RESPONSE_TOGGLE_MODE); Endast i passepartout-0.6/src/pptout: streamdialog.cc~ diff -ur releases/passepartout-0.6/src/pptout/textmeta.cc passepartout-0.6/src/pptout/textmeta.cc --- releases/passepartout-0.6/src/pptout/textmeta.cc 2004-04-27 17:54:03.000000000 +0200 +++ passepartout-0.6/src/pptout/textmeta.cc 2007-03-03 23:19:13.000000000 +0100 @@ -21,7 +21,6 @@ Viewent::Ref TextMeta::create_viewent(View& view, Pagent& node) { Viewent::Ref result(new TextViewent (view, &dynamic_cast(node), 2)); - result->set_manage(); // turn refcounting on result->reference(); return result; } @@ -41,9 +40,9 @@ label->set_mnemonic_widget(e_stream); line->pack_start(e_stream, Gtk::PACK_EXPAND_WIDGET); e_stream.signal_changed().connect - (bind(slot(*this, &PropText::on_change), STREAM)); + (bind(mem_fun(*this, &PropText::on_change), STREAM)); Gtk::Button *b_streams = manage(new Gtk::Button("E_dit streams", true)); - b_streams->signal_clicked().connect(slot(StreamDialog::instance(), + b_streams->signal_clicked().connect(mem_fun(StreamDialog::instance(), &StreamDialog::show_raise)); line->pack_start(*b_streams, Gtk::PACK_SHRINK); pack_start(*line, Gtk::PACK_SHRINK); @@ -57,7 +56,7 @@ label->set_mnemonic_widget(e_columns); e_columns.limits(1, 64); // Note: The upper limit is rather arbitrary. e_columns.signal_value_changed().connect - (bind(slot(*this, &PropText::on_change), COLUMNS)); + (bind(mem_fun(*this, &PropText::on_change), COLUMNS)); line->pack_start(e_columns, Gtk::PACK_SHRINK); box->pack_start(*line); @@ -69,13 +68,13 @@ label->set_mnemonic_widget(e_gutter); line->pack_start(e_gutter, Gtk::PACK_SHRINK); e_gutter.signal_value_changed().connect - (bind(slot(*this, &PropText::on_change), GUTTER)); + (bind(mem_fun(*this, &PropText::on_change), GUTTER)); box->pack_start(*line); pack_start(*box, Gtk::PACK_SHRINK); // perhaps this should go into the StreamMenu class Document::streams_changed_signal.connect - (slot(*this, &PropText::on_streams_changed)); + (mem_fun(*this, &PropText::on_streams_changed)); set_sensitive(false); update(); Endast i passepartout-0.6/src/pptout: textmeta.cc~ diff -ur releases/passepartout-0.6/src/pptout/textviewent.cc passepartout-0.6/src/pptout/textviewent.cc --- releases/passepartout-0.6/src/pptout/textviewent.cc 2004-04-29 22:36:17.000000000 +0200 +++ passepartout-0.6/src/pptout/textviewent.cc 2007-03-03 22:48:28.000000000 +0100 @@ -19,7 +19,7 @@ trunc_ind->hide(); on_geometry_changed(cachedframe); dynamic_cast(cachedframe)->truncated_state_changed_signal.connect - (slot(*this, &TextViewent::on_truncated_state_changed)); + (mem_fun(*this, &TextViewent::on_truncated_state_changed)); } void TextViewent::on_truncated_state_changed(bool truncated) { Endast i passepartout-0.6/src/pptout: textviewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/widget/dialogwrap.cc passepartout-0.6/src/pptout/widget/dialogwrap.cc --- releases/passepartout-0.6/src/pptout/widget/dialogwrap.cc 2004-04-16 16:59:36.000000000 +0200 +++ passepartout-0.6/src/pptout/widget/dialogwrap.cc 2007-03-03 22:29:54.000000000 +0100 @@ -23,9 +23,9 @@ Gtk::Button *b = manage(button); // Note: It seems that activate means "in any way except a simple click". // So we have to add callbacks for both activate and clicked. - b->signal_clicked().connect(bind(slot(*this, &Gtk::Dialog::on_response), + b->signal_clicked().connect(sigc::bind(mem_fun(*this, &DialogWrap::on_response), action_id)); - b->signal_activate().connect(bind(slot(*this, &Gtk::Dialog::on_response), + b->signal_activate().connect(sigc::bind(mem_fun(*this, &DialogWrap::on_response), action_id)); return b; } Endast i passepartout-0.6/src/pptout/widget: dialogwrap.cc~ diff -ur releases/passepartout-0.6/src/pptout/widget/filesel.cc passepartout-0.6/src/pptout/widget/filesel.cc --- releases/passepartout-0.6/src/pptout/widget/filesel.cc 2004-10-28 20:58:52.000000000 +0200 +++ passepartout-0.6/src/pptout/widget/filesel.cc 2007-03-03 22:26:28.000000000 +0100 @@ -74,7 +74,7 @@ entry.show(); button.set_size_request(-1, entry.get_height()); - button.signal_clicked().connect(slot(*this, &FileEntry::show_filesel)); + button.signal_clicked().connect(mem_fun(*this, &FileEntry::show_filesel)); } bool FileEntry::on_mnemonic_activate(bool group_cycling) { @@ -115,7 +115,7 @@ } else { filesel.reset(new Filesel(*toplevel, window_title, true, false)); } - filesel->signal_hide().connect(slot(*this, &FileEntry::filesel_done)); + filesel->signal_hide().connect(mem_fun(*this, &FileEntry::filesel_done)); if(entry.get_text() != *default_value) { //If non-default entry filesel->set_filename(entry.get_text().empty() ? default_path Endast i passepartout-0.6/src/pptout/widget: filesel.cc~ diff -ur releases/passepartout-0.6/src/pptout/widget/imagefilesel.cc passepartout-0.6/src/pptout/widget/imagefilesel.cc --- releases/passepartout-0.6/src/pptout/widget/imagefilesel.cc 2004-04-16 01:05:43.000000000 +0200 +++ passepartout-0.6/src/pptout/widget/imagefilesel.cc 2007-03-03 22:26:58.000000000 +0100 @@ -58,11 +58,11 @@ box->show_all(); get_selection_entry()->signal_changed().connect - (slot(*this, &ImageFilesel::update_preview)); + (mem_fun(*this, &ImageFilesel::update_preview)); show_preview.signal_clicked().connect - (slot(*this, &ImageFilesel::update_preview)); + (mem_fun(*this, &ImageFilesel::update_preview)); res.signal_value_changed().connect - (slot(*this, &ImageFilesel::update_size)); + (mem_fun(*this, &ImageFilesel::update_size)); } void ImageFilesel::update_size() { Endast i passepartout-0.6/src/pptout/widget: imagefilesel.cc~ diff -ur releases/passepartout-0.6/src/pptout/widget/Makefile.in passepartout-0.6/src/pptout/widget/Makefile.in --- releases/passepartout-0.6/src/pptout/widget/Makefile.in 2004-10-31 20:23:52.000000000 +0100 +++ passepartout-0.6/src/pptout/widget/Makefile.in 2007-03-04 00:05:05.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,43 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src/pptout/widget +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libwidget_a_AR = $(AR) $(ARFLAGS) +libwidget_a_LIBADD = +am_libwidget_a_OBJECTS = libwidget_a-spinner.$(OBJEXT) \ + libwidget_a-filesel.$(OBJEXT) \ + libwidget_a-imagefilesel.$(OBJEXT) \ + libwidget_a-dialogwrap.$(OBJEXT) \ + libwidget_a-subpanel.$(OBJEXT) libwidget_a-wmisc.$(OBJEXT) \ + libwidget_a-errordialog.$(OBJEXT) \ + libwidget_a-usererror.$(OBJEXT) +libwidget_a_OBJECTS = $(am_libwidget_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libwidget_a_SOURCES) +DIST_SOURCES = $(libwidget_a_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +138,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +146,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +161,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,69 +171,48 @@ target_alias = @target_alias@ xmldir = @xmldir@ noinst_LIBRARIES = libwidget.a - dist_noinst_HEADERS = spinner.h filesel.h imagefilesel.h dialogwrap.h \ subpanel.h wmisc.h errordialog.h usererror.h - libwidget_a_SOURCES = spinner.cc filesel.cc imagefilesel.cc \ dialogwrap.cc subpanel.cc wmisc.cc errordialog.cc \ usererror.cc - -libwidget_a_CXXFLAGS = $(GDK_PIXBUF_CFLAGS) $(GTKMM_CFLAGS)\ - $(SIGC_CFLAGS)\ --I$(top_srcdir)/src -subdir = src/pptout/widget -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libwidget_a_AR = $(AR) cru -libwidget_a_LIBADD = -am_libwidget_a_OBJECTS = libwidget_a-spinner.$(OBJEXT) \ - libwidget_a-filesel.$(OBJEXT) \ - libwidget_a-imagefilesel.$(OBJEXT) \ - libwidget_a-dialogwrap.$(OBJEXT) libwidget_a-subpanel.$(OBJEXT) \ - libwidget_a-wmisc.$(OBJEXT) libwidget_a-errordialog.$(OBJEXT) \ - libwidget_a-usererror.$(OBJEXT) -libwidget_a_OBJECTS = $(am_libwidget_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libwidget_a-dialogwrap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-errordialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-filesel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-imagefilesel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-spinner.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-subpanel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-usererror.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libwidget_a-wmisc.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libwidget_a_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libwidget_a_SOURCES) - +libwidget_a_CXXFLAGS = $(GDK_PIXBUF_CFLAGS) $(GTKMM_CFLAGS) \ + $(SIGC_CFLAGS) -I$(top_srcdir)/src all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/pptout/widget/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/pptout/widget/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -202,7 +222,7 @@ $(RANLIB) libwidget.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -217,212 +237,132 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwidget_a-wmisc.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libwidget_a-spinner.o: spinner.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-spinner.o -MD -MP -MF "$(DEPDIR)/libwidget_a-spinner.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-spinner.o `test -f 'spinner.cc' || echo '$(srcdir)/'`spinner.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-spinner.Tpo" "$(DEPDIR)/libwidget_a-spinner.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-spinner.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-spinner.o -MD -MP -MF "$(DEPDIR)/libwidget_a-spinner.Tpo" -c -o libwidget_a-spinner.o `test -f 'spinner.cc' || echo '$(srcdir)/'`spinner.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-spinner.Tpo" "$(DEPDIR)/libwidget_a-spinner.Po"; else rm -f "$(DEPDIR)/libwidget_a-spinner.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='spinner.cc' object='libwidget_a-spinner.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-spinner.Po' tmpdepfile='$(DEPDIR)/libwidget_a-spinner.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-spinner.o `test -f 'spinner.cc' || echo '$(srcdir)/'`spinner.cc libwidget_a-spinner.obj: spinner.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-spinner.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-spinner.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-spinner.obj `if test -f 'spinner.cc'; then $(CYGPATH_W) 'spinner.cc'; else $(CYGPATH_W) '$(srcdir)/spinner.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-spinner.Tpo" "$(DEPDIR)/libwidget_a-spinner.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-spinner.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-spinner.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-spinner.Tpo" -c -o libwidget_a-spinner.obj `if test -f 'spinner.cc'; then $(CYGPATH_W) 'spinner.cc'; else $(CYGPATH_W) '$(srcdir)/spinner.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-spinner.Tpo" "$(DEPDIR)/libwidget_a-spinner.Po"; else rm -f "$(DEPDIR)/libwidget_a-spinner.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='spinner.cc' object='libwidget_a-spinner.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-spinner.Po' tmpdepfile='$(DEPDIR)/libwidget_a-spinner.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-spinner.obj `if test -f 'spinner.cc'; then $(CYGPATH_W) 'spinner.cc'; else $(CYGPATH_W) '$(srcdir)/spinner.cc'; fi` libwidget_a-filesel.o: filesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-filesel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-filesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-filesel.o `test -f 'filesel.cc' || echo '$(srcdir)/'`filesel.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-filesel.Tpo" "$(DEPDIR)/libwidget_a-filesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-filesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-filesel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-filesel.Tpo" -c -o libwidget_a-filesel.o `test -f 'filesel.cc' || echo '$(srcdir)/'`filesel.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-filesel.Tpo" "$(DEPDIR)/libwidget_a-filesel.Po"; else rm -f "$(DEPDIR)/libwidget_a-filesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='filesel.cc' object='libwidget_a-filesel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-filesel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-filesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-filesel.o `test -f 'filesel.cc' || echo '$(srcdir)/'`filesel.cc libwidget_a-filesel.obj: filesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-filesel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-filesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-filesel.obj `if test -f 'filesel.cc'; then $(CYGPATH_W) 'filesel.cc'; else $(CYGPATH_W) '$(srcdir)/filesel.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-filesel.Tpo" "$(DEPDIR)/libwidget_a-filesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-filesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-filesel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-filesel.Tpo" -c -o libwidget_a-filesel.obj `if test -f 'filesel.cc'; then $(CYGPATH_W) 'filesel.cc'; else $(CYGPATH_W) '$(srcdir)/filesel.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-filesel.Tpo" "$(DEPDIR)/libwidget_a-filesel.Po"; else rm -f "$(DEPDIR)/libwidget_a-filesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='filesel.cc' object='libwidget_a-filesel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-filesel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-filesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-filesel.obj `if test -f 'filesel.cc'; then $(CYGPATH_W) 'filesel.cc'; else $(CYGPATH_W) '$(srcdir)/filesel.cc'; fi` libwidget_a-imagefilesel.o: imagefilesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-imagefilesel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-imagefilesel.o `test -f 'imagefilesel.cc' || echo '$(srcdir)/'`imagefilesel.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" "$(DEPDIR)/libwidget_a-imagefilesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-imagefilesel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" -c -o libwidget_a-imagefilesel.o `test -f 'imagefilesel.cc' || echo '$(srcdir)/'`imagefilesel.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" "$(DEPDIR)/libwidget_a-imagefilesel.Po"; else rm -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imagefilesel.cc' object='libwidget_a-imagefilesel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-imagefilesel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-imagefilesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-imagefilesel.o `test -f 'imagefilesel.cc' || echo '$(srcdir)/'`imagefilesel.cc libwidget_a-imagefilesel.obj: imagefilesel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-imagefilesel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-imagefilesel.obj `if test -f 'imagefilesel.cc'; then $(CYGPATH_W) 'imagefilesel.cc'; else $(CYGPATH_W) '$(srcdir)/imagefilesel.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" "$(DEPDIR)/libwidget_a-imagefilesel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-imagefilesel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" -c -o libwidget_a-imagefilesel.obj `if test -f 'imagefilesel.cc'; then $(CYGPATH_W) 'imagefilesel.cc'; else $(CYGPATH_W) '$(srcdir)/imagefilesel.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo" "$(DEPDIR)/libwidget_a-imagefilesel.Po"; else rm -f "$(DEPDIR)/libwidget_a-imagefilesel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='imagefilesel.cc' object='libwidget_a-imagefilesel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-imagefilesel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-imagefilesel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-imagefilesel.obj `if test -f 'imagefilesel.cc'; then $(CYGPATH_W) 'imagefilesel.cc'; else $(CYGPATH_W) '$(srcdir)/imagefilesel.cc'; fi` libwidget_a-dialogwrap.o: dialogwrap.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-dialogwrap.o -MD -MP -MF "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-dialogwrap.o `test -f 'dialogwrap.cc' || echo '$(srcdir)/'`dialogwrap.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" "$(DEPDIR)/libwidget_a-dialogwrap.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-dialogwrap.o -MD -MP -MF "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" -c -o libwidget_a-dialogwrap.o `test -f 'dialogwrap.cc' || echo '$(srcdir)/'`dialogwrap.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" "$(DEPDIR)/libwidget_a-dialogwrap.Po"; else rm -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogwrap.cc' object='libwidget_a-dialogwrap.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-dialogwrap.Po' tmpdepfile='$(DEPDIR)/libwidget_a-dialogwrap.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-dialogwrap.o `test -f 'dialogwrap.cc' || echo '$(srcdir)/'`dialogwrap.cc libwidget_a-dialogwrap.obj: dialogwrap.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-dialogwrap.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-dialogwrap.obj `if test -f 'dialogwrap.cc'; then $(CYGPATH_W) 'dialogwrap.cc'; else $(CYGPATH_W) '$(srcdir)/dialogwrap.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" "$(DEPDIR)/libwidget_a-dialogwrap.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-dialogwrap.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" -c -o libwidget_a-dialogwrap.obj `if test -f 'dialogwrap.cc'; then $(CYGPATH_W) 'dialogwrap.cc'; else $(CYGPATH_W) '$(srcdir)/dialogwrap.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo" "$(DEPDIR)/libwidget_a-dialogwrap.Po"; else rm -f "$(DEPDIR)/libwidget_a-dialogwrap.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogwrap.cc' object='libwidget_a-dialogwrap.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-dialogwrap.Po' tmpdepfile='$(DEPDIR)/libwidget_a-dialogwrap.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-dialogwrap.obj `if test -f 'dialogwrap.cc'; then $(CYGPATH_W) 'dialogwrap.cc'; else $(CYGPATH_W) '$(srcdir)/dialogwrap.cc'; fi` libwidget_a-subpanel.o: subpanel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-subpanel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-subpanel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-subpanel.o `test -f 'subpanel.cc' || echo '$(srcdir)/'`subpanel.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-subpanel.Tpo" "$(DEPDIR)/libwidget_a-subpanel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-subpanel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-subpanel.o -MD -MP -MF "$(DEPDIR)/libwidget_a-subpanel.Tpo" -c -o libwidget_a-subpanel.o `test -f 'subpanel.cc' || echo '$(srcdir)/'`subpanel.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-subpanel.Tpo" "$(DEPDIR)/libwidget_a-subpanel.Po"; else rm -f "$(DEPDIR)/libwidget_a-subpanel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='subpanel.cc' object='libwidget_a-subpanel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-subpanel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-subpanel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-subpanel.o `test -f 'subpanel.cc' || echo '$(srcdir)/'`subpanel.cc libwidget_a-subpanel.obj: subpanel.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-subpanel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-subpanel.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-subpanel.obj `if test -f 'subpanel.cc'; then $(CYGPATH_W) 'subpanel.cc'; else $(CYGPATH_W) '$(srcdir)/subpanel.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-subpanel.Tpo" "$(DEPDIR)/libwidget_a-subpanel.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-subpanel.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-subpanel.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-subpanel.Tpo" -c -o libwidget_a-subpanel.obj `if test -f 'subpanel.cc'; then $(CYGPATH_W) 'subpanel.cc'; else $(CYGPATH_W) '$(srcdir)/subpanel.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-subpanel.Tpo" "$(DEPDIR)/libwidget_a-subpanel.Po"; else rm -f "$(DEPDIR)/libwidget_a-subpanel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='subpanel.cc' object='libwidget_a-subpanel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-subpanel.Po' tmpdepfile='$(DEPDIR)/libwidget_a-subpanel.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-subpanel.obj `if test -f 'subpanel.cc'; then $(CYGPATH_W) 'subpanel.cc'; else $(CYGPATH_W) '$(srcdir)/subpanel.cc'; fi` libwidget_a-wmisc.o: wmisc.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-wmisc.o -MD -MP -MF "$(DEPDIR)/libwidget_a-wmisc.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-wmisc.o `test -f 'wmisc.cc' || echo '$(srcdir)/'`wmisc.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-wmisc.Tpo" "$(DEPDIR)/libwidget_a-wmisc.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-wmisc.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-wmisc.o -MD -MP -MF "$(DEPDIR)/libwidget_a-wmisc.Tpo" -c -o libwidget_a-wmisc.o `test -f 'wmisc.cc' || echo '$(srcdir)/'`wmisc.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-wmisc.Tpo" "$(DEPDIR)/libwidget_a-wmisc.Po"; else rm -f "$(DEPDIR)/libwidget_a-wmisc.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='wmisc.cc' object='libwidget_a-wmisc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-wmisc.Po' tmpdepfile='$(DEPDIR)/libwidget_a-wmisc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-wmisc.o `test -f 'wmisc.cc' || echo '$(srcdir)/'`wmisc.cc libwidget_a-wmisc.obj: wmisc.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-wmisc.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-wmisc.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-wmisc.obj `if test -f 'wmisc.cc'; then $(CYGPATH_W) 'wmisc.cc'; else $(CYGPATH_W) '$(srcdir)/wmisc.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-wmisc.Tpo" "$(DEPDIR)/libwidget_a-wmisc.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-wmisc.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-wmisc.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-wmisc.Tpo" -c -o libwidget_a-wmisc.obj `if test -f 'wmisc.cc'; then $(CYGPATH_W) 'wmisc.cc'; else $(CYGPATH_W) '$(srcdir)/wmisc.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-wmisc.Tpo" "$(DEPDIR)/libwidget_a-wmisc.Po"; else rm -f "$(DEPDIR)/libwidget_a-wmisc.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='wmisc.cc' object='libwidget_a-wmisc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-wmisc.Po' tmpdepfile='$(DEPDIR)/libwidget_a-wmisc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-wmisc.obj `if test -f 'wmisc.cc'; then $(CYGPATH_W) 'wmisc.cc'; else $(CYGPATH_W) '$(srcdir)/wmisc.cc'; fi` libwidget_a-errordialog.o: errordialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-errordialog.o -MD -MP -MF "$(DEPDIR)/libwidget_a-errordialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-errordialog.o `test -f 'errordialog.cc' || echo '$(srcdir)/'`errordialog.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-errordialog.Tpo" "$(DEPDIR)/libwidget_a-errordialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-errordialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-errordialog.o -MD -MP -MF "$(DEPDIR)/libwidget_a-errordialog.Tpo" -c -o libwidget_a-errordialog.o `test -f 'errordialog.cc' || echo '$(srcdir)/'`errordialog.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-errordialog.Tpo" "$(DEPDIR)/libwidget_a-errordialog.Po"; else rm -f "$(DEPDIR)/libwidget_a-errordialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='errordialog.cc' object='libwidget_a-errordialog.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-errordialog.Po' tmpdepfile='$(DEPDIR)/libwidget_a-errordialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-errordialog.o `test -f 'errordialog.cc' || echo '$(srcdir)/'`errordialog.cc libwidget_a-errordialog.obj: errordialog.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-errordialog.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-errordialog.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-errordialog.obj `if test -f 'errordialog.cc'; then $(CYGPATH_W) 'errordialog.cc'; else $(CYGPATH_W) '$(srcdir)/errordialog.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-errordialog.Tpo" "$(DEPDIR)/libwidget_a-errordialog.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-errordialog.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-errordialog.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-errordialog.Tpo" -c -o libwidget_a-errordialog.obj `if test -f 'errordialog.cc'; then $(CYGPATH_W) 'errordialog.cc'; else $(CYGPATH_W) '$(srcdir)/errordialog.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-errordialog.Tpo" "$(DEPDIR)/libwidget_a-errordialog.Po"; else rm -f "$(DEPDIR)/libwidget_a-errordialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='errordialog.cc' object='libwidget_a-errordialog.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-errordialog.Po' tmpdepfile='$(DEPDIR)/libwidget_a-errordialog.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-errordialog.obj `if test -f 'errordialog.cc'; then $(CYGPATH_W) 'errordialog.cc'; else $(CYGPATH_W) '$(srcdir)/errordialog.cc'; fi` libwidget_a-usererror.o: usererror.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-usererror.o -MD -MP -MF "$(DEPDIR)/libwidget_a-usererror.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-usererror.o `test -f 'usererror.cc' || echo '$(srcdir)/'`usererror.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-usererror.Tpo" "$(DEPDIR)/libwidget_a-usererror.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-usererror.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-usererror.o -MD -MP -MF "$(DEPDIR)/libwidget_a-usererror.Tpo" -c -o libwidget_a-usererror.o `test -f 'usererror.cc' || echo '$(srcdir)/'`usererror.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-usererror.Tpo" "$(DEPDIR)/libwidget_a-usererror.Po"; else rm -f "$(DEPDIR)/libwidget_a-usererror.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='usererror.cc' object='libwidget_a-usererror.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-usererror.Po' tmpdepfile='$(DEPDIR)/libwidget_a-usererror.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-usererror.o `test -f 'usererror.cc' || echo '$(srcdir)/'`usererror.cc libwidget_a-usererror.obj: usererror.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-usererror.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-usererror.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libwidget_a-usererror.obj `if test -f 'usererror.cc'; then $(CYGPATH_W) 'usererror.cc'; else $(CYGPATH_W) '$(srcdir)/usererror.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-usererror.Tpo" "$(DEPDIR)/libwidget_a-usererror.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libwidget_a-usererror.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -MT libwidget_a-usererror.obj -MD -MP -MF "$(DEPDIR)/libwidget_a-usererror.Tpo" -c -o libwidget_a-usererror.obj `if test -f 'usererror.cc'; then $(CYGPATH_W) 'usererror.cc'; else $(CYGPATH_W) '$(srcdir)/usererror.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libwidget_a-usererror.Tpo" "$(DEPDIR)/libwidget_a-usererror.Po"; else rm -f "$(DEPDIR)/libwidget_a-usererror.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='usererror.cc' object='libwidget_a-usererror.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libwidget_a-usererror.Po' tmpdepfile='$(DEPDIR)/libwidget_a-usererror.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwidget_a_CXXFLAGS) $(CXXFLAGS) -c -o libwidget_a-usererror.obj `if test -f 'usererror.cc'; then $(CYGPATH_W) 'usererror.cc'; else $(CYGPATH_W) '$(srcdir)/usererror.cc'; fi` 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 \ @@ -431,6 +371,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -442,10 +383,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -468,10 +410,6 @@ 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'`; \ @@ -485,7 +423,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -503,7 +441,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) - installdirs: install: install-am install-exec: install-exec-am @@ -524,7 +461,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -543,6 +480,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -578,13 +517,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-noinstLIBRARIES ctags distclean distclean-compile \ - distclean-generic 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 pdf pdf-am \ - ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-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 pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am #libwidget_a_LIBADD = $(GDK_PIXBUF_LIBS) $(GTKMM_LIBS)\ diff -ur releases/passepartout-0.6/src/pptout/widget/spinner.cc passepartout-0.6/src/pptout/widget/spinner.cc --- releases/passepartout-0.6/src/pptout/widget/spinner.cc 2004-04-16 01:05:43.000000000 +0200 +++ passepartout-0.6/src/pptout/widget/spinner.cc 2007-03-03 22:25:59.000000000 +0100 @@ -83,7 +83,7 @@ optionmenu = manage(new Gtk::OptionMenu()); optionmenu->set_menu(*menu); menu->signal_selection_done().connect - (slot(*this, &Spinner::on_unit_select)); + (mem_fun(*this, &Spinner::on_unit_select)); optionmenu->set_size_request(-1, spinbutton->get_height()); pack_start(*optionmenu); Endast i passepartout-0.6/src/pptout/widget: spinner.cc~ diff -ur releases/passepartout-0.6/src/pptout/viewent.cc passepartout-0.6/src/pptout/viewent.cc --- releases/passepartout-0.6/src/pptout/viewent.cc 2004-07-04 19:30:04.000000000 +0200 +++ passepartout-0.6/src/pptout/viewent.cc 2007-03-03 22:38:35.000000000 +0100 @@ -17,9 +17,9 @@ : view(the_view) { pagent->props_changed_signal.connect - (slot(*this, &Viewent::on_properties_changed)); + (mem_fun(*this, &Viewent::on_properties_changed)); pagent->geometry_changed_signal.connect - (slot(*this, &Viewent::on_geometry_changed)); + (mem_fun(*this, &Viewent::on_geometry_changed)); // can't create pixbuf until glib (or whatever) is initialized if(!broken_pixbuf) { Endast i passepartout-0.6/src/pptout: viewent.cc~ diff -ur releases/passepartout-0.6/src/pptout/viewent.h passepartout-0.6/src/pptout/viewent.h --- releases/passepartout-0.6/src/pptout/viewent.h 2004-04-25 01:34:45.000000000 +0200 +++ passepartout-0.6/src/pptout/viewent.h 2007-03-03 22:45:09.000000000 +0100 @@ -6,6 +6,7 @@ #include "view.h" #include "document/pagent.h" #include // auto_ptr +#include "util/refcount.h" /** * Base class for View adapters for Pagent s. A Pagent can be visible @@ -13,7 +14,7 @@ * Pagent. When a View is rescaled etc, all its Viewent s are dropped * and new ones created. */ -class Viewent : public SigC::Object { +class Viewent : public SigC::Object, public RefCounted { public: typedef Glib::RefPtr PixmapRef; typedef Glib::RefPtr Ref; Endast i passepartout-0.6/src/pptout: viewent.h~ diff -ur releases/passepartout-0.6/src/pptout/view.h passepartout-0.6/src/pptout/view.h --- releases/passepartout-0.6/src/pptout/view.h 2004-04-22 23:16:32.000000000 +0200 +++ passepartout-0.6/src/pptout/view.h 2007-03-03 22:32:22.000000000 +0100 @@ -27,7 +27,7 @@ virtual const Gdk::Color& get_color(Color::Id color) const = 0; /** Register a callback for the signal raised on rescaling the view */ - virtual SigC::Connection connect_zoom_change(SigC::Slot1) = 0; + virtual sigc::connection connect_zoom_change(sigc::slot1) = 0; }; #endif Endast i passepartout-0.6/src/pptout: view.h~ diff -ur releases/passepartout-0.6/src/pptout/window.cc passepartout-0.6/src/pptout/window.cc --- releases/passepartout-0.6/src/pptout/window.cc 2004-10-27 11:38:23.000000000 +0200 +++ passepartout-0.6/src/pptout/window.cc 2007-03-03 23:13:28.000000000 +0100 @@ -160,75 +160,57 @@ scroller->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); { - using namespace Gtk::Toolbar_Helpers; - ToolList &tools = toolbar->tools(); + //using namespace Gtk::Toolbar_Helpers; + //ToolList &tools = toolbar->tools(); - tools.push_back(StockElem(Gtk::Stock::SAVE, - slot(*this, &FrameWindow::save), - "Save file")); - save_button = static_cast(tools.back().get_widget()); - tools.push_back(Space()); - tools.push_back(StockElem(Gtk::Stock::PRINT_PREVIEW, - slot(*this, &FrameWindow::print_to_viewer), - "Print to external viewer")); - preview_button = static_cast(tools.back().get_widget()); - tools.push_back(Space()); - tools.push_back(ButtonElem("Text frame", - icons->new_frame, - slot(*text_frame_dialog, - &TextFrameDialog::show_raise), - "Create new text frame")); - text_frame_button = static_cast(tools.back().get_widget()); - tools.push_back(ButtonElem("Image", - icons->moose, - slot(*import_dialog, &ImageFilesel::show), - "Import image file")); - image_frame_button = static_cast(tools.back().get_widget()); - tools.push_back(Space()); - tools.push_back(StockElem(Gtk::Stock::PROPERTIES, - slot(PropertiesDialog::instance(), - &PropertiesDialog::show_raise), - "Show object properties")); - properties_button = static_cast(tools.back().get_widget()); - tools.push_back(ButtonElem("Streams", - icons->streams, - slot(StreamDialog::instance(), - &StreamDialog::show_raise), - "Show list of text streams")); - tools.push_back(Space()); - tools.push_back(ToggleElem("Snap to grid", - icons->grid, - slot(*this, - &FrameWindow::on_grid_button_clicked), - "Align objects with grid")); - grid_button = - static_cast(tools.back().get_widget()); - tools.push_back(Space()); - tools.push_back(StockElem(Gtk::Stock::GOTO_TOP, - bind(slot(document_view, - &DocumentView::rearrange_selected), - TOP), - "Move object(s) to top")); - - tools.push_back(StockElem(Gtk::Stock::GO_UP, - bind(slot(document_view, - &DocumentView::rearrange_selected), - UP), - "Move object(s) up")); - - tools.push_back(StockElem(Gtk::Stock::GO_DOWN, - bind(slot(document_view, - &DocumentView::rearrange_selected), - DOWN), - "Move object(s) down")); - - tools.push_back(StockElem(Gtk::Stock::GOTO_BOTTOM, - bind(slot(document_view, - &DocumentView::rearrange_selected), - BOTTOM), - "Move object(s) to bottom")); - - streams_button = static_cast(tools.back().get_widget()); + save_button = new Gtk::ToolButton(Gtk::Stock::SAVE); + toolbar->append(*manage(save_button)), + mem_fun(*this, &FrameWindow::save); + // tools.push_back(Space()); + preview_button = new Gtk::ToolButton(Gtk::Stock::PRINT_PREVIEW); + toolbar->append(*manage(preview_button), + mem_fun(*this, &FrameWindow::print_to_viewer)); + + // tools.push_back(Space()); + text_frame_button = new Gtk::ToolButton(icons->new_frame); + toolbar->append(*manage(text_frame_button), + mem_fun(*text_frame_dialog, + &TextFrameDialog::show_raise)); + + image_frame_button = new Gtk::ToolButton(icons->moose); + toolbar->append(*manage(image_frame_button), + mem_fun(*import_dialog, &ImageFilesel::show)); + // tools.push_back(Space()); + properties_button = new Gtk::ToolButton(Gtk::Stock::PROPERTIES); + toolbar->append(*manage(properties_button), + mem_fun(PropertiesDialog::instance(), + &PropertiesDialog::show_raise)); + streams_button = new Gtk::ToolButton(icons->streams); + toolbar->append(*manage(streams_button), + mem_fun(StreamDialog::instance(), + &StreamDialog::show_raise)); + // tools.push_back(Space()); + grid_button = new Gtk::ToggleToolButton(icons->grid); + toolbar->append(*manage(grid_button), + mem_fun(*this, + &FrameWindow::on_grid_button_clicked)); + // tools.push_back(Space()); + toolbar->append(*manage(new Gtk::ToolButton(Gtk::Stock::GOTO_TOP)), + sigc::bind(mem_fun(document_view, + &DocumentView::rearrange_selected), + TOP)); + toolbar->append(*manage(new Gtk::ToolButton(Gtk::Stock::GO_UP)), + sigc::bind(mem_fun(document_view, + &DocumentView::rearrange_selected), + UP)); + toolbar->append(*manage(new Gtk::ToolButton(Gtk::Stock::GO_DOWN)), + sigc::bind(mem_fun(document_view, + &DocumentView::rearrange_selected), + DOWN)); + toolbar->append(*manage(new Gtk::ToolButton(Gtk::Stock::GOTO_BOTTOM)), + sigc::bind(mem_fun(document_view, + &DocumentView::rearrange_selected), + BOTTOM)); } cafe_opera = manage(new Gtk::Statusbar()); @@ -250,23 +232,23 @@ mainbox->pack_end(*cafe_opera, Gtk::PACK_SHRINK); document_view.zoom_change_signal.connect - (slot(*this, &FrameWindow::zoom_change_action)); + (mem_fun(*this, &FrameWindow::zoom_change_action)); zoom_factor->set_menu(*create_zoom_menu()); zoom_factor->get_menu()->signal_selection_done().connect - (slot(*this, &FrameWindow::zoom_factor_changed_action)); + (mem_fun(*this, &FrameWindow::zoom_factor_changed_action)); open_dialog->signal_hide().connect - (slot(*this, &FrameWindow::open_dialog_done)); + (mem_fun(*this, &FrameWindow::open_dialog_done)); save_dialog->signal_hide().connect - (slot(*this, &FrameWindow::save_dialog_done)); + (mem_fun(*this, &FrameWindow::save_dialog_done)); import_dialog->signal_hide().connect - (slot(*this, &FrameWindow::import_dialog_done)); + (mem_fun(*this, &FrameWindow::import_dialog_done)); document_view.document_set_signal.connect - (slot(*this, &FrameWindow::on_document_changed)); + (mem_fun(*this, &FrameWindow::on_document_changed)); Document::changed_signal.connect - (slot(*this, &FrameWindow::on_document_updated)); + (mem_fun(*this, &FrameWindow::on_document_updated)); // put window in global list windows.insert(this); @@ -420,7 +402,7 @@ // We may have a new DocMeta in view, so connect to the new signal DocMeta docmeta = document_view.get_document_meta(); docmeta.changed_signal().connect - (slot(*this, &FrameWindow::on_document_filename_changed)); + (mem_fun(*this, &FrameWindow::on_document_filename_changed)); set_filename(basename(docmeta.get_filename())); } Endast i passepartout-0.6/src/pptout: window.cc~ diff -ur releases/passepartout-0.6/src/pptout/window.h passepartout-0.6/src/pptout/window.h --- releases/passepartout-0.6/src/pptout/window.h 2004-01-12 20:01:20.000000000 +0100 +++ passepartout-0.6/src/pptout/window.h 2007-03-03 23:13:11.000000000 +0100 @@ -51,9 +51,9 @@ Gtk::MenuItem *new_view_item, *save_item, *save_as_item, *print_item, *preview_item, *delete_page_item, *undo_item, *redo_item, *props_item, *prefs_item; - Gtk::Button *save_button, *text_frame_button, *image_frame_button; - Gtk::Button *streams_button, *preview_button, *properties_button; - Gtk::ToggleButton *grid_button; + Gtk::ToolButton *save_button, *text_frame_button, *image_frame_button; + Gtk::ToolButton *streams_button, *preview_button, *properties_button; + Gtk::ToggleToolButton *grid_button; // We need to create separate copies of the icons for each window since each // icon can only have one parent Endast i passepartout-0.6/src/pptout: window.h~ diff -ur releases/passepartout-0.6/src/pptout/windowmenus.cc passepartout-0.6/src/pptout/windowmenus.cc --- releases/passepartout-0.6/src/pptout/windowmenus.cc 2004-05-01 02:04:24.000000000 +0200 +++ passepartout-0.6/src/pptout/windowmenus.cc 2007-03-03 23:37:45.000000000 +0100 @@ -16,10 +16,9 @@ #include "webbrowser.h" void FrameWindow::create_menus() { + using namespace Gtk; using namespace Menu_Helpers; - using SigC::bind; - using SigC::slot; /// *** file menu *** @@ -29,50 +28,50 @@ (ImageMenuElem("_New ...", AccelKey("N"), *manage(new Gtk::Image(Gtk::Stock::NEW, Gtk::ICON_SIZE_MENU)), - slot(*this, &FrameWindow::new_document))); + mem_fun(*this, &FrameWindow::new_document))); list_file.push_back (ImageMenuElem("New Vi_ew", *manage(new Gtk::Image(Gtk::Stock::NEW, Gtk::ICON_SIZE_MENU)), - slot(*this, &FrameWindow::duplicate_view))); + mem_fun(*this, &FrameWindow::duplicate_view))); new_view_item = &list_file.back(); list_file.push_back (ImageMenuElem("_Open ...", AccelKey("O"), *manage(new Gtk::Image(Gtk::Stock::OPEN, Gtk::ICON_SIZE_MENU)), - slot(*open_dialog, &Filesel::show_all))); + mem_fun(*open_dialog, &Filesel::show_all))); list_file.push_back(SeparatorElem()); list_file.push_back(StockMenuElem(Gtk::Stock::SAVE, - slot(*this, &FrameWindow::save))); + mem_fun(*this, &FrameWindow::save))); save_item = &list_file.back(); list_file.push_back (ImageMenuElem("Save _As ...", AccelKey("S"), *manage(new Gtk::Image(Gtk::Stock::PRINT, Gtk::ICON_SIZE_MENU)), - slot(*save_dialog, &Filesel::show_all))); + mem_fun(*save_dialog, &Filesel::show_all))); save_as_item = &list_file.back(); list_file.push_back(SeparatorElem()); list_file.push_back (ImageMenuElem("_Print ...", AccelKey("P"), *manage(new Gtk::Image(Gtk::Stock::PRINT, Gtk::ICON_SIZE_MENU)), - slot(*print_dialog, &PrintDialog::show_it))); + mem_fun(*print_dialog, &PrintDialog::show_it))); print_item = &list_file.back(); list_file.push_back(StockMenuElem(Gtk::Stock::PRINT_PREVIEW, AccelKey("P"), - slot(*this, + mem_fun(*this, &FrameWindow::print_to_viewer))); preview_item = &list_file.back(); list_file.push_back(SeparatorElem()); list_file.push_back (MenuElem("P_roperties ...", - slot(*this, &FrameWindow::show_doc_props_dialog))); + mem_fun(*this, &FrameWindow::show_doc_props_dialog))); props_item = &list_file.back(); list_file.push_back(SeparatorElem()); list_file.push_back(StockMenuElem(Gtk::Stock::CLOSE, - slot(*this, &FrameWindow::close))); + mem_fun(*this, &FrameWindow::close))); list_file.push_back(StockMenuElem(Gtk::Stock::QUIT, - SigC::slot(&FrameWindow::quit))); + sigc::ptr_fun(&FrameWindow::quit))); menubar->items().push_back(MenuElem("_File", AccelKey("f"), *file_menu)); @@ -83,7 +82,7 @@ #ifdef ENABLE_UNDO list_edit.push_back(StockMenuElem(Gtk::Stock::UNDO, - AccelKey("Z") /*, slot*/)); + AccelKey("Z") /*, mem_fun*/)); undo_item = &list_edit.back(); list_edit.push_back(StockMenuElem(Gtk::Stock::REDO, AccelKey("Z") /*, slot*/)); @@ -92,64 +91,64 @@ #endif list_edit.push_back(StockMenuElem(Gtk::Stock::COPY, - slot(document_view, + mem_fun(document_view, &DocumentView::copy))); list_edit.push_back(StockMenuElem(Gtk::Stock::CUT, - slot(document_view, + mem_fun(document_view, &DocumentView::cut))); list_edit.push_back(StockMenuElem(Gtk::Stock::PASTE, - slot(document_view, + mem_fun(document_view, &DocumentView::paste))); list_edit.push_back (StockMenuElem(Gtk::Stock::DELETE, AccelKey(guint(GDK_Delete), Gdk::ModifierType(0)), - slot(document_view, &DocumentView::delete_selected))); + mem_fun(document_view, &DocumentView::delete_selected))); list_edit.push_back(SeparatorElem()); list_edit.push_back(MenuElem("Select _All", AccelKey("A"), - slot(document_view, + mem_fun(document_view, &DocumentView::select_all_frames))); list_edit.push_back (MenuElem("Dese_lect All", AccelKey("A"), - slot(document_view, &DocumentView::unselect_all_frames))); + mem_fun(document_view, &DocumentView::unselect_all_frames))); list_edit.push_back(SeparatorElem()); // *** arrange submenu *** Menu *arrange_menu = manage(new Menu()); MenuList& list_arrange = arrange_menu->items(); list_arrange.push_back(MenuElem("_Group", AccelKey("G"), - slot(document_view, + mem_fun(document_view, &DocumentView::group_selected))); list_arrange.push_back (MenuElem("_Ungroup", AccelKey("U"), - slot(document_view, &DocumentView::ungroup_selected))); + mem_fun(document_view, &DocumentView::ungroup_selected))); list_arrange.push_back(SeparatorElem()); list_arrange.push_back (MenuElem("Move to _top", AccelKey("Home"), - bind(slot(document_view, + bind(mem_fun(document_view, &DocumentView::rearrange_selected), TOP))); list_arrange.push_back (MenuElem("Move _up", AccelKey("Page_Up"), - bind(slot(document_view, + bind(mem_fun(document_view, &DocumentView::rearrange_selected), UP))); list_arrange.push_back (MenuElem("Move _down", AccelKey("Page_Down"), - bind(slot(document_view, + bind(mem_fun(document_view, &DocumentView::rearrange_selected), DOWN))); list_arrange.push_back (MenuElem("Move to _bottom", AccelKey("End"), - bind(slot(document_view, + bind(mem_fun(document_view, &DocumentView::rearrange_selected), BOTTOM))); list_edit.push_back(MenuElem("A_rrange", *arrange_menu)); list_edit.push_back(SeparatorElem()); list_edit.push_back(MenuElem("Insert Te_xt Frame ...", - slot(*text_frame_dialog, + mem_fun(*text_frame_dialog, &TextFrameDialog::show_raise))); list_edit.push_back(MenuElem("Insert _Image ...", - slot(*import_dialog, &Filesel::show_all))); + mem_fun(*import_dialog, &Filesel::show_all))); list_edit.push_back(SeparatorElem()); list_edit.push_back(MenuElem("Pre_ferences ...", - slot(config, &PFile::dialog_show))); + mem_fun(config, &PFile::dialog_show))); prefs_item = &list_edit.back(); menubar->items().push_back(MenuElem("_Edit", AccelKey("e"), *edit_menu)); @@ -160,18 +159,18 @@ page_menu = manage(new Menu()); MenuList& list_page = page_menu->items(); list_page.push_back(MenuElem("_Delete", - slot(document_view, + mem_fun(document_view, &DocumentView::delete_page))); list_page.push_back(SeparatorElem()); list_page.push_back(MenuElem("Insert _Before ...", - slot(document_view, + mem_fun(document_view, &DocumentView::insert_page_before))); list_page.push_back(MenuElem("Insert _After ...", - slot(document_view, + mem_fun(document_view, &DocumentView::insert_page_after))); delete_page_item = &list_page.back(); // list_page.push_back(SeparatorElem()); - // list_page.push_back(MenuElem("_Template Page ...", slot(this, &FrameWindow::show_template_page_dialog))); + // list_page.push_back(MenuElem("_Template Page ...", mem_fun(this, &FrameWindow::show_template_page_dialog))); // it is not yet possible to change the template of an existing page menubar->items().push_back(MenuElem("_Page", AccelKey("p"),*page_menu)); @@ -182,24 +181,24 @@ MenuList& list_view = view_menu->items(); list_view.push_back (CheckMenuElem("_Toolbar", - slot(*this, &FrameWindow::toggle_toolbar))); + mem_fun(*this, &FrameWindow::toggle_toolbar))); static_cast(&list_view.back())->set_active(true); list_view.push_back(SeparatorElem()); list_view.push_back (StockMenuElem(Gtk::Stock::PROPERTIES, - slot(PropertiesDialog::instance(), + mem_fun(PropertiesDialog::instance(), &PropertiesDialog::show_raise))); list_view.push_back(MenuElem("_Streams", - slot(StreamDialog::instance(), + mem_fun(StreamDialog::instance(), &StreamDialog::show_raise))); #ifdef ENABLE_UNDO list_view.push_back(MenuElem("_Undo history", - slot(UndoDialog::instance(), + mem_fun(UndoDialog::instance(), &UndoDialog::show_raise))); #endif menubar->items().push_back(MenuElem("_View", AccelKey("v"), - *view_menu)); + *view_menu)); // *** help menu *** @@ -207,16 +206,16 @@ Menu *help_menu = manage(new Menu()); MenuList& list_help = help_menu->items(); list_help.push_back(MenuElem("_User's guide", AccelKey("F1"), - SigC::slot(&open_docs))); + sigc::ptr_fun(&open_docs))); list_help.push_back(MenuElem("_About", - slot(AboutDialog::instance(), - &AboutDialog::show_all))); + mem_fun(::AboutDialog::instance(), + &::AboutDialog::show_all))); list_help.push_back(SeparatorElem()); list_help.push_back(MenuElem("_Homepage", - SigC::slot(&open_homepage))); + sigc::ptr_fun(&open_homepage))); list_help.push_back(MenuElem("_Inspiration", - slot(Inspiration::instance(), - &Inspiration::show_all))); + mem_fun(Inspiration::instance(), + &Inspiration::show_all))); menubar->items().push_back(MenuElem("_Help", AccelKey("h"), *help_menu)); menubar->items().back().set_right_justified(); Endast i passepartout-0.6/src/pptout: windowmenus.cc~ diff -ur releases/passepartout-0.6/src/ps/Makefile.am passepartout-0.6/src/ps/Makefile.am --- releases/passepartout-0.6/src/ps/Makefile.am 2004-10-07 14:55:52.000000000 +0200 +++ passepartout-0.6/src/ps/Makefile.am 2007-03-03 21:59:29.000000000 +0100 @@ -10,7 +10,7 @@ examinepdf_SOURCES = examinepdf.cc # for Glib::ustring -libps_a_CXXFLAGS = $(GTKMM_CFLAGS) +libps_a_CXXFLAGS = $(GTKMM_CFLAGS) $(FREETYPE_CFLAGS) libps_a_CXXFLAGS += -I$(top_srcdir)/src Endast i passepartout-0.6/src/ps: Makefile.am~ diff -ur releases/passepartout-0.6/src/ps/Makefile.in passepartout-0.6/src/ps/Makefile.in --- releases/passepartout-0.6/src/ps/Makefile.in 2004-10-31 20:23:53.000000000 +0100 +++ passepartout-0.6/src/ps/Makefile.in 2007-03-04 00:05:05.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +36,52 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +bin_PROGRAMS = examinepdf$(EXEEXT) +check_PROGRAMS = runtest$(EXEEXT) +subdir = src/ps +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libps_a_AR = $(AR) $(ARFLAGS) +libps_a_LIBADD = +am_libps_a_OBJECTS = libps_a-encode.$(OBJEXT) libps_a-glyphs.$(OBJEXT) \ + libps_a-pdf.$(OBJEXT) libps_a-unicode.$(OBJEXT) \ + libps_a-pfb2pfa.$(OBJEXT) libps_a-misc.$(OBJEXT) \ + libps_a-wineps.$(OBJEXT) libps_a-pdfparser.$(OBJEXT) \ + libps_a-type42.$(OBJEXT) +libps_a_OBJECTS = $(am_libps_a_OBJECTS) +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_examinepdf_OBJECTS = examinepdf-examinepdf.$(OBJEXT) +examinepdf_OBJECTS = $(am_examinepdf_OBJECTS) +am__DEPENDENCIES_1 = +am_runtest_OBJECTS = runtest-test_glyphlist.$(OBJEXT) +runtest_OBJECTS = $(am_runtest_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libps_a_SOURCES) $(examinepdf_SOURCES) $(runtest_SOURCES) +DIST_SOURCES = $(libps_a_SOURCES) $(examinepdf_SOURCES) \ + $(runtest_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +148,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +156,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +171,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -129,101 +180,65 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ xmldir = @xmldir@ -bin_PROGRAMS = examinepdf noinst_LIBRARIES = libps.a - dist_noinst_HEADERS = encode.h pdf.h unicode.h pfb2pfa.h misc.h wineps.h \ pdfparser.h type42.h - libps_a_SOURCES = encode.cc glyphs.cc pdf.cc unicode.cc pfb2pfa.cc misc.cc \ wineps.cc pdfparser.cc type42.cc - examinepdf_SOURCES = examinepdf.cc # for Glib::ustring -libps_a_CXXFLAGS = $(GTKMM_CFLAGS) -I$(top_srcdir)/src - +libps_a_CXXFLAGS = $(GTKMM_CFLAGS) $(FREETYPE_CFLAGS) \ + -I$(top_srcdir)/src examinepdf_CXXFLAGS = $(libps_a_CXXFLAGS) examinepdf_LDADD = $(GTKMM_LIBS) \ -L. -lps -L../fonts -lfonts -lps -L../util -lpptutil examinepdf_DEPENDENCIES = libps.a - #libps_a_LIBADD = $(GTKMM_LIBS) TESTS = runtest -check_PROGRAMS = runtest runtest_SOURCES = test_glyphlist.cc runtest_CXXFLAGS = -I$(top_srcdir)/src $(GTKMM_CFLAGS) runtest_DEPENDENCIES = ../util/libpptutil.a $(noinst_LIBRARIES) runtest_LDADD = -L../testbed -lppttest -L. -lps -L../util -lpptutil \ $(GTKMM_LIBS) -subdir = src/ps -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libps_a_AR = $(AR) cru -libps_a_LIBADD = -am_libps_a_OBJECTS = libps_a-encode.$(OBJEXT) libps_a-glyphs.$(OBJEXT) \ - libps_a-pdf.$(OBJEXT) libps_a-unicode.$(OBJEXT) \ - libps_a-pfb2pfa.$(OBJEXT) libps_a-misc.$(OBJEXT) \ - libps_a-wineps.$(OBJEXT) libps_a-pdfparser.$(OBJEXT) \ - libps_a-type42.$(OBJEXT) -libps_a_OBJECTS = $(am_libps_a_OBJECTS) -bin_PROGRAMS = examinepdf$(EXEEXT) -check_PROGRAMS = runtest$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) - -am_examinepdf_OBJECTS = examinepdf-examinepdf.$(OBJEXT) -examinepdf_OBJECTS = $(am_examinepdf_OBJECTS) -examinepdf_LDFLAGS = -am_runtest_OBJECTS = runtest-test_glyphlist.$(OBJEXT) -runtest_OBJECTS = $(am_runtest_OBJECTS) -runtest_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/examinepdf-examinepdf.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-encode.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-glyphs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-misc.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-pdf.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-pdfparser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-pfb2pfa.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-type42.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-unicode.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libps_a-wineps.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_glyphlist.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libps_a_SOURCES) $(examinepdf_SOURCES) \ - $(runtest_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libps_a_SOURCES) $(examinepdf_SOURCES) $(runtest_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/ps/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/ps/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -231,17 +246,16 @@ -rm -f libps.a $(libps_a_AR) libps.a $(libps_a_OBJECTS) $(libps_a_LIBADD) $(RANLIB) libps.a -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -249,8 +263,8 @@ @$(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; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -266,7 +280,7 @@ $(CXXLINK) $(runtest_LDFLAGS) $(runtest_OBJECTS) $(runtest_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -284,278 +298,174 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runtest-test_glyphlist.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libps_a-encode.o: encode.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-encode.o -MD -MP -MF "$(DEPDIR)/libps_a-encode.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-encode.o `test -f 'encode.cc' || echo '$(srcdir)/'`encode.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-encode.Tpo" "$(DEPDIR)/libps_a-encode.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-encode.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-encode.o -MD -MP -MF "$(DEPDIR)/libps_a-encode.Tpo" -c -o libps_a-encode.o `test -f 'encode.cc' || echo '$(srcdir)/'`encode.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-encode.Tpo" "$(DEPDIR)/libps_a-encode.Po"; else rm -f "$(DEPDIR)/libps_a-encode.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='encode.cc' object='libps_a-encode.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-encode.Po' tmpdepfile='$(DEPDIR)/libps_a-encode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-encode.o `test -f 'encode.cc' || echo '$(srcdir)/'`encode.cc libps_a-encode.obj: encode.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-encode.obj -MD -MP -MF "$(DEPDIR)/libps_a-encode.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-encode.obj `if test -f 'encode.cc'; then $(CYGPATH_W) 'encode.cc'; else $(CYGPATH_W) '$(srcdir)/encode.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-encode.Tpo" "$(DEPDIR)/libps_a-encode.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-encode.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-encode.obj -MD -MP -MF "$(DEPDIR)/libps_a-encode.Tpo" -c -o libps_a-encode.obj `if test -f 'encode.cc'; then $(CYGPATH_W) 'encode.cc'; else $(CYGPATH_W) '$(srcdir)/encode.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-encode.Tpo" "$(DEPDIR)/libps_a-encode.Po"; else rm -f "$(DEPDIR)/libps_a-encode.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='encode.cc' object='libps_a-encode.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-encode.Po' tmpdepfile='$(DEPDIR)/libps_a-encode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-encode.obj `if test -f 'encode.cc'; then $(CYGPATH_W) 'encode.cc'; else $(CYGPATH_W) '$(srcdir)/encode.cc'; fi` libps_a-glyphs.o: glyphs.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-glyphs.o -MD -MP -MF "$(DEPDIR)/libps_a-glyphs.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-glyphs.o `test -f 'glyphs.cc' || echo '$(srcdir)/'`glyphs.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-glyphs.Tpo" "$(DEPDIR)/libps_a-glyphs.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-glyphs.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-glyphs.o -MD -MP -MF "$(DEPDIR)/libps_a-glyphs.Tpo" -c -o libps_a-glyphs.o `test -f 'glyphs.cc' || echo '$(srcdir)/'`glyphs.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-glyphs.Tpo" "$(DEPDIR)/libps_a-glyphs.Po"; else rm -f "$(DEPDIR)/libps_a-glyphs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='glyphs.cc' object='libps_a-glyphs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-glyphs.Po' tmpdepfile='$(DEPDIR)/libps_a-glyphs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-glyphs.o `test -f 'glyphs.cc' || echo '$(srcdir)/'`glyphs.cc libps_a-glyphs.obj: glyphs.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-glyphs.obj -MD -MP -MF "$(DEPDIR)/libps_a-glyphs.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-glyphs.obj `if test -f 'glyphs.cc'; then $(CYGPATH_W) 'glyphs.cc'; else $(CYGPATH_W) '$(srcdir)/glyphs.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-glyphs.Tpo" "$(DEPDIR)/libps_a-glyphs.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-glyphs.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-glyphs.obj -MD -MP -MF "$(DEPDIR)/libps_a-glyphs.Tpo" -c -o libps_a-glyphs.obj `if test -f 'glyphs.cc'; then $(CYGPATH_W) 'glyphs.cc'; else $(CYGPATH_W) '$(srcdir)/glyphs.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-glyphs.Tpo" "$(DEPDIR)/libps_a-glyphs.Po"; else rm -f "$(DEPDIR)/libps_a-glyphs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='glyphs.cc' object='libps_a-glyphs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-glyphs.Po' tmpdepfile='$(DEPDIR)/libps_a-glyphs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-glyphs.obj `if test -f 'glyphs.cc'; then $(CYGPATH_W) 'glyphs.cc'; else $(CYGPATH_W) '$(srcdir)/glyphs.cc'; fi` libps_a-pdf.o: pdf.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdf.o -MD -MP -MF "$(DEPDIR)/libps_a-pdf.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pdf.o `test -f 'pdf.cc' || echo '$(srcdir)/'`pdf.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdf.Tpo" "$(DEPDIR)/libps_a-pdf.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pdf.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdf.o -MD -MP -MF "$(DEPDIR)/libps_a-pdf.Tpo" -c -o libps_a-pdf.o `test -f 'pdf.cc' || echo '$(srcdir)/'`pdf.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdf.Tpo" "$(DEPDIR)/libps_a-pdf.Po"; else rm -f "$(DEPDIR)/libps_a-pdf.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdf.cc' object='libps_a-pdf.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pdf.Po' tmpdepfile='$(DEPDIR)/libps_a-pdf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pdf.o `test -f 'pdf.cc' || echo '$(srcdir)/'`pdf.cc libps_a-pdf.obj: pdf.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdf.obj -MD -MP -MF "$(DEPDIR)/libps_a-pdf.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pdf.obj `if test -f 'pdf.cc'; then $(CYGPATH_W) 'pdf.cc'; else $(CYGPATH_W) '$(srcdir)/pdf.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdf.Tpo" "$(DEPDIR)/libps_a-pdf.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pdf.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdf.obj -MD -MP -MF "$(DEPDIR)/libps_a-pdf.Tpo" -c -o libps_a-pdf.obj `if test -f 'pdf.cc'; then $(CYGPATH_W) 'pdf.cc'; else $(CYGPATH_W) '$(srcdir)/pdf.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdf.Tpo" "$(DEPDIR)/libps_a-pdf.Po"; else rm -f "$(DEPDIR)/libps_a-pdf.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdf.cc' object='libps_a-pdf.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pdf.Po' tmpdepfile='$(DEPDIR)/libps_a-pdf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pdf.obj `if test -f 'pdf.cc'; then $(CYGPATH_W) 'pdf.cc'; else $(CYGPATH_W) '$(srcdir)/pdf.cc'; fi` libps_a-unicode.o: unicode.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-unicode.o -MD -MP -MF "$(DEPDIR)/libps_a-unicode.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-unicode.o `test -f 'unicode.cc' || echo '$(srcdir)/'`unicode.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-unicode.Tpo" "$(DEPDIR)/libps_a-unicode.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-unicode.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-unicode.o -MD -MP -MF "$(DEPDIR)/libps_a-unicode.Tpo" -c -o libps_a-unicode.o `test -f 'unicode.cc' || echo '$(srcdir)/'`unicode.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-unicode.Tpo" "$(DEPDIR)/libps_a-unicode.Po"; else rm -f "$(DEPDIR)/libps_a-unicode.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='unicode.cc' object='libps_a-unicode.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-unicode.Po' tmpdepfile='$(DEPDIR)/libps_a-unicode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-unicode.o `test -f 'unicode.cc' || echo '$(srcdir)/'`unicode.cc libps_a-unicode.obj: unicode.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-unicode.obj -MD -MP -MF "$(DEPDIR)/libps_a-unicode.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-unicode.obj `if test -f 'unicode.cc'; then $(CYGPATH_W) 'unicode.cc'; else $(CYGPATH_W) '$(srcdir)/unicode.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-unicode.Tpo" "$(DEPDIR)/libps_a-unicode.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-unicode.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-unicode.obj -MD -MP -MF "$(DEPDIR)/libps_a-unicode.Tpo" -c -o libps_a-unicode.obj `if test -f 'unicode.cc'; then $(CYGPATH_W) 'unicode.cc'; else $(CYGPATH_W) '$(srcdir)/unicode.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-unicode.Tpo" "$(DEPDIR)/libps_a-unicode.Po"; else rm -f "$(DEPDIR)/libps_a-unicode.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='unicode.cc' object='libps_a-unicode.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-unicode.Po' tmpdepfile='$(DEPDIR)/libps_a-unicode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-unicode.obj `if test -f 'unicode.cc'; then $(CYGPATH_W) 'unicode.cc'; else $(CYGPATH_W) '$(srcdir)/unicode.cc'; fi` libps_a-pfb2pfa.o: pfb2pfa.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pfb2pfa.o -MD -MP -MF "$(DEPDIR)/libps_a-pfb2pfa.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pfb2pfa.o `test -f 'pfb2pfa.cc' || echo '$(srcdir)/'`pfb2pfa.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo" "$(DEPDIR)/libps_a-pfb2pfa.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pfb2pfa.o -MD -MP -MF "$(DEPDIR)/libps_a-pfb2pfa.Tpo" -c -o libps_a-pfb2pfa.o `test -f 'pfb2pfa.cc' || echo '$(srcdir)/'`pfb2pfa.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo" "$(DEPDIR)/libps_a-pfb2pfa.Po"; else rm -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pfb2pfa.cc' object='libps_a-pfb2pfa.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pfb2pfa.Po' tmpdepfile='$(DEPDIR)/libps_a-pfb2pfa.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pfb2pfa.o `test -f 'pfb2pfa.cc' || echo '$(srcdir)/'`pfb2pfa.cc libps_a-pfb2pfa.obj: pfb2pfa.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pfb2pfa.obj -MD -MP -MF "$(DEPDIR)/libps_a-pfb2pfa.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pfb2pfa.obj `if test -f 'pfb2pfa.cc'; then $(CYGPATH_W) 'pfb2pfa.cc'; else $(CYGPATH_W) '$(srcdir)/pfb2pfa.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo" "$(DEPDIR)/libps_a-pfb2pfa.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pfb2pfa.obj -MD -MP -MF "$(DEPDIR)/libps_a-pfb2pfa.Tpo" -c -o libps_a-pfb2pfa.obj `if test -f 'pfb2pfa.cc'; then $(CYGPATH_W) 'pfb2pfa.cc'; else $(CYGPATH_W) '$(srcdir)/pfb2pfa.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo" "$(DEPDIR)/libps_a-pfb2pfa.Po"; else rm -f "$(DEPDIR)/libps_a-pfb2pfa.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pfb2pfa.cc' object='libps_a-pfb2pfa.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pfb2pfa.Po' tmpdepfile='$(DEPDIR)/libps_a-pfb2pfa.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pfb2pfa.obj `if test -f 'pfb2pfa.cc'; then $(CYGPATH_W) 'pfb2pfa.cc'; else $(CYGPATH_W) '$(srcdir)/pfb2pfa.cc'; fi` libps_a-misc.o: misc.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-misc.o -MD -MP -MF "$(DEPDIR)/libps_a-misc.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-misc.o `test -f 'misc.cc' || echo '$(srcdir)/'`misc.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-misc.Tpo" "$(DEPDIR)/libps_a-misc.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-misc.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-misc.o -MD -MP -MF "$(DEPDIR)/libps_a-misc.Tpo" -c -o libps_a-misc.o `test -f 'misc.cc' || echo '$(srcdir)/'`misc.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-misc.Tpo" "$(DEPDIR)/libps_a-misc.Po"; else rm -f "$(DEPDIR)/libps_a-misc.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='misc.cc' object='libps_a-misc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-misc.Po' tmpdepfile='$(DEPDIR)/libps_a-misc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-misc.o `test -f 'misc.cc' || echo '$(srcdir)/'`misc.cc libps_a-misc.obj: misc.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-misc.obj -MD -MP -MF "$(DEPDIR)/libps_a-misc.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-misc.obj `if test -f 'misc.cc'; then $(CYGPATH_W) 'misc.cc'; else $(CYGPATH_W) '$(srcdir)/misc.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-misc.Tpo" "$(DEPDIR)/libps_a-misc.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-misc.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-misc.obj -MD -MP -MF "$(DEPDIR)/libps_a-misc.Tpo" -c -o libps_a-misc.obj `if test -f 'misc.cc'; then $(CYGPATH_W) 'misc.cc'; else $(CYGPATH_W) '$(srcdir)/misc.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-misc.Tpo" "$(DEPDIR)/libps_a-misc.Po"; else rm -f "$(DEPDIR)/libps_a-misc.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='misc.cc' object='libps_a-misc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-misc.Po' tmpdepfile='$(DEPDIR)/libps_a-misc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-misc.obj `if test -f 'misc.cc'; then $(CYGPATH_W) 'misc.cc'; else $(CYGPATH_W) '$(srcdir)/misc.cc'; fi` libps_a-wineps.o: wineps.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-wineps.o -MD -MP -MF "$(DEPDIR)/libps_a-wineps.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-wineps.o `test -f 'wineps.cc' || echo '$(srcdir)/'`wineps.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-wineps.Tpo" "$(DEPDIR)/libps_a-wineps.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-wineps.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-wineps.o -MD -MP -MF "$(DEPDIR)/libps_a-wineps.Tpo" -c -o libps_a-wineps.o `test -f 'wineps.cc' || echo '$(srcdir)/'`wineps.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-wineps.Tpo" "$(DEPDIR)/libps_a-wineps.Po"; else rm -f "$(DEPDIR)/libps_a-wineps.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='wineps.cc' object='libps_a-wineps.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-wineps.Po' tmpdepfile='$(DEPDIR)/libps_a-wineps.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-wineps.o `test -f 'wineps.cc' || echo '$(srcdir)/'`wineps.cc libps_a-wineps.obj: wineps.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-wineps.obj -MD -MP -MF "$(DEPDIR)/libps_a-wineps.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-wineps.obj `if test -f 'wineps.cc'; then $(CYGPATH_W) 'wineps.cc'; else $(CYGPATH_W) '$(srcdir)/wineps.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-wineps.Tpo" "$(DEPDIR)/libps_a-wineps.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-wineps.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-wineps.obj -MD -MP -MF "$(DEPDIR)/libps_a-wineps.Tpo" -c -o libps_a-wineps.obj `if test -f 'wineps.cc'; then $(CYGPATH_W) 'wineps.cc'; else $(CYGPATH_W) '$(srcdir)/wineps.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-wineps.Tpo" "$(DEPDIR)/libps_a-wineps.Po"; else rm -f "$(DEPDIR)/libps_a-wineps.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='wineps.cc' object='libps_a-wineps.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-wineps.Po' tmpdepfile='$(DEPDIR)/libps_a-wineps.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-wineps.obj `if test -f 'wineps.cc'; then $(CYGPATH_W) 'wineps.cc'; else $(CYGPATH_W) '$(srcdir)/wineps.cc'; fi` libps_a-pdfparser.o: pdfparser.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdfparser.o -MD -MP -MF "$(DEPDIR)/libps_a-pdfparser.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pdfparser.o `test -f 'pdfparser.cc' || echo '$(srcdir)/'`pdfparser.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdfparser.Tpo" "$(DEPDIR)/libps_a-pdfparser.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pdfparser.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdfparser.o -MD -MP -MF "$(DEPDIR)/libps_a-pdfparser.Tpo" -c -o libps_a-pdfparser.o `test -f 'pdfparser.cc' || echo '$(srcdir)/'`pdfparser.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdfparser.Tpo" "$(DEPDIR)/libps_a-pdfparser.Po"; else rm -f "$(DEPDIR)/libps_a-pdfparser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdfparser.cc' object='libps_a-pdfparser.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pdfparser.Po' tmpdepfile='$(DEPDIR)/libps_a-pdfparser.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pdfparser.o `test -f 'pdfparser.cc' || echo '$(srcdir)/'`pdfparser.cc libps_a-pdfparser.obj: pdfparser.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdfparser.obj -MD -MP -MF "$(DEPDIR)/libps_a-pdfparser.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-pdfparser.obj `if test -f 'pdfparser.cc'; then $(CYGPATH_W) 'pdfparser.cc'; else $(CYGPATH_W) '$(srcdir)/pdfparser.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdfparser.Tpo" "$(DEPDIR)/libps_a-pdfparser.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-pdfparser.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-pdfparser.obj -MD -MP -MF "$(DEPDIR)/libps_a-pdfparser.Tpo" -c -o libps_a-pdfparser.obj `if test -f 'pdfparser.cc'; then $(CYGPATH_W) 'pdfparser.cc'; else $(CYGPATH_W) '$(srcdir)/pdfparser.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-pdfparser.Tpo" "$(DEPDIR)/libps_a-pdfparser.Po"; else rm -f "$(DEPDIR)/libps_a-pdfparser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdfparser.cc' object='libps_a-pdfparser.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-pdfparser.Po' tmpdepfile='$(DEPDIR)/libps_a-pdfparser.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-pdfparser.obj `if test -f 'pdfparser.cc'; then $(CYGPATH_W) 'pdfparser.cc'; else $(CYGPATH_W) '$(srcdir)/pdfparser.cc'; fi` libps_a-type42.o: type42.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-type42.o -MD -MP -MF "$(DEPDIR)/libps_a-type42.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-type42.o `test -f 'type42.cc' || echo '$(srcdir)/'`type42.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-type42.Tpo" "$(DEPDIR)/libps_a-type42.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-type42.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-type42.o -MD -MP -MF "$(DEPDIR)/libps_a-type42.Tpo" -c -o libps_a-type42.o `test -f 'type42.cc' || echo '$(srcdir)/'`type42.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-type42.Tpo" "$(DEPDIR)/libps_a-type42.Po"; else rm -f "$(DEPDIR)/libps_a-type42.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='type42.cc' object='libps_a-type42.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-type42.Po' tmpdepfile='$(DEPDIR)/libps_a-type42.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-type42.o `test -f 'type42.cc' || echo '$(srcdir)/'`type42.cc libps_a-type42.obj: type42.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-type42.obj -MD -MP -MF "$(DEPDIR)/libps_a-type42.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libps_a-type42.obj `if test -f 'type42.cc'; then $(CYGPATH_W) 'type42.cc'; else $(CYGPATH_W) '$(srcdir)/type42.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-type42.Tpo" "$(DEPDIR)/libps_a-type42.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libps_a-type42.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -MT libps_a-type42.obj -MD -MP -MF "$(DEPDIR)/libps_a-type42.Tpo" -c -o libps_a-type42.obj `if test -f 'type42.cc'; then $(CYGPATH_W) 'type42.cc'; else $(CYGPATH_W) '$(srcdir)/type42.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libps_a-type42.Tpo" "$(DEPDIR)/libps_a-type42.Po"; else rm -f "$(DEPDIR)/libps_a-type42.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='type42.cc' object='libps_a-type42.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libps_a-type42.Po' tmpdepfile='$(DEPDIR)/libps_a-type42.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libps_a_CXXFLAGS) $(CXXFLAGS) -c -o libps_a-type42.obj `if test -f 'type42.cc'; then $(CYGPATH_W) 'type42.cc'; else $(CYGPATH_W) '$(srcdir)/type42.cc'; fi` examinepdf-examinepdf.o: examinepdf.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -MT examinepdf-examinepdf.o -MD -MP -MF "$(DEPDIR)/examinepdf-examinepdf.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o examinepdf-examinepdf.o `test -f 'examinepdf.cc' || echo '$(srcdir)/'`examinepdf.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/examinepdf-examinepdf.Tpo" "$(DEPDIR)/examinepdf-examinepdf.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/examinepdf-examinepdf.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -MT examinepdf-examinepdf.o -MD -MP -MF "$(DEPDIR)/examinepdf-examinepdf.Tpo" -c -o examinepdf-examinepdf.o `test -f 'examinepdf.cc' || echo '$(srcdir)/'`examinepdf.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/examinepdf-examinepdf.Tpo" "$(DEPDIR)/examinepdf-examinepdf.Po"; else rm -f "$(DEPDIR)/examinepdf-examinepdf.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='examinepdf.cc' object='examinepdf-examinepdf.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/examinepdf-examinepdf.Po' tmpdepfile='$(DEPDIR)/examinepdf-examinepdf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -c -o examinepdf-examinepdf.o `test -f 'examinepdf.cc' || echo '$(srcdir)/'`examinepdf.cc examinepdf-examinepdf.obj: examinepdf.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -MT examinepdf-examinepdf.obj -MD -MP -MF "$(DEPDIR)/examinepdf-examinepdf.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o examinepdf-examinepdf.obj `if test -f 'examinepdf.cc'; then $(CYGPATH_W) 'examinepdf.cc'; else $(CYGPATH_W) '$(srcdir)/examinepdf.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/examinepdf-examinepdf.Tpo" "$(DEPDIR)/examinepdf-examinepdf.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/examinepdf-examinepdf.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -MT examinepdf-examinepdf.obj -MD -MP -MF "$(DEPDIR)/examinepdf-examinepdf.Tpo" -c -o examinepdf-examinepdf.obj `if test -f 'examinepdf.cc'; then $(CYGPATH_W) 'examinepdf.cc'; else $(CYGPATH_W) '$(srcdir)/examinepdf.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/examinepdf-examinepdf.Tpo" "$(DEPDIR)/examinepdf-examinepdf.Po"; else rm -f "$(DEPDIR)/examinepdf-examinepdf.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='examinepdf.cc' object='examinepdf-examinepdf.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/examinepdf-examinepdf.Po' tmpdepfile='$(DEPDIR)/examinepdf-examinepdf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(examinepdf_CXXFLAGS) $(CXXFLAGS) -c -o examinepdf-examinepdf.obj `if test -f 'examinepdf.cc'; then $(CYGPATH_W) 'examinepdf.cc'; else $(CYGPATH_W) '$(srcdir)/examinepdf.cc'; fi` runtest-test_glyphlist.o: test_glyphlist.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_glyphlist.o -MD -MP -MF "$(DEPDIR)/runtest-test_glyphlist.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_glyphlist.o `test -f 'test_glyphlist.cc' || echo '$(srcdir)/'`test_glyphlist.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_glyphlist.Tpo" "$(DEPDIR)/runtest-test_glyphlist.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_glyphlist.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_glyphlist.o -MD -MP -MF "$(DEPDIR)/runtest-test_glyphlist.Tpo" -c -o runtest-test_glyphlist.o `test -f 'test_glyphlist.cc' || echo '$(srcdir)/'`test_glyphlist.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_glyphlist.Tpo" "$(DEPDIR)/runtest-test_glyphlist.Po"; else rm -f "$(DEPDIR)/runtest-test_glyphlist.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_glyphlist.cc' object='runtest-test_glyphlist.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_glyphlist.Po' tmpdepfile='$(DEPDIR)/runtest-test_glyphlist.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_glyphlist.o `test -f 'test_glyphlist.cc' || echo '$(srcdir)/'`test_glyphlist.cc runtest-test_glyphlist.obj: test_glyphlist.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_glyphlist.obj -MD -MP -MF "$(DEPDIR)/runtest-test_glyphlist.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_glyphlist.obj `if test -f 'test_glyphlist.cc'; then $(CYGPATH_W) 'test_glyphlist.cc'; else $(CYGPATH_W) '$(srcdir)/test_glyphlist.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_glyphlist.Tpo" "$(DEPDIR)/runtest-test_glyphlist.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_glyphlist.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_glyphlist.obj -MD -MP -MF "$(DEPDIR)/runtest-test_glyphlist.Tpo" -c -o runtest-test_glyphlist.obj `if test -f 'test_glyphlist.cc'; then $(CYGPATH_W) 'test_glyphlist.cc'; else $(CYGPATH_W) '$(srcdir)/test_glyphlist.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_glyphlist.Tpo" "$(DEPDIR)/runtest-test_glyphlist.Po"; else rm -f "$(DEPDIR)/runtest-test_glyphlist.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_glyphlist.cc' object='runtest-test_glyphlist.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_glyphlist.Po' tmpdepfile='$(DEPDIR)/runtest-test_glyphlist.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_glyphlist.obj `if test -f 'test_glyphlist.cc'; then $(CYGPATH_W) 'test_glyphlist.cc'; else $(CYGPATH_W) '$(srcdir)/test_glyphlist.cc'; fi` 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 \ @@ -564,6 +474,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -575,10 +486,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -615,24 +527,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -657,27 +569,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + 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"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -691,7 +599,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -711,9 +619,10 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -733,7 +642,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -753,6 +662,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -789,11 +700,11 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ clean-noinstLIBRARIES ctags distclean distclean-compile \ - distclean-generic distclean-tags distdir dvi dvi-am info \ - info-am install install-am install-binPROGRAMS 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 \ + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + 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 pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-info-am diff -ur releases/passepartout-0.6/src/ps/pfb2pfa.cc passepartout-0.6/src/ps/pfb2pfa.cc --- releases/passepartout-0.6/src/ps/pfb2pfa.cc 2004-10-07 23:35:36.000000000 +0200 +++ passepartout-0.6/src/ps/pfb2pfa.cc 2007-03-03 22:04:27.000000000 +0100 @@ -25,7 +25,7 @@ for(int i = 0; i < 4; i++) length |= in.get() << (i << 3); - long blockstart = out.tellp(); + std::streamoff blockstart = out.tellp(); if(blockstart == -1) blockstart = 0; if(type == 1) { // ascii Endast i passepartout-0.6/src/ps: pfb2pfa.cc~ diff -ur releases/passepartout-0.6/src/testbed/Makefile.in passepartout-0.6/src/testbed/Makefile.in --- releases/passepartout-0.6/src/testbed/Makefile.in 2004-10-31 20:23:53.000000000 +0100 +++ passepartout-0.6/src/testbed/Makefile.in 2007-03-04 00:05:06.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,37 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +subdir = src/testbed +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libppttest_a_AR = $(AR) $(ARFLAGS) +libppttest_a_LIBADD = +am_libppttest_a_OBJECTS = libppttest_a-testbed.$(OBJEXT) +libppttest_a_OBJECTS = $(am_libppttest_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libppttest_a_SOURCES) +DIST_SOURCES = $(libppttest_a_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +132,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +140,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +155,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -130,53 +165,45 @@ target_alias = @target_alias@ xmldir = @xmldir@ noinst_LIBRARIES = libppttest.a - dist_noinst_HEADERS = testbed.hh - libppttest_a_SOURCES = testbed.cc - # Just because Glib::Exception is stupid and doesn't inherit the standard # exception the testbed has to know about glib! libppttest_a_CXXFLAGS = -I$(top_srcdir)/src $(GTKMM_CFLAGS) -subdir = src/testbed -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libppttest_a_AR = $(AR) cru -libppttest_a_LIBADD = -am_libppttest_a_OBJECTS = libppttest_a-testbed.$(OBJEXT) -libppttest_a_OBJECTS = $(am_libppttest_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libppttest_a-testbed.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libppttest_a_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libppttest_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/testbed/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/testbed/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -186,7 +213,7 @@ $(RANLIB) libppttest.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -194,58 +221,34 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libppttest_a-testbed.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libppttest_a-testbed.o: testbed.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -MT libppttest_a-testbed.o -MD -MP -MF "$(DEPDIR)/libppttest_a-testbed.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libppttest_a-testbed.o `test -f 'testbed.cc' || echo '$(srcdir)/'`testbed.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libppttest_a-testbed.Tpo" "$(DEPDIR)/libppttest_a-testbed.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libppttest_a-testbed.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -MT libppttest_a-testbed.o -MD -MP -MF "$(DEPDIR)/libppttest_a-testbed.Tpo" -c -o libppttest_a-testbed.o `test -f 'testbed.cc' || echo '$(srcdir)/'`testbed.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libppttest_a-testbed.Tpo" "$(DEPDIR)/libppttest_a-testbed.Po"; else rm -f "$(DEPDIR)/libppttest_a-testbed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='testbed.cc' object='libppttest_a-testbed.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libppttest_a-testbed.Po' tmpdepfile='$(DEPDIR)/libppttest_a-testbed.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -c -o libppttest_a-testbed.o `test -f 'testbed.cc' || echo '$(srcdir)/'`testbed.cc libppttest_a-testbed.obj: testbed.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -MT libppttest_a-testbed.obj -MD -MP -MF "$(DEPDIR)/libppttest_a-testbed.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libppttest_a-testbed.obj `if test -f 'testbed.cc'; then $(CYGPATH_W) 'testbed.cc'; else $(CYGPATH_W) '$(srcdir)/testbed.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libppttest_a-testbed.Tpo" "$(DEPDIR)/libppttest_a-testbed.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libppttest_a-testbed.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -MT libppttest_a-testbed.obj -MD -MP -MF "$(DEPDIR)/libppttest_a-testbed.Tpo" -c -o libppttest_a-testbed.obj `if test -f 'testbed.cc'; then $(CYGPATH_W) 'testbed.cc'; else $(CYGPATH_W) '$(srcdir)/testbed.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libppttest_a-testbed.Tpo" "$(DEPDIR)/libppttest_a-testbed.Po"; else rm -f "$(DEPDIR)/libppttest_a-testbed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='testbed.cc' object='libppttest_a-testbed.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libppttest_a-testbed.Po' tmpdepfile='$(DEPDIR)/libppttest_a-testbed.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libppttest_a_CXXFLAGS) $(CXXFLAGS) -c -o libppttest_a-testbed.obj `if test -f 'testbed.cc'; then $(CYGPATH_W) 'testbed.cc'; else $(CYGPATH_W) '$(srcdir)/testbed.cc'; fi` 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 \ @@ -254,6 +257,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -265,10 +269,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -291,10 +296,6 @@ 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'`; \ @@ -308,7 +309,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -326,7 +327,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) - installdirs: install: install-am install-exec: install-exec-am @@ -347,7 +347,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -366,6 +366,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -401,13 +403,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-noinstLIBRARIES ctags distclean distclean-compile \ - distclean-generic 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 pdf pdf-am \ - ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-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 pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -ur releases/passepartout-0.6/src/util/filewatcher.cc passepartout-0.6/src/util/filewatcher.cc --- releases/passepartout-0.6/src/util/filewatcher.cc 2004-05-30 01:49:23.000000000 +0200 +++ passepartout-0.6/src/util/filewatcher.cc 2007-03-03 21:45:25.000000000 +0100 @@ -55,7 +55,7 @@ verbose << "Contact with FAM server established" << std::endl; fd = FAMCONNECTION_GETFD(&fc); /// \todo don't poll - Glib::signal_timeout().connect(slot(*this, &Server::poll), + Glib::signal_timeout().connect(mem_fun(*this, &Server::poll), 100); } ~Server() { @@ -127,7 +127,7 @@ if(!connection.connected()) { debug << "Connecting to timeout" << std::endl; connection = - Glib::signal_timeout().connect(slot(*this, &FileWatcher::check_file), + Glib::signal_timeout().connect(mem_fun(*this, &FileWatcher::check_file), 100); } } else connection.disconnect(); Endast i passepartout-0.6/src/util: filewatcher.cc~ diff -ur releases/passepartout-0.6/src/util/filewatcher.h passepartout-0.6/src/util/filewatcher.h --- releases/passepartout-0.6/src/util/filewatcher.h 2004-05-30 01:49:23.000000000 +0200 +++ passepartout-0.6/src/util/filewatcher.h 2007-03-03 21:46:26.000000000 +0100 @@ -4,6 +4,7 @@ // Copyright (C) 2002 - 2004, Fredrik Arnerup & Rasmus Kaj, See COPYING /// #include +#include #include #include #include Endast i passepartout-0.6/src/util: filewatcher.h~ diff -ur releases/passepartout-0.6/src/util/Makefile.in passepartout-0.6/src/util/Makefile.in --- releases/passepartout-0.6/src/util/Makefile.in 2004-10-31 20:23:54.000000000 +0100 +++ passepartout-0.6/src/util/Makefile.in 2007-03-04 00:05:06.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +35,49 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +check_PROGRAMS = runtest$(EXEEXT) +subdir = src/util +DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libpptutil_a_AR = $(AR) $(ARFLAGS) +libpptutil_a_LIBADD = +am_libpptutil_a_OBJECTS = stringutil.$(OBJEXT) filesys.$(OBJEXT) \ + warning.$(OBJEXT) os.$(OBJEXT) configfile.$(OBJEXT) \ + matrix.$(OBJEXT) boundary.$(OBJEXT) rectboundary.$(OBJEXT) \ + typeinfo.$(OBJEXT) barrier.$(OBJEXT) processman.$(OBJEXT) \ + tempfile.$(OBJEXT) filewatcher.$(OBJEXT) \ + filedescriptors.$(OBJEXT) cmdline.$(OBJEXT) xmlwrap.$(OBJEXT) +libpptutil_a_OBJECTS = $(am_libpptutil_a_OBJECTS) +am_runtest_OBJECTS = runtest-test_stringutil.$(OBJEXT) \ + runtest-test_valuunit.$(OBJEXT) runtest-test_matrix.$(OBJEXT) \ + runtest-test_boundary.$(OBJEXT) runtest-test_procio.$(OBJEXT) \ + runtest-test_cmdline.$(OBJEXT) +runtest_OBJECTS = $(am_runtest_OBJECTS) +am__DEPENDENCIES_1 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libpptutil_a_SOURCES) $(runtest_SOURCES) +DIST_SOURCES = $(libpptutil_a_SOURCES) $(runtest_SOURCES) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -103,6 +146,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -110,6 +154,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -123,6 +169,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -132,93 +179,57 @@ target_alias = @target_alias@ xmldir = @xmldir@ noinst_LIBRARIES = libpptutil.a - dist_noinst_HEADERS = stringutil.h filesys.h warning.h os.h configfile.h \ valueunit.h units.h refcount.h matrix.h boundary.h \ rectboundary.h typeinfo.h barrier.h processman.h tempfile.h \ filewatcher.h vector.h filedescriptors.h cmdline.h xmlwrap.h - libpptutil_a_SOURCES = stringutil.cc filesys.cc warning.cc os.cc \ configfile.cc \ matrix.cc boundary.cc rectboundary.cc typeinfo.cc barrier.cc \ processman.cc tempfile.cc filewatcher.cc filedescriptors.cc \ cmdline.cc xmlwrap.cc - TESTS = runtest -check_PROGRAMS = runtest runtest_SOURCES = test_stringutil.cc test_valuunit.cc test_matrix.cc \ test_boundary.cc test_procio.cc test_cmdline.cc runtest_CXXFLAGS = -I$(top_srcdir)/src runtest_DEPENDENCIES = $(noinst_LIBRARIES) runtest_LDADD = -L../testbed -lppttest -L. -lpptutil $(GTKMM_LIBS) -subdir = src/util -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libpptutil_a_AR = $(AR) cru -libpptutil_a_LIBADD = -am_libpptutil_a_OBJECTS = stringutil.$(OBJEXT) filesys.$(OBJEXT) \ - warning.$(OBJEXT) os.$(OBJEXT) configfile.$(OBJEXT) \ - matrix.$(OBJEXT) boundary.$(OBJEXT) rectboundary.$(OBJEXT) \ - typeinfo.$(OBJEXT) barrier.$(OBJEXT) processman.$(OBJEXT) \ - tempfile.$(OBJEXT) filewatcher.$(OBJEXT) \ - filedescriptors.$(OBJEXT) cmdline.$(OBJEXT) xmlwrap.$(OBJEXT) -libpptutil_a_OBJECTS = $(am_libpptutil_a_OBJECTS) -check_PROGRAMS = runtest$(EXEEXT) -am_runtest_OBJECTS = runtest-test_stringutil.$(OBJEXT) \ - runtest-test_valuunit.$(OBJEXT) runtest-test_matrix.$(OBJEXT) \ - runtest-test_boundary.$(OBJEXT) runtest-test_procio.$(OBJEXT) \ - runtest-test_cmdline.$(OBJEXT) -runtest_OBJECTS = $(am_runtest_OBJECTS) -runtest_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/barrier.Po ./$(DEPDIR)/boundary.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/cmdline.Po ./$(DEPDIR)/configfile.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/filedescriptors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/filesys.Po ./$(DEPDIR)/filewatcher.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/matrix.Po ./$(DEPDIR)/os.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/processman.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/rectboundary.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_boundary.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_cmdline.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_matrix.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_procio.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_stringutil.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/runtest-test_valuunit.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/stringutil.Po ./$(DEPDIR)/tempfile.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/typeinfo.Po ./$(DEPDIR)/warning.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xmlwrap.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libpptutil_a_SOURCES) $(runtest_SOURCES) -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libpptutil_a_SOURCES) $(runtest_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/util/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/util/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -234,7 +245,7 @@ $(CXXLINK) $(runtest_LDFLAGS) $(runtest_OBJECTS) $(runtest_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -263,168 +274,104 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlwrap.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` runtest-test_stringutil.o: test_stringutil.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_stringutil.o -MD -MP -MF "$(DEPDIR)/runtest-test_stringutil.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_stringutil.o `test -f 'test_stringutil.cc' || echo '$(srcdir)/'`test_stringutil.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_stringutil.Tpo" "$(DEPDIR)/runtest-test_stringutil.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_stringutil.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_stringutil.o -MD -MP -MF "$(DEPDIR)/runtest-test_stringutil.Tpo" -c -o runtest-test_stringutil.o `test -f 'test_stringutil.cc' || echo '$(srcdir)/'`test_stringutil.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_stringutil.Tpo" "$(DEPDIR)/runtest-test_stringutil.Po"; else rm -f "$(DEPDIR)/runtest-test_stringutil.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_stringutil.cc' object='runtest-test_stringutil.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_stringutil.Po' tmpdepfile='$(DEPDIR)/runtest-test_stringutil.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_stringutil.o `test -f 'test_stringutil.cc' || echo '$(srcdir)/'`test_stringutil.cc runtest-test_stringutil.obj: test_stringutil.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_stringutil.obj -MD -MP -MF "$(DEPDIR)/runtest-test_stringutil.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_stringutil.obj `if test -f 'test_stringutil.cc'; then $(CYGPATH_W) 'test_stringutil.cc'; else $(CYGPATH_W) '$(srcdir)/test_stringutil.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_stringutil.Tpo" "$(DEPDIR)/runtest-test_stringutil.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_stringutil.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_stringutil.obj -MD -MP -MF "$(DEPDIR)/runtest-test_stringutil.Tpo" -c -o runtest-test_stringutil.obj `if test -f 'test_stringutil.cc'; then $(CYGPATH_W) 'test_stringutil.cc'; else $(CYGPATH_W) '$(srcdir)/test_stringutil.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_stringutil.Tpo" "$(DEPDIR)/runtest-test_stringutil.Po"; else rm -f "$(DEPDIR)/runtest-test_stringutil.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_stringutil.cc' object='runtest-test_stringutil.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_stringutil.Po' tmpdepfile='$(DEPDIR)/runtest-test_stringutil.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_stringutil.obj `if test -f 'test_stringutil.cc'; then $(CYGPATH_W) 'test_stringutil.cc'; else $(CYGPATH_W) '$(srcdir)/test_stringutil.cc'; fi` runtest-test_valuunit.o: test_valuunit.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_valuunit.o -MD -MP -MF "$(DEPDIR)/runtest-test_valuunit.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_valuunit.o `test -f 'test_valuunit.cc' || echo '$(srcdir)/'`test_valuunit.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_valuunit.Tpo" "$(DEPDIR)/runtest-test_valuunit.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_valuunit.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_valuunit.o -MD -MP -MF "$(DEPDIR)/runtest-test_valuunit.Tpo" -c -o runtest-test_valuunit.o `test -f 'test_valuunit.cc' || echo '$(srcdir)/'`test_valuunit.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_valuunit.Tpo" "$(DEPDIR)/runtest-test_valuunit.Po"; else rm -f "$(DEPDIR)/runtest-test_valuunit.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_valuunit.cc' object='runtest-test_valuunit.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_valuunit.Po' tmpdepfile='$(DEPDIR)/runtest-test_valuunit.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_valuunit.o `test -f 'test_valuunit.cc' || echo '$(srcdir)/'`test_valuunit.cc runtest-test_valuunit.obj: test_valuunit.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_valuunit.obj -MD -MP -MF "$(DEPDIR)/runtest-test_valuunit.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_valuunit.obj `if test -f 'test_valuunit.cc'; then $(CYGPATH_W) 'test_valuunit.cc'; else $(CYGPATH_W) '$(srcdir)/test_valuunit.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_valuunit.Tpo" "$(DEPDIR)/runtest-test_valuunit.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_valuunit.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_valuunit.obj -MD -MP -MF "$(DEPDIR)/runtest-test_valuunit.Tpo" -c -o runtest-test_valuunit.obj `if test -f 'test_valuunit.cc'; then $(CYGPATH_W) 'test_valuunit.cc'; else $(CYGPATH_W) '$(srcdir)/test_valuunit.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_valuunit.Tpo" "$(DEPDIR)/runtest-test_valuunit.Po"; else rm -f "$(DEPDIR)/runtest-test_valuunit.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_valuunit.cc' object='runtest-test_valuunit.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_valuunit.Po' tmpdepfile='$(DEPDIR)/runtest-test_valuunit.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_valuunit.obj `if test -f 'test_valuunit.cc'; then $(CYGPATH_W) 'test_valuunit.cc'; else $(CYGPATH_W) '$(srcdir)/test_valuunit.cc'; fi` runtest-test_matrix.o: test_matrix.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_matrix.o -MD -MP -MF "$(DEPDIR)/runtest-test_matrix.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_matrix.o `test -f 'test_matrix.cc' || echo '$(srcdir)/'`test_matrix.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_matrix.Tpo" "$(DEPDIR)/runtest-test_matrix.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_matrix.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_matrix.o -MD -MP -MF "$(DEPDIR)/runtest-test_matrix.Tpo" -c -o runtest-test_matrix.o `test -f 'test_matrix.cc' || echo '$(srcdir)/'`test_matrix.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_matrix.Tpo" "$(DEPDIR)/runtest-test_matrix.Po"; else rm -f "$(DEPDIR)/runtest-test_matrix.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_matrix.cc' object='runtest-test_matrix.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_matrix.Po' tmpdepfile='$(DEPDIR)/runtest-test_matrix.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_matrix.o `test -f 'test_matrix.cc' || echo '$(srcdir)/'`test_matrix.cc runtest-test_matrix.obj: test_matrix.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_matrix.obj -MD -MP -MF "$(DEPDIR)/runtest-test_matrix.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_matrix.obj `if test -f 'test_matrix.cc'; then $(CYGPATH_W) 'test_matrix.cc'; else $(CYGPATH_W) '$(srcdir)/test_matrix.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_matrix.Tpo" "$(DEPDIR)/runtest-test_matrix.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_matrix.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_matrix.obj -MD -MP -MF "$(DEPDIR)/runtest-test_matrix.Tpo" -c -o runtest-test_matrix.obj `if test -f 'test_matrix.cc'; then $(CYGPATH_W) 'test_matrix.cc'; else $(CYGPATH_W) '$(srcdir)/test_matrix.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_matrix.Tpo" "$(DEPDIR)/runtest-test_matrix.Po"; else rm -f "$(DEPDIR)/runtest-test_matrix.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_matrix.cc' object='runtest-test_matrix.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_matrix.Po' tmpdepfile='$(DEPDIR)/runtest-test_matrix.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_matrix.obj `if test -f 'test_matrix.cc'; then $(CYGPATH_W) 'test_matrix.cc'; else $(CYGPATH_W) '$(srcdir)/test_matrix.cc'; fi` runtest-test_boundary.o: test_boundary.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_boundary.o -MD -MP -MF "$(DEPDIR)/runtest-test_boundary.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_boundary.o `test -f 'test_boundary.cc' || echo '$(srcdir)/'`test_boundary.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_boundary.Tpo" "$(DEPDIR)/runtest-test_boundary.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_boundary.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_boundary.o -MD -MP -MF "$(DEPDIR)/runtest-test_boundary.Tpo" -c -o runtest-test_boundary.o `test -f 'test_boundary.cc' || echo '$(srcdir)/'`test_boundary.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_boundary.Tpo" "$(DEPDIR)/runtest-test_boundary.Po"; else rm -f "$(DEPDIR)/runtest-test_boundary.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_boundary.cc' object='runtest-test_boundary.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_boundary.Po' tmpdepfile='$(DEPDIR)/runtest-test_boundary.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_boundary.o `test -f 'test_boundary.cc' || echo '$(srcdir)/'`test_boundary.cc runtest-test_boundary.obj: test_boundary.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_boundary.obj -MD -MP -MF "$(DEPDIR)/runtest-test_boundary.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_boundary.obj `if test -f 'test_boundary.cc'; then $(CYGPATH_W) 'test_boundary.cc'; else $(CYGPATH_W) '$(srcdir)/test_boundary.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_boundary.Tpo" "$(DEPDIR)/runtest-test_boundary.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_boundary.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_boundary.obj -MD -MP -MF "$(DEPDIR)/runtest-test_boundary.Tpo" -c -o runtest-test_boundary.obj `if test -f 'test_boundary.cc'; then $(CYGPATH_W) 'test_boundary.cc'; else $(CYGPATH_W) '$(srcdir)/test_boundary.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_boundary.Tpo" "$(DEPDIR)/runtest-test_boundary.Po"; else rm -f "$(DEPDIR)/runtest-test_boundary.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_boundary.cc' object='runtest-test_boundary.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_boundary.Po' tmpdepfile='$(DEPDIR)/runtest-test_boundary.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_boundary.obj `if test -f 'test_boundary.cc'; then $(CYGPATH_W) 'test_boundary.cc'; else $(CYGPATH_W) '$(srcdir)/test_boundary.cc'; fi` runtest-test_procio.o: test_procio.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_procio.o -MD -MP -MF "$(DEPDIR)/runtest-test_procio.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_procio.o `test -f 'test_procio.cc' || echo '$(srcdir)/'`test_procio.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_procio.Tpo" "$(DEPDIR)/runtest-test_procio.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_procio.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_procio.o -MD -MP -MF "$(DEPDIR)/runtest-test_procio.Tpo" -c -o runtest-test_procio.o `test -f 'test_procio.cc' || echo '$(srcdir)/'`test_procio.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_procio.Tpo" "$(DEPDIR)/runtest-test_procio.Po"; else rm -f "$(DEPDIR)/runtest-test_procio.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_procio.cc' object='runtest-test_procio.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_procio.Po' tmpdepfile='$(DEPDIR)/runtest-test_procio.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_procio.o `test -f 'test_procio.cc' || echo '$(srcdir)/'`test_procio.cc runtest-test_procio.obj: test_procio.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_procio.obj -MD -MP -MF "$(DEPDIR)/runtest-test_procio.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_procio.obj `if test -f 'test_procio.cc'; then $(CYGPATH_W) 'test_procio.cc'; else $(CYGPATH_W) '$(srcdir)/test_procio.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_procio.Tpo" "$(DEPDIR)/runtest-test_procio.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_procio.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_procio.obj -MD -MP -MF "$(DEPDIR)/runtest-test_procio.Tpo" -c -o runtest-test_procio.obj `if test -f 'test_procio.cc'; then $(CYGPATH_W) 'test_procio.cc'; else $(CYGPATH_W) '$(srcdir)/test_procio.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_procio.Tpo" "$(DEPDIR)/runtest-test_procio.Po"; else rm -f "$(DEPDIR)/runtest-test_procio.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_procio.cc' object='runtest-test_procio.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_procio.Po' tmpdepfile='$(DEPDIR)/runtest-test_procio.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_procio.obj `if test -f 'test_procio.cc'; then $(CYGPATH_W) 'test_procio.cc'; else $(CYGPATH_W) '$(srcdir)/test_procio.cc'; fi` runtest-test_cmdline.o: test_cmdline.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_cmdline.o -MD -MP -MF "$(DEPDIR)/runtest-test_cmdline.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_cmdline.o `test -f 'test_cmdline.cc' || echo '$(srcdir)/'`test_cmdline.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_cmdline.Tpo" "$(DEPDIR)/runtest-test_cmdline.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_cmdline.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_cmdline.o -MD -MP -MF "$(DEPDIR)/runtest-test_cmdline.Tpo" -c -o runtest-test_cmdline.o `test -f 'test_cmdline.cc' || echo '$(srcdir)/'`test_cmdline.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_cmdline.Tpo" "$(DEPDIR)/runtest-test_cmdline.Po"; else rm -f "$(DEPDIR)/runtest-test_cmdline.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_cmdline.cc' object='runtest-test_cmdline.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_cmdline.Po' tmpdepfile='$(DEPDIR)/runtest-test_cmdline.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_cmdline.o `test -f 'test_cmdline.cc' || echo '$(srcdir)/'`test_cmdline.cc runtest-test_cmdline.obj: test_cmdline.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_cmdline.obj -MD -MP -MF "$(DEPDIR)/runtest-test_cmdline.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o runtest-test_cmdline.obj `if test -f 'test_cmdline.cc'; then $(CYGPATH_W) 'test_cmdline.cc'; else $(CYGPATH_W) '$(srcdir)/test_cmdline.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_cmdline.Tpo" "$(DEPDIR)/runtest-test_cmdline.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/runtest-test_cmdline.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -MT runtest-test_cmdline.obj -MD -MP -MF "$(DEPDIR)/runtest-test_cmdline.Tpo" -c -o runtest-test_cmdline.obj `if test -f 'test_cmdline.cc'; then $(CYGPATH_W) 'test_cmdline.cc'; else $(CYGPATH_W) '$(srcdir)/test_cmdline.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/runtest-test_cmdline.Tpo" "$(DEPDIR)/runtest-test_cmdline.Po"; else rm -f "$(DEPDIR)/runtest-test_cmdline.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='test_cmdline.cc' object='runtest-test_cmdline.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/runtest-test_cmdline.Po' tmpdepfile='$(DEPDIR)/runtest-test_cmdline.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(runtest_CXXFLAGS) $(CXXFLAGS) -c -o runtest-test_cmdline.obj `if test -f 'test_cmdline.cc'; then $(CYGPATH_W) 'test_cmdline.cc'; else $(CYGPATH_W) '$(srcdir)/test_cmdline.cc'; fi` 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 \ @@ -433,6 +380,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -444,10 +392,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -484,24 +433,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -526,27 +475,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + 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"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -560,7 +505,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -580,7 +525,6 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) $(HEADERS) - installdirs: install: install-am install-exec: install-exec-am @@ -601,7 +545,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -621,6 +565,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -657,13 +603,13 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-noinstLIBRARIES ctags \ distclean distclean-compile distclean-generic 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 pdf pdf-am ps ps-am tags 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-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 pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -ur releases/passepartout-0.6/src/util/processman.cc passepartout-0.6/src/util/processman.cc --- releases/passepartout-0.6/src/util/processman.cc 2004-09-20 02:43:58.000000000 +0200 +++ passepartout-0.6/src/util/processman.cc 2007-03-03 21:44:40.000000000 +0100 @@ -129,7 +129,7 @@ { // Get a callback to run_check every 100ms. Glib::signal_timeout().connect - (slot(*this, &ProcessManager::run_check), 100); + (mem_fun(*this, &ProcessManager::run_check), 100); } ProcessManager::~ProcessManager() { Endast i passepartout-0.6/src/util: processman.cc~ diff -ur releases/passepartout-0.6/src/util/processman.h passepartout-0.6/src/util/processman.h --- releases/passepartout-0.6/src/util/processman.h 2004-09-20 02:43:58.000000000 +0200 +++ passepartout-0.6/src/util/processman.h 2007-03-03 21:43:34.000000000 +0100 @@ -72,7 +72,7 @@ // Signal that a process has stopped, // attach process id, a bool to signify normal termination // and an exit code that is only meaningful if the bool is true: - SigC::Signal3 process_stopped; + sigc::signal3 process_stopped; static ProcessManager &instance(); Endast i passepartout-0.6/src/util: processman.h~ diff -ur releases/passepartout-0.6/src/util/valueunit.h passepartout-0.6/src/util/valueunit.h --- releases/passepartout-0.6/src/util/valueunit.h 2004-01-12 20:01:34.000000000 +0100 +++ passepartout-0.6/src/util/valueunit.h 2007-03-03 22:09:41.000000000 +0100 @@ -7,6 +7,12 @@ #include template +class ValueUnit; + +template +std::istream& operator >> (std::istream& in, ValueUnit& vu); + +template class ValueUnit { public: ValueUnit() : value_(0) {} Endast i passepartout-0.6/src/util: valueunit.h~ diff -ur releases/passepartout-0.6/src/xml2ps/Makefile.in passepartout-0.6/src/xml2ps/Makefile.in --- releases/passepartout-0.6/src/xml2ps/Makefile.in 2004-10-31 20:23:54.000000000 +0100 +++ passepartout-0.6/src/xml2ps/Makefile.in 2007-03-04 00:05:06.000000000 +0100 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 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 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,6 +14,9 @@ @SET_MAKE@ + + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +24,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,6 +37,62 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +bin_PROGRAMS = xml2ps$(EXEEXT) +subdir = src/xml2ps +DIST_COMMON = $(dist_noinst_HEADERS) $(dist_xml_DATA) \ + $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/src/defines.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +AR = ar +ARFLAGS = cru +libxml2ps_a_AR = $(AR) $(ARFLAGS) +libxml2ps_a_LIBADD = +am_libxml2ps_a_OBJECTS = libxml2ps_a-paragraph.$(OBJEXT) \ + libxml2ps_a-xly.$(OBJEXT) libxml2ps_a-typesetter.$(OBJEXT) \ + libxml2ps_a-blockcontainer.$(OBJEXT) \ + libxml2ps_a-psstream.$(OBJEXT) libxml2ps_a-line.$(OBJEXT) \ + libxml2ps_a-canvas.$(OBJEXT) libxml2ps_a-pagedstream.$(OBJEXT) \ + libxml2ps_a-pscanvas.$(OBJEXT) \ + libxml2ps_a-boundaries.$(OBJEXT) \ + libxml2ps_a-pdfcanvas.$(OBJEXT) libxml2ps_a-xcanvas.$(OBJEXT) +libxml2ps_a_OBJECTS = $(am_libxml2ps_a_OBJECTS) +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(xmldir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_xml2ps_OBJECTS = xml2ps-main.$(OBJEXT) +xml2ps_OBJECTS = $(am_xml2ps_OBJECTS) +am__DEPENDENCIES_1 = +xml2ps_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) libxml2ps.a ../fonts/libfonts.a \ + ../ps/libps.a ../util/libpptutil.a +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +SOURCES = $(libxml2ps_a_SOURCES) $(xml2ps_SOURCES) +DIST_SOURCES = $(libxml2ps_a_SOURCES) $(xml2ps_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 = `echo $$p | sed -e 's|^.*/||'`; +dist_xmlDATA_INSTALL = $(INSTALL_DATA) +DATA = $(dist_xml_DATA) +HEADERS = $(dist_noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ @@ -101,6 +159,7 @@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ @@ -108,6 +167,8 @@ 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_alias = @build_alias@ datadir = @datadir@ @@ -121,6 +182,7 @@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ +mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ @@ -131,100 +193,57 @@ #install DTDs and XSLTs in $(datadir)/xml/passepartout/ xmldir = $(datadir)/xml/$(PACKAGE) -bin_PROGRAMS = xml2ps - noinst_LIBRARIES = libxml2ps.a - dist_noinst_HEADERS = blockcontainer.hh boundaries.hh canvas.hh \ line.hh paragraph.hh typesetter.hh pagedstream.hh \ pdfcanvas.hh pscanvas.hh psstream.hh xly.hh xcanvas.hh - libxml2ps_a_SOURCES = paragraph.cc xly.cc typesetter.cc \ blockcontainer.cc psstream.cc line.cc canvas.cc \ pagedstream.cc pscanvas.cc boundaries.cc pdfcanvas.cc \ xcanvas.cc - xml2ps_SOURCES = main.cc - -libxml2ps_a_CXXFLAGS = $(XML2_CFLAGS) $(XMLPP_CFLAGS) $(GTKMM_CFLAGS) \ - $(GNOMECANVAS_CFLAGS)\ --I$(top_srcdir)/src - +libxml2ps_a_CXXFLAGS = $(XML2_CFLAGS) $(XMLPP_CFLAGS) $(GTKMM_CFLAGS) \ + $(GNOMECANVAS_CFLAGS) -I$(top_srcdir)/src xml2ps_CXXFLAGS = $(libxml2ps_a_CXXFLAGS) - xml2ps_LDADD = $(XMLPP_LIBS) $(GTKMM_LIBS) $(GNOMECANVAS_LIBS)\ libxml2ps.a ../fonts/libfonts.a ../ps/libps.a ../util/libpptutil.a dist_xml_DATA = xml2ps.dtd xhtml.xslt docbook.xslt -subdir = src/xml2ps -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/src/defines.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libxml2ps_a_AR = $(AR) cru -libxml2ps_a_LIBADD = -am_libxml2ps_a_OBJECTS = libxml2ps_a-paragraph.$(OBJEXT) \ - libxml2ps_a-xly.$(OBJEXT) libxml2ps_a-typesetter.$(OBJEXT) \ - libxml2ps_a-blockcontainer.$(OBJEXT) \ - libxml2ps_a-psstream.$(OBJEXT) libxml2ps_a-line.$(OBJEXT) \ - libxml2ps_a-canvas.$(OBJEXT) libxml2ps_a-pagedstream.$(OBJEXT) \ - libxml2ps_a-pscanvas.$(OBJEXT) libxml2ps_a-boundaries.$(OBJEXT) \ - libxml2ps_a-pdfcanvas.$(OBJEXT) libxml2ps_a-xcanvas.$(OBJEXT) -libxml2ps_a_OBJECTS = $(am_libxml2ps_a_OBJECTS) -bin_PROGRAMS = xml2ps$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) - -am_xml2ps_OBJECTS = xml2ps-main.$(OBJEXT) -xml2ps_OBJECTS = $(am_xml2ps_OBJECTS) -xml2ps_DEPENDENCIES = libxml2ps.a ../fonts/libfonts.a ../ps/libps.a \ - ../util/libpptutil.a -xml2ps_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libxml2ps_a-blockcontainer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-boundaries.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-canvas.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-line.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-pagedstream.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-paragraph.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-pdfcanvas.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-pscanvas.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-psstream.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-typesetter.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-xcanvas.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libxml2ps_a-xly.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xml2ps-main.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DIST_SOURCES = $(libxml2ps_a_SOURCES) $(xml2ps_SOURCES) -DATA = $(dist_xml_DATA) - -HEADERS = $(dist_noinst_HEADERS) - -DIST_COMMON = $(dist_noinst_HEADERS) $(dist_xml_DATA) \ - $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libxml2ps_a_SOURCES) $(xml2ps_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/xml2ps/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign src/xml2ps/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) - -AR = ar +.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: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -232,17 +251,16 @@ -rm -f libxml2ps.a $(libxml2ps_a_AR) libxml2ps.a $(libxml2ps_a_OBJECTS) $(libxml2ps_a_LIBADD) $(RANLIB) libxml2ps.a -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -250,8 +268,8 @@ @$(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; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -261,7 +279,7 @@ $(CXXLINK) $(xml2ps_LDFLAGS) $(xml2ps_OBJECTS) $(xml2ps_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -281,340 +299,219 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xml2ps-main.Po@am__quote@ .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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @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) '$<'` libxml2ps_a-paragraph.o: paragraph.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-paragraph.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-paragraph.o `test -f 'paragraph.cc' || echo '$(srcdir)/'`paragraph.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" "$(DEPDIR)/libxml2ps_a-paragraph.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-paragraph.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" -c -o libxml2ps_a-paragraph.o `test -f 'paragraph.cc' || echo '$(srcdir)/'`paragraph.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" "$(DEPDIR)/libxml2ps_a-paragraph.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='paragraph.cc' object='libxml2ps_a-paragraph.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-paragraph.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-paragraph.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-paragraph.o `test -f 'paragraph.cc' || echo '$(srcdir)/'`paragraph.cc libxml2ps_a-paragraph.obj: paragraph.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-paragraph.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-paragraph.obj `if test -f 'paragraph.cc'; then $(CYGPATH_W) 'paragraph.cc'; else $(CYGPATH_W) '$(srcdir)/paragraph.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" "$(DEPDIR)/libxml2ps_a-paragraph.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-paragraph.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" -c -o libxml2ps_a-paragraph.obj `if test -f 'paragraph.cc'; then $(CYGPATH_W) 'paragraph.cc'; else $(CYGPATH_W) '$(srcdir)/paragraph.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo" "$(DEPDIR)/libxml2ps_a-paragraph.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-paragraph.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='paragraph.cc' object='libxml2ps_a-paragraph.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-paragraph.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-paragraph.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-paragraph.obj `if test -f 'paragraph.cc'; then $(CYGPATH_W) 'paragraph.cc'; else $(CYGPATH_W) '$(srcdir)/paragraph.cc'; fi` libxml2ps_a-xly.o: xly.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xly.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xly.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-xly.o `test -f 'xly.cc' || echo '$(srcdir)/'`xly.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xly.Tpo" "$(DEPDIR)/libxml2ps_a-xly.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-xly.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xly.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xly.Tpo" -c -o libxml2ps_a-xly.o `test -f 'xly.cc' || echo '$(srcdir)/'`xly.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xly.Tpo" "$(DEPDIR)/libxml2ps_a-xly.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-xly.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='xly.cc' object='libxml2ps_a-xly.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-xly.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-xly.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-xly.o `test -f 'xly.cc' || echo '$(srcdir)/'`xly.cc libxml2ps_a-xly.obj: xly.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xly.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xly.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-xly.obj `if test -f 'xly.cc'; then $(CYGPATH_W) 'xly.cc'; else $(CYGPATH_W) '$(srcdir)/xly.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xly.Tpo" "$(DEPDIR)/libxml2ps_a-xly.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-xly.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xly.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xly.Tpo" -c -o libxml2ps_a-xly.obj `if test -f 'xly.cc'; then $(CYGPATH_W) 'xly.cc'; else $(CYGPATH_W) '$(srcdir)/xly.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xly.Tpo" "$(DEPDIR)/libxml2ps_a-xly.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-xly.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='xly.cc' object='libxml2ps_a-xly.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-xly.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-xly.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-xly.obj `if test -f 'xly.cc'; then $(CYGPATH_W) 'xly.cc'; else $(CYGPATH_W) '$(srcdir)/xly.cc'; fi` libxml2ps_a-typesetter.o: typesetter.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-typesetter.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-typesetter.o `test -f 'typesetter.cc' || echo '$(srcdir)/'`typesetter.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" "$(DEPDIR)/libxml2ps_a-typesetter.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-typesetter.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" -c -o libxml2ps_a-typesetter.o `test -f 'typesetter.cc' || echo '$(srcdir)/'`typesetter.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" "$(DEPDIR)/libxml2ps_a-typesetter.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='typesetter.cc' object='libxml2ps_a-typesetter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-typesetter.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-typesetter.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-typesetter.o `test -f 'typesetter.cc' || echo '$(srcdir)/'`typesetter.cc libxml2ps_a-typesetter.obj: typesetter.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-typesetter.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-typesetter.obj `if test -f 'typesetter.cc'; then $(CYGPATH_W) 'typesetter.cc'; else $(CYGPATH_W) '$(srcdir)/typesetter.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" "$(DEPDIR)/libxml2ps_a-typesetter.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-typesetter.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" -c -o libxml2ps_a-typesetter.obj `if test -f 'typesetter.cc'; then $(CYGPATH_W) 'typesetter.cc'; else $(CYGPATH_W) '$(srcdir)/typesetter.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo" "$(DEPDIR)/libxml2ps_a-typesetter.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-typesetter.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='typesetter.cc' object='libxml2ps_a-typesetter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-typesetter.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-typesetter.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-typesetter.obj `if test -f 'typesetter.cc'; then $(CYGPATH_W) 'typesetter.cc'; else $(CYGPATH_W) '$(srcdir)/typesetter.cc'; fi` libxml2ps_a-blockcontainer.o: blockcontainer.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-blockcontainer.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-blockcontainer.o `test -f 'blockcontainer.cc' || echo '$(srcdir)/'`blockcontainer.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" "$(DEPDIR)/libxml2ps_a-blockcontainer.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-blockcontainer.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" -c -o libxml2ps_a-blockcontainer.o `test -f 'blockcontainer.cc' || echo '$(srcdir)/'`blockcontainer.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" "$(DEPDIR)/libxml2ps_a-blockcontainer.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='blockcontainer.cc' object='libxml2ps_a-blockcontainer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-blockcontainer.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-blockcontainer.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-blockcontainer.o `test -f 'blockcontainer.cc' || echo '$(srcdir)/'`blockcontainer.cc libxml2ps_a-blockcontainer.obj: blockcontainer.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-blockcontainer.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-blockcontainer.obj `if test -f 'blockcontainer.cc'; then $(CYGPATH_W) 'blockcontainer.cc'; else $(CYGPATH_W) '$(srcdir)/blockcontainer.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" "$(DEPDIR)/libxml2ps_a-blockcontainer.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-blockcontainer.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" -c -o libxml2ps_a-blockcontainer.obj `if test -f 'blockcontainer.cc'; then $(CYGPATH_W) 'blockcontainer.cc'; else $(CYGPATH_W) '$(srcdir)/blockcontainer.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo" "$(DEPDIR)/libxml2ps_a-blockcontainer.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-blockcontainer.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='blockcontainer.cc' object='libxml2ps_a-blockcontainer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-blockcontainer.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-blockcontainer.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-blockcontainer.obj `if test -f 'blockcontainer.cc'; then $(CYGPATH_W) 'blockcontainer.cc'; else $(CYGPATH_W) '$(srcdir)/blockcontainer.cc'; fi` libxml2ps_a-psstream.o: psstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-psstream.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-psstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-psstream.o `test -f 'psstream.cc' || echo '$(srcdir)/'`psstream.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo" "$(DEPDIR)/libxml2ps_a-psstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-psstream.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-psstream.Tpo" -c -o libxml2ps_a-psstream.o `test -f 'psstream.cc' || echo '$(srcdir)/'`psstream.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo" "$(DEPDIR)/libxml2ps_a-psstream.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='psstream.cc' object='libxml2ps_a-psstream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-psstream.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-psstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-psstream.o `test -f 'psstream.cc' || echo '$(srcdir)/'`psstream.cc libxml2ps_a-psstream.obj: psstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-psstream.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-psstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-psstream.obj `if test -f 'psstream.cc'; then $(CYGPATH_W) 'psstream.cc'; else $(CYGPATH_W) '$(srcdir)/psstream.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo" "$(DEPDIR)/libxml2ps_a-psstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-psstream.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-psstream.Tpo" -c -o libxml2ps_a-psstream.obj `if test -f 'psstream.cc'; then $(CYGPATH_W) 'psstream.cc'; else $(CYGPATH_W) '$(srcdir)/psstream.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo" "$(DEPDIR)/libxml2ps_a-psstream.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-psstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='psstream.cc' object='libxml2ps_a-psstream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-psstream.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-psstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-psstream.obj `if test -f 'psstream.cc'; then $(CYGPATH_W) 'psstream.cc'; else $(CYGPATH_W) '$(srcdir)/psstream.cc'; fi` libxml2ps_a-line.o: line.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-line.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-line.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-line.o `test -f 'line.cc' || echo '$(srcdir)/'`line.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-line.Tpo" "$(DEPDIR)/libxml2ps_a-line.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-line.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-line.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-line.Tpo" -c -o libxml2ps_a-line.o `test -f 'line.cc' || echo '$(srcdir)/'`line.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-line.Tpo" "$(DEPDIR)/libxml2ps_a-line.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-line.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='line.cc' object='libxml2ps_a-line.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-line.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-line.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-line.o `test -f 'line.cc' || echo '$(srcdir)/'`line.cc libxml2ps_a-line.obj: line.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-line.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-line.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-line.obj `if test -f 'line.cc'; then $(CYGPATH_W) 'line.cc'; else $(CYGPATH_W) '$(srcdir)/line.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-line.Tpo" "$(DEPDIR)/libxml2ps_a-line.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-line.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-line.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-line.Tpo" -c -o libxml2ps_a-line.obj `if test -f 'line.cc'; then $(CYGPATH_W) 'line.cc'; else $(CYGPATH_W) '$(srcdir)/line.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-line.Tpo" "$(DEPDIR)/libxml2ps_a-line.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-line.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='line.cc' object='libxml2ps_a-line.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-line.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-line.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-line.obj `if test -f 'line.cc'; then $(CYGPATH_W) 'line.cc'; else $(CYGPATH_W) '$(srcdir)/line.cc'; fi` libxml2ps_a-canvas.o: canvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-canvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-canvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-canvas.o `test -f 'canvas.cc' || echo '$(srcdir)/'`canvas.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo" "$(DEPDIR)/libxml2ps_a-canvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-canvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-canvas.Tpo" -c -o libxml2ps_a-canvas.o `test -f 'canvas.cc' || echo '$(srcdir)/'`canvas.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo" "$(DEPDIR)/libxml2ps_a-canvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='canvas.cc' object='libxml2ps_a-canvas.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-canvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-canvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-canvas.o `test -f 'canvas.cc' || echo '$(srcdir)/'`canvas.cc libxml2ps_a-canvas.obj: canvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-canvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-canvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-canvas.obj `if test -f 'canvas.cc'; then $(CYGPATH_W) 'canvas.cc'; else $(CYGPATH_W) '$(srcdir)/canvas.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo" "$(DEPDIR)/libxml2ps_a-canvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-canvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-canvas.Tpo" -c -o libxml2ps_a-canvas.obj `if test -f 'canvas.cc'; then $(CYGPATH_W) 'canvas.cc'; else $(CYGPATH_W) '$(srcdir)/canvas.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo" "$(DEPDIR)/libxml2ps_a-canvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-canvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='canvas.cc' object='libxml2ps_a-canvas.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-canvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-canvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-canvas.obj `if test -f 'canvas.cc'; then $(CYGPATH_W) 'canvas.cc'; else $(CYGPATH_W) '$(srcdir)/canvas.cc'; fi` libxml2ps_a-pagedstream.o: pagedstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pagedstream.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pagedstream.o `test -f 'pagedstream.cc' || echo '$(srcdir)/'`pagedstream.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" "$(DEPDIR)/libxml2ps_a-pagedstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pagedstream.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" -c -o libxml2ps_a-pagedstream.o `test -f 'pagedstream.cc' || echo '$(srcdir)/'`pagedstream.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" "$(DEPDIR)/libxml2ps_a-pagedstream.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagedstream.cc' object='libxml2ps_a-pagedstream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pagedstream.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pagedstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pagedstream.o `test -f 'pagedstream.cc' || echo '$(srcdir)/'`pagedstream.cc libxml2ps_a-pagedstream.obj: pagedstream.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pagedstream.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pagedstream.obj `if test -f 'pagedstream.cc'; then $(CYGPATH_W) 'pagedstream.cc'; else $(CYGPATH_W) '$(srcdir)/pagedstream.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" "$(DEPDIR)/libxml2ps_a-pagedstream.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pagedstream.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" -c -o libxml2ps_a-pagedstream.obj `if test -f 'pagedstream.cc'; then $(CYGPATH_W) 'pagedstream.cc'; else $(CYGPATH_W) '$(srcdir)/pagedstream.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo" "$(DEPDIR)/libxml2ps_a-pagedstream.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pagedstream.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pagedstream.cc' object='libxml2ps_a-pagedstream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pagedstream.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pagedstream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pagedstream.obj `if test -f 'pagedstream.cc'; then $(CYGPATH_W) 'pagedstream.cc'; else $(CYGPATH_W) '$(srcdir)/pagedstream.cc'; fi` libxml2ps_a-pscanvas.o: pscanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pscanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pscanvas.o `test -f 'pscanvas.cc' || echo '$(srcdir)/'`pscanvas.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pscanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pscanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" -c -o libxml2ps_a-pscanvas.o `test -f 'pscanvas.cc' || echo '$(srcdir)/'`pscanvas.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pscanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pscanvas.cc' object='libxml2ps_a-pscanvas.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pscanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pscanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pscanvas.o `test -f 'pscanvas.cc' || echo '$(srcdir)/'`pscanvas.cc libxml2ps_a-pscanvas.obj: pscanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pscanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pscanvas.obj `if test -f 'pscanvas.cc'; then $(CYGPATH_W) 'pscanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pscanvas.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pscanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pscanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" -c -o libxml2ps_a-pscanvas.obj `if test -f 'pscanvas.cc'; then $(CYGPATH_W) 'pscanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pscanvas.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pscanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pscanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pscanvas.cc' object='libxml2ps_a-pscanvas.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pscanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pscanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pscanvas.obj `if test -f 'pscanvas.cc'; then $(CYGPATH_W) 'pscanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pscanvas.cc'; fi` libxml2ps_a-boundaries.o: boundaries.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-boundaries.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-boundaries.o `test -f 'boundaries.cc' || echo '$(srcdir)/'`boundaries.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" "$(DEPDIR)/libxml2ps_a-boundaries.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-boundaries.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" -c -o libxml2ps_a-boundaries.o `test -f 'boundaries.cc' || echo '$(srcdir)/'`boundaries.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" "$(DEPDIR)/libxml2ps_a-boundaries.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='boundaries.cc' object='libxml2ps_a-boundaries.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-boundaries.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-boundaries.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-boundaries.o `test -f 'boundaries.cc' || echo '$(srcdir)/'`boundaries.cc libxml2ps_a-boundaries.obj: boundaries.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-boundaries.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-boundaries.obj `if test -f 'boundaries.cc'; then $(CYGPATH_W) 'boundaries.cc'; else $(CYGPATH_W) '$(srcdir)/boundaries.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" "$(DEPDIR)/libxml2ps_a-boundaries.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-boundaries.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" -c -o libxml2ps_a-boundaries.obj `if test -f 'boundaries.cc'; then $(CYGPATH_W) 'boundaries.cc'; else $(CYGPATH_W) '$(srcdir)/boundaries.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo" "$(DEPDIR)/libxml2ps_a-boundaries.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-boundaries.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='boundaries.cc' object='libxml2ps_a-boundaries.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-boundaries.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-boundaries.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-boundaries.obj `if test -f 'boundaries.cc'; then $(CYGPATH_W) 'boundaries.cc'; else $(CYGPATH_W) '$(srcdir)/boundaries.cc'; fi` libxml2ps_a-pdfcanvas.o: pdfcanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pdfcanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pdfcanvas.o `test -f 'pdfcanvas.cc' || echo '$(srcdir)/'`pdfcanvas.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pdfcanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pdfcanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" -c -o libxml2ps_a-pdfcanvas.o `test -f 'pdfcanvas.cc' || echo '$(srcdir)/'`pdfcanvas.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pdfcanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdfcanvas.cc' object='libxml2ps_a-pdfcanvas.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pdfcanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pdfcanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pdfcanvas.o `test -f 'pdfcanvas.cc' || echo '$(srcdir)/'`pdfcanvas.cc libxml2ps_a-pdfcanvas.obj: pdfcanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pdfcanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-pdfcanvas.obj `if test -f 'pdfcanvas.cc'; then $(CYGPATH_W) 'pdfcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pdfcanvas.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pdfcanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-pdfcanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" -c -o libxml2ps_a-pdfcanvas.obj `if test -f 'pdfcanvas.cc'; then $(CYGPATH_W) 'pdfcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pdfcanvas.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-pdfcanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-pdfcanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='pdfcanvas.cc' object='libxml2ps_a-pdfcanvas.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-pdfcanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-pdfcanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-pdfcanvas.obj `if test -f 'pdfcanvas.cc'; then $(CYGPATH_W) 'pdfcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/pdfcanvas.cc'; fi` libxml2ps_a-xcanvas.o: xcanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xcanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-xcanvas.o `test -f 'xcanvas.cc' || echo '$(srcdir)/'`xcanvas.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-xcanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xcanvas.o -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" -c -o libxml2ps_a-xcanvas.o `test -f 'xcanvas.cc' || echo '$(srcdir)/'`xcanvas.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-xcanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='xcanvas.cc' object='libxml2ps_a-xcanvas.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-xcanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-xcanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-xcanvas.o `test -f 'xcanvas.cc' || echo '$(srcdir)/'`xcanvas.cc libxml2ps_a-xcanvas.obj: xcanvas.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xcanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o libxml2ps_a-xcanvas.obj `if test -f 'xcanvas.cc'; then $(CYGPATH_W) 'xcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/xcanvas.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-xcanvas.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -MT libxml2ps_a-xcanvas.obj -MD -MP -MF "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" -c -o libxml2ps_a-xcanvas.obj `if test -f 'xcanvas.cc'; then $(CYGPATH_W) 'xcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/xcanvas.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo" "$(DEPDIR)/libxml2ps_a-xcanvas.Po"; else rm -f "$(DEPDIR)/libxml2ps_a-xcanvas.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='xcanvas.cc' object='libxml2ps_a-xcanvas.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/libxml2ps_a-xcanvas.Po' tmpdepfile='$(DEPDIR)/libxml2ps_a-xcanvas.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libxml2ps_a_CXXFLAGS) $(CXXFLAGS) -c -o libxml2ps_a-xcanvas.obj `if test -f 'xcanvas.cc'; then $(CYGPATH_W) 'xcanvas.cc'; else $(CYGPATH_W) '$(srcdir)/xcanvas.cc'; fi` xml2ps-main.o: main.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -MT xml2ps-main.o -MD -MP -MF "$(DEPDIR)/xml2ps-main.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o xml2ps-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/xml2ps-main.Tpo" "$(DEPDIR)/xml2ps-main.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/xml2ps-main.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -MT xml2ps-main.o -MD -MP -MF "$(DEPDIR)/xml2ps-main.Tpo" -c -o xml2ps-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/xml2ps-main.Tpo" "$(DEPDIR)/xml2ps-main.Po"; else rm -f "$(DEPDIR)/xml2ps-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='xml2ps-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/xml2ps-main.Po' tmpdepfile='$(DEPDIR)/xml2ps-main.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -c -o xml2ps-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc xml2ps-main.obj: main.cc -@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -MT xml2ps-main.obj -MD -MP -MF "$(DEPDIR)/xml2ps-main.Tpo" \ -@am__fastdepCXX_TRUE@ -c -o xml2ps-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`; \ -@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/xml2ps-main.Tpo" "$(DEPDIR)/xml2ps-main.Po"; \ -@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/xml2ps-main.Tpo"; exit 1; \ -@am__fastdepCXX_TRUE@ fi +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -MT xml2ps-main.obj -MD -MP -MF "$(DEPDIR)/xml2ps-main.Tpo" -c -o xml2ps-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/xml2ps-main.Tpo" "$(DEPDIR)/xml2ps-main.Po"; else rm -f "$(DEPDIR)/xml2ps-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='xml2ps-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/xml2ps-main.Po' tmpdepfile='$(DEPDIR)/xml2ps-main.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(xml2ps_CXXFLAGS) $(CXXFLAGS) -c -o xml2ps-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` uninstall-info-am: -dist_xmlDATA_INSTALL = $(INSTALL_DATA) install-dist_xmlDATA: $(dist_xml_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(xmldir) + test -z "$(xmldir)" || $(mkdir_p) "$(DESTDIR)$(xmldir)" @list='$(dist_xml_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(dist_xmlDATA_INSTALL) $$d$$p $(DESTDIR)$(xmldir)/$$f"; \ - $(dist_xmlDATA_INSTALL) $$d$$p $(DESTDIR)$(xmldir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(dist_xmlDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(xmldir)/$$f'"; \ + $(dist_xmlDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(xmldir)/$$f"; \ done uninstall-dist_xmlDATA: @$(NORMAL_UNINSTALL) @list='$(dist_xml_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(xmldir)/$$f"; \ - rm -f $(DESTDIR)$(xmldir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(xmldir)/$$f'"; \ + rm -f "$(DESTDIR)$(xmldir)/$$f"; \ 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 \ @@ -623,6 +520,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -634,10 +532,11 @@ 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 - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -660,10 +559,6 @@ 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'`; \ @@ -677,7 +572,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -695,9 +590,10 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(xmldir) + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(xmldir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -717,7 +613,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -737,6 +633,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -774,14 +672,15 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-tags distdir dvi \ - dvi-am info info-am install install-am install-binPROGRAMS \ - install-data install-data-am install-dist_xmlDATA 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 pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-dist_xmlDATA uninstall-info-am + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am \ + install-dist_xmlDATA 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 pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-binPROGRAMS uninstall-dist_xmlDATA \ + uninstall-info-am %.x2p: %.xhtml