--- epiphany-browser-2.22.0.orig/missing +++ epiphany-browser-2.22.0/missing @@ -1,9 +1,9 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2006-05-10.23 +scriptversion=2005-06-08.21 -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. @@ -33,8 +33,6 @@ fi run=: -sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' -sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. @@ -46,7 +44,7 @@ msg="missing on your system" -case $1 in +case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= @@ -79,7 +77,6 @@ aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' - autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c @@ -109,7 +106,7 @@ # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). -case $1 in +case "$1" in lex|yacc) # Not GNU programs, they don't have --version. ;; @@ -138,7 +135,7 @@ # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case $1 in +case "$1" in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if @@ -167,7 +164,7 @@ test -z "$files" && files="config.h" touch_files= for f in $files; do - case $f in + case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; @@ -195,8 +192,8 @@ You can get \`$1' as part of \`Autoconf' from any GNU archive site." - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` + test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else @@ -217,25 +214,25 @@ in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h - if test $# -ne 1; then + if [ $# -ne 1 ]; then eval LASTARG="\${$#}" - case $LASTARG in + case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` - if test -f "$SRCFILE"; then + if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` - if test -f "$SRCFILE"; then + if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi - if test ! -f y.tab.h; then + if [ ! -f y.tab.h ]; then echo >y.tab.h fi - if test ! -f y.tab.c; then + if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; @@ -247,18 +244,18 @@ in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c - if test $# -ne 1; then + if [ $# -ne 1 ]; then eval LASTARG="\${$#}" - case $LASTARG in + case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` - if test -f "$SRCFILE"; then + if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi - if test ! -f lex.yy.c; then + if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; @@ -270,9 +267,11 @@ \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -f "$file"; then + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` + fi + if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file @@ -290,17 +289,11 @@ DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` - file=`sed -n ' - /^@setfilename/{ - s/.* \([^ ]*\) *$/\1/ - p - q - }' $infile` + file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi @@ -324,13 +317,13 @@ fi firstarg="$1" if shift; then - case $firstarg in + case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac - case $firstarg in + case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 --- epiphany-browser-2.22.0.orig/debian/epiphany-browser-data.dirs +++ epiphany-browser-2.22.0/debian/epiphany-browser-data.dirs @@ -0,0 +1,2 @@ +/etc/gnome/epiphany +/usr --- epiphany-browser-2.22.0.orig/debian/epiphany-webkit.menu +++ epiphany-browser-2.22.0/debian/epiphany-webkit.menu @@ -0,0 +1,6 @@ +?package(epiphany-webkit):needs="x11" \ + section="Applications/Network/Web Browsing" \ + title="Epiphany web browser (Webkit)" \ + longtitle="Epiphany web browser with Webkit backend" \ + command="/usr/bin/epiphany-webkit" \ + hints="Web browsers" --- epiphany-browser-2.22.0.orig/debian/epiphany-browser-data.links +++ epiphany-browser-2.22.0/debian/epiphany-browser-data.links @@ -0,0 +1,2 @@ +/etc/gnome/epiphany/mime-types-permissions.xml /usr/share/epiphany-browser/mime-types-permissions.xml +/etc/gnome/epiphany/default-prefs.js /usr/share/epiphany-browser/default-prefs.js --- epiphany-browser-2.22.0.orig/debian/epiphany-webkit.postinst +++ epiphany-browser-2.22.0/debian/epiphany-webkit.postinst @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +for alt in epiphany-browser x-www-browser gnome-www-browser; do + update-alternatives --install \ + /usr/bin/$alt $alt /usr/bin/epiphany-webkit 80 \ + --slave /usr/share/man/man1/$alt.1.gz $alt.1.gz /usr/share/man/man1/epiphany-webkit.1.gz +done + +#DEBHELPER# + +exit 0 --- epiphany-browser-2.22.0.orig/debian/epiphany-browser.links +++ epiphany-browser-2.22.0/debian/epiphany-browser.links @@ -0,0 +1 @@ +/usr/share/man/man1/epiphany-browser.1.gz /usr/share/man/man1/epiphany.1.gz --- epiphany-browser-2.22.0.orig/debian/control.in +++ epiphany-browser-2.22.0/debian/control.in @@ -0,0 +1,114 @@ +Source: epiphany-browser +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Josselin Mouette +Uploaders: @GNOME_TEAM@ +Build-Depends: debhelper (>= 5), + pkg-config, + libglib2.0-dev (>= 2.13.4), + libgtk2.0-dev (>= 2.11.6), + libxml2-dev (>= 2.6.12), + libxslt1-dev (>= 1.1.7), + libglade2-dev (>= 2.3.1), + libgnome2-dev (>= 2.14.0), + libgnomeui-dev (>= 2.16.0-2), + libgconf2-dev, + libgnome-desktop-dev (>= 2.9.91), + libstartup-notification0-dev (>= 0.5), + libdbus-glib-1-dev (>= 0.60), + scrollkeeper, + gnome-pkg-tools (>= 0.10), + libxml-parser-perl, + xulrunner-1.9-dev (>= 1.9~b3), + iso-codes (>= 0.35), + python-dev (>= 2.3), + python-gtk2-dev (>= 2.7.1), + python-gnome2-dev (>= 2.6.0), + gnome-doc-utils (>= 0.3.2), + intltool (>= 0.35.0), + x11proto-core-dev, + network-manager-dev, + quilt, + libenchant-dev (>= 1.0), + gtk-doc-tools (>= 1.0), + liblaunchpad-integration-dev, + libavahi-gobject-dev +Standards-Version: 3.7.2 + +Package: epiphany-browser +Architecture: all +Depends: epiphany-gecko | epiphany-webkit +Description: Intuitive web browser - dummy package + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This dummy package installs Epiphany with the Gecko backend by default. + +Package: epiphany-gecko +Architecture: any +Depends: epiphany-browser-data (>= ${gnome:Version}), + epiphany-browser-data (<< ${gnome:NextVersion}), + ${shlibs:Depends}, + gnome-icon-theme (>= 2.9.90), + dbus, + iso-codes, + xulrunner-1.9 (>= 1.9~b3~), + ${misc:Depends} +Conflicts: epiphany-browser (<< 2.20.1-2ubuntu1) +Recommends: yelp, epiphany-extensions +Breaks: epiphany-extensions (<< 2.20.1-2ubuntu3) +Suggests: mozplugger +Provides: www-browser, gnome-www-browser +Description: Intuitive GNOME web browser - Gecko version + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. Simplicity is achieved by a well designed user interface and + reliance on external applications for performing external tasks (such as + reading email). Simplicity should not mean less powerful. Standards + compliance is achieved on the HTML side by using the Gecko + rendering engine, as developed for the Mozilla and Firefox browsers; and + on the user interface side by closely following the GNOME Human Interface + Guidelines (HIG) and by close integration with the GNOME desktop. + . + This version uses the Gecko backend to render web pages. + . + Homepage: http://www.gnome.org/projects/epiphany/ + +Package: epiphany-browser-data +Architecture: all +Depends: ${misc:Depends} +Recommends: epiphany-browser +Conflicts: epiphany-browser (<< 2.20.1-2ubuntu1) +Replaces: epiphany-browser (<< 2.20.1-2ubuntu1) +Description: Data files for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package contains the common files, artwork and translations for + Epiphany. + +Package: epiphany-browser-dev +Architecture: all +Section: devel +Depends: epiphany-gecko (>= ${binary:Version}), libgnomeui-dev (>= 2.16.0-2) +Description: Development files for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package is required to develop extensions for Epiphany. + +Package: epiphany-browser-dbg +Architecture: any +Section: gnome +Priority: extra +Depends: epiphany-gecko (= ${binary:Version}) | epiphany-webkit (= ${binary:Version}) +Description: Debugging symbols for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package contains detached debugging symbols. --- epiphany-browser-2.22.0.orig/debian/compat +++ epiphany-browser-2.22.0/debian/compat @@ -0,0 +1 @@ +5 --- epiphany-browser-2.22.0.orig/debian/bug/control +++ epiphany-browser-2.22.0/debian/bug/control @@ -0,0 +1 @@ +report-with: epiphany-gecko epiphany-webkit --- epiphany-browser-2.22.0.orig/debian/epiphany.sh +++ epiphany-browser-2.22.0/debian/epiphany.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +exec epiphany-browser "$@" --- epiphany-browser-2.22.0.orig/debian/epiphany-browser-data.docs +++ epiphany-browser-2.22.0/debian/epiphany-browser-data.docs @@ -0,0 +1,4 @@ +NEWS +README +TODO +AUTHORS --- epiphany-browser-2.22.0.orig/debian/patches/03_dbus.patch +++ epiphany-browser-2.22.0/debian/patches/03_dbus.patch @@ -0,0 +1,23 @@ +Index: epiphany-2.20.0/src/ephy-main.c +=================================================================== +--- epiphany-2.20.0.orig/src/ephy-main.c 2007-09-21 14:46:15.134076289 +0200 ++++ epiphany-2.20.0/src/ephy-main.c 2007-09-21 14:47:40.806958509 +0200 +@@ -624,11 +624,13 @@ + + if (!_ephy_dbus_startup (!private_instance, &error)) + { +- _ephy_dbus_release (); +- +- show_error_message (&error); +- +- exit (1); ++ GtkWidget *dialog = gtk_message_dialog_new (NULL, 0, ++ GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, ++ "Epiphany could not connect to the session message bus. " ++ "Your default settings will not be available."); ++ gtk_dialog_run (GTK_DIALOG (dialog)); ++ gtk_widget_destroy (dialog); ++ private_instance = TRUE; + } + + /* If we're remoting, no need to start up any further services, --- epiphany-browser-2.22.0.orig/debian/patches/98_xulrunner1.9.configure.patch +++ epiphany-browser-2.22.0/debian/patches/98_xulrunner1.9.configure.patch @@ -0,0 +1,497 @@ +Index: epiphany-browser-2.21.90/configure.ac +=================================================================== +--- epiphany-browser-2.21.90.orig/configure.ac ++++ epiphany-browser-2.21.90/configure.ac +@@ -229,22 +229,54 @@ + fi + + if test "$gecko_cv_gecko_flavour" != "toolkit"; then + AC_MSG_ERROR(["$gecko_cv_gecko_flavour" flavoured geckos aren't tasty enough!]) + fi + + case "$gecko_cv_gecko" in + xulrunner) min_version=1.8 ;; ++libxul*) min_version=1.9 ;; + *firefox) min_version=1.5 ;; + *) AC_MSG_ERROR([Unsupported gecko "$gecko_cv_gecko"]) ;; + esac + + # Added $gecko_cv_gecko-js for debian xulrunner brokenness +-PKG_CHECK_MODULES([GECKO],[${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies]) ++if test $gecko_cv_gecko != "libxul-embedding" -a $gecko_cv_gecko != "libxul"; then ++ PKG_CHECK_MODULES([GECKO],[ ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies]) ++else ++ GECKO_CFLAGS="$GECKO_CFLAGS -UDEBUG" ++ GECKO_LIBS="$GECKO_LIBS `pkg-config --libs ${gecko_cv_gecko}`" ++fi ++ ++AC_MSG_CHECKING(nspr in gecko) ++if test "$GECKO_NSPR" != yes; then ++ AC_MSG_RESULT(no) ++ AC_MSG_CHECKING(nspr in system) ++ gecko_nspr= ++ if $PKG_CONFIG --exists mozilla-nspr; then ++ gecko_nspr=mozilla-nspr ++ elif $PKG_CONFIG --exists ${gecko_cv_gecko}-nspr; then ++ gecko_nspr=${gecko_cv_gecko}-nspr ++ fi ++ if $PKG_CONFIG --exists nspr; then ++ gecko_nspr=nspr ++ fi ++ if test -z "$gecko_nspr"; then ++ AC_MSG_ERROR([no nspr available]) ++ fi ++ ++ GECKO_CFLAGS="$GECKO_CFLAGS `$PKG_CONFIG --cflags ${gecko_nspr}`" ++ GECKO_LIBS="$GECKO_LIBS `$PKG_CONFIG --libs ${gecko_nspr}`" ++ _GECKO_CFLAGS="$GECKO_CFLAGS" ++ AC_MSG_RESULT(yes) ++else ++ AC_MSG_RESULT(yes) ++fi ++ + AC_SUBST([GECKO_CFLAGS]) + AC_SUBST([GECKO_LIBS]) + + # ***************** + # Weasel UA version + # ***************** + + # FIXMEchpe: find a way to always automatically use the latest weasel minor version! +@@ -558,17 +590,21 @@ + + AC_MSG_CHECKING([whether to build the deskop file plugin]) + AC_ARG_ENABLE([desktop-file-plugin], + AS_HELP_STRING([--disable-desktop-file-plugin],[Disable the desktop file plugin (default: enabled)]), + [],[enable_desktop_file_plugin=yes]) + AC_MSG_RESULT([$enable_desktop_file_plugin]) + + if test "$enable_desktop_file_plugin" = "yes"; then +- PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko}-xpcom ${gecko_cv_gecko}-plugin gtk+-2.0 >= 2.6.0]) ++ if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then ++ PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0]) ++ else ++ PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko}-xpcom ${gecko_cv_gecko}-plugin gtk+-2.0 >= 2.6.0]) ++ fi + AC_SUBST([DESKTOP_FILE_PLUGIN_DEP_CFLAGS]) + AC_SUBST([DESKTOP_FILE_PLUGIN_DEP_LIBS]) + fi + + if test "$enable_desktop_file_plugin" = "yes"; then + AC_DEFINE([HAVE_PRIVATE_PLUGINS],[1],[Define if any private plugins are enabled]) + fi + + +Index: epiphany-browser-2.21.90/m4/gecko.m4 +=================================================================== +--- epiphany-browser-2.21.90.orig/m4/gecko.m4 ++++ epiphany-browser-2.21.90/m4/gecko.m4 +@@ -27,16 +27,17 @@ + # + # Checks whether the gecko build is a debug build, and adds + # debug flags to AM_CXXFLAGS if it is. + # + # Expanded variables: + # VARIABLE: Which gecko was found (e.g. "xulrunnner", "seamonkey", ...) + # VARIABLE_FLAVOUR: The flavour of the gecko that was found + # VARIABLE_HOME: ++# VARIABLE_NSPR: set if nspr is provided by gecko flags + # VARIABLE_PREFIX: + # VARIABLE_INCLUDE_ROOT: + # VARIABLE_VERSION: The version of the gecko that was found + # VARIABLE_VERSION: + # VARIABLE_VERSION_INT: + + AC_DEFUN([GECKO_INIT], + [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +@@ -46,77 +47,101 @@ + + # ************************ + # Check which gecko to use + # ************************ + + AC_MSG_CHECKING([which gecko to use]) + + AC_ARG_WITH([gecko], +- AS_HELP_STRING([--with-gecko@<:@=mozilla|firefox|seamonkey|xulrunner@:>@], ++ AS_HELP_STRING([--with-gecko@<:@=mozilla|firefox|seamonkey|xulrunner|libxul-embedding|libxul@:>@], + [Which gecko engine to use (autodetected by default)])) + + # Backward compat + AC_ARG_WITH([mozilla],[],[with_gecko=$withval],[]) + + gecko_cv_gecko=$with_gecko + + # Autodetect gecko +-_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla" ++_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla libxul-embedding libxul" + if test -z "$gecko_cv_gecko"; then + for lizard in $_geckos; do + if $PKG_CONFIG --exists $lizard-xpcom; then + gecko_cv_gecko=$lizard + break; ++ elif $PKG_CONFIG --exists $lizard-unstable; then ++ gecko_cv_gecko=$lizard ++ break; + fi + done + fi + + AC_MSG_RESULT([$gecko_cv_gecko]) + + if test "x$gecko_cv_gecko" = "x"; then + ifelse([$3],,[AC_MSG_ERROR([No gecko found; you may need to adjust PKG_CONFIG_PATH or install a mozilla/firefox/xulrunner -devel package])],[$3]) + gecko_cv_have_gecko=no + elif ! ( echo "$_geckos" | egrep "(^| )$gecko_cv_gecko(\$| )" > /dev/null); then + AC_MSG_ERROR([Unknown gecko "$gecko_cv_gecko" specified]) + else + ifelse([$2],,[],[$2]) + gecko_cv_have_gecko=yes + fi + ++AC_MSG_CHECKING([manual gecko home set]) ++ ++AC_ARG_WITH([gecko-home], ++ AS_HELP_STRING([--with-gecko-home@<:@=[path]@:>@], ++ [Manually set MOZILLA_FIVE_HOME])) ++ ++gecko_cv_gecko_home=$with_gecko_home ++ + # **************** + # Define variables + # **************** + + if test "$gecko_cv_have_gecko" = "yes"; then + + case "$gecko_cv_gecko" in + mozilla) gecko_cv_gecko_flavour=mozilla ;; + seamonkey) gecko_cv_gecko_flavour=mozilla ;; + *firefox) gecko_cv_gecko_flavour=toolkit ;; + xulrunner) gecko_cv_gecko_flavour=toolkit ;; ++libxul*) gecko_cv_gecko_flavour=toolkit ;; + esac + +-_GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" +-_GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" +-_GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" +-_GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" +- ++if $PKG_CONFIG --exists ${gecko_cv_gecko}-xpcom; then ++ _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" ++ _GECKO_CFLAGS="-I$_GECKO_INCLUDE_ROOT" ++ _GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" ++ _GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" ++ _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" ++ _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test ++else ++ _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}`/unstable" ++ _GECKO_CFLAGS="`$PKG_CONFIG --cflags ${gecko_cv_gecko}` `$PKG_CONFIG --cflags ${gecko_cv_gecko}-unstable`" ++ _GECKO_LIBDIR="`$PKG_CONFIG --variable=sdkdir ${gecko_cv_gecko}`/bin" ++ _GECKO_HOME=$with_gecko_home ++ _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}`" ++ _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test ++fi + fi # if gecko_cv_have_gecko + + if test "$gecko_cv_gecko_flavour" = "toolkit"; then + AC_DEFINE([HAVE_MOZILLA_TOOLKIT],[1],[Define if mozilla is of the toolkit flavour]) + fi + + $1[]=$gecko_cv_gecko + $1[]_FLAVOUR=$gecko_cv_gecko_flavour + $1[]_INCLUDE_ROOT=$_GECKO_INCLUDE_ROOT ++$1[]_CFLAGS=$_GECKO_CFLAGS + $1[]_LIBDIR=$_GECKO_LIBDIR + $1[]_HOME=$_GECKO_HOME + $1[]_PREFIX=$_GECKO_PREFIX ++$1[]_NSPR=$_GECKO_NSPR + + # ************************************************************** + # This is really gcc-only + # Do this test using CXX only since some versions of gcc + # 2.95-2.97 have a signed wchar_t in c++ only and some versions + # only have short-wchar support for c++. + # ************************************************************** + +@@ -177,17 +202,17 @@ + # Various tests + # ************* + + if test "$gecko_cv_have_gecko" = "yes"; then + + AC_LANG_PUSH([C++]) + + _SAVE_CPPFLAGS="$CPPFLAGS" +-CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT" ++CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS" + + AC_MSG_CHECKING([[whether we have a gtk 2 gecko build]]) + AC_RUN_IFELSE( + [AC_LANG_SOURCE( + [[#include + #include + #include + int main(void) { +@@ -210,40 +235,58 @@ + #if !defined(MOZ_REFLOW_PERF) || !defined(MOZ_REFLOW_PERF_DSP) + #error No + #endif]] + )], + [gecko_cv_have_debug=yes], + [gecko_cv_have_debug=no]) + AC_MSG_RESULT([$gecko_cv_have_debug]) + ++AC_MSG_CHECKING([[whether we have a xpcom glue]]) ++AC_COMPILE_IFELSE( ++ [AC_LANG_SOURCE( ++ [[ ++ #ifndef XPCOM_GLUE ++ #error "no xpcom glue found" ++ #endif]] ++ )], ++ [gecko_cv_have_xpcom_glue=yes], ++ [gecko_cv_have_xpcom_glue=no]) ++AC_MSG_RESULT([$gecko_cv_have_xpcom_glue]) ++ + CPPFLAGS="$_SAVE_CPPFLAGS" + + AC_LANG_POP([C++]) + + if test "$gecko_cv_have_debug" = "yes"; then + _GECKO_EXTRA_CXXFLAGS="$_GECKO_EXTRA_CXXFLAGS -DDEBUG -D_DEBUG" + AM_CXXFLAGS="-DDEBUG -D_DEBUG $AM_CXXFLAGS" + + AC_DEFINE([HAVE_GECKO_DEBUG],[1],[Define if gecko is a debug build]) + fi + ++if test "$gecko_cv_have_xpcom_glue" = "yes"; then ++ AC_DEFINE([HAVE_GECKO_XPCOM_GLUE],[1],[Define if xpcom glue is used]) ++fi ++ + fi # if gecko_cv_have_gecko + ++AM_CONDITIONAL([HAVE_GECKO_DEBUG],[test "$gecko_cv_have_debug" = "yes"]) ++AM_CONDITIONAL([HAVE_GECKO_XPCOM_GLUE],[test "$gecko_cv_have_xpcom_glue" = "yes"]) + + # *********************** + # Check for gecko version + # *********************** + + if test "$gecko_cv_have_gecko" = "yes"; then + + AC_LANG_PUSH([C++]) + + _SAVE_CPPFLAGS="$CPPFLAGS" +-CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT" ++CPPFLAGS="$CPPFLAGS $_GECKO_CFLAGS" + + AC_CACHE_CHECK([for gecko version], + [gecko_cv_gecko_version], + [AC_RUN_IFELSE( + [AC_LANG_PROGRAM([[ + #include + #include + #include +@@ -315,18 +358,21 @@ + # Packages that we need to check for with pkg-config + # ************************************************** + + gecko_cv_extra_libs= + gecko_cv_glue_libs= + gecko_cv_extra_pkg_dependencies= + + if test "$gecko_cv_gecko_version_int" -ge "1009000"; then +- gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" +- gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue_s" ++ if ! test "$gecko_cv_have_xpcom_glue" = "yes"; then ++ gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" ++ else ++ gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue" ++ fi + else + gecko_cv_extra_pkg_dependencies="${gecko_cv_gecko}-gtkmozembed" + fi + + $1[]_EXTRA_PKG_DEPENDENCIES="$gecko_cv_extra_pkg_dependencies" + $1[]_EXTRA_LIBS="$gecko_cv_extra_libs" + $1[]_GLUE_LIBS="$gecko_cv_glue_libs" + +@@ -345,16 +391,17 @@ + gecko_cv_gecko_version_int=0 + fi + AM_CONDITIONAL([HAVE_MOZILLA_TOOLKIT],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_flavour" = "toolkit"]) + AM_CONDITIONAL([HAVE_GECKO_DEBUG],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_have_debug" = "yes"]) + AM_CONDITIONAL([HAVE_GECKO_1_7],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1007000"]) + AM_CONDITIONAL([HAVE_GECKO_1_8],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008000"]) + AM_CONDITIONAL([HAVE_GECKO_1_8_1],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008001"]) + AM_CONDITIONAL([HAVE_GECKO_1_9],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1009000"]) ++AM_CONDITIONAL([HAVE_GECKO_HOME],[test "x$_GECKO_HOME" != "x"]) + ]) + + # *************************************************************************** + # *************************************************************************** + # *************************************************************************** + + # _GECKO_DISPATCH(MACRO, INCLUDEDIRS, ...) + +@@ -366,31 +413,43 @@ + fi + + AC_LANG_PUSH([C++]) + + _SAVE_CPPFLAGS="$CPPFLAGS" + _SAVE_CXXFLAGS="$CXXFLAGS" + _SAVE_LDFLAGS="$LDFLAGS" + _SAVE_LIBS="$LIBS" +-CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" +-CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" +-LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +-LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" ++if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then ++ CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" ++ CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" ++ LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" ++else ++ CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" ++ CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" ++ LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" ++fi ++if test -n "$_GECKO_HOME"; then ++ LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" ++else ++ LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" ++fi + + _GECKO_DISPATCH_INCLUDEDIRS="$2" + + # Sigh Gentoo has a rubbish header layout + # http://bugs.gentoo.org/show_bug.cgi?id=100804 + # Mind you, it's useful to be able to test against uninstalled mozilla builds... + _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" + +-# Now add them to CPPFLAGS ++# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. + for i in $_GECKO_DISPATCH_INCLUDEDIRS; do +- CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" ++ if test -d "$_GECKO_INCLUDE_ROOT/$i"; then ++ CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" ++ fi + done + + m4_indir([$1],m4_shiftn(2,$@)) + + CPPFLAGS="$_SAVE_CPPFLAGS" + CXXFLAGS="$_SAVE_CXXFLAGS" + LDFLAGS="$_SAVE_LDFLAGS" + LIBS="$_SAVE_LIBS" +@@ -433,38 +492,65 @@ + # + # To jump out of the BODY and exit the test program, you can use |break|. + + AC_DEFUN([GECKO_XPCOM_PROGRAM], + [AC_LANG_PROGRAM([[ + #include + #include + #include ++ ++#ifdef XPCOM_GLUE ++#include ++#else + #include ++#endif // XPCOM_GLUE ++ + #include + #include + #include +-#ifdef HAVE_GECKO_1_8 ++#if defined(HAVE_GECKO_1_8) || defined(HAVE_GECKO_1_9) + #include + #else + #include + #endif + ]] + [$1], + [[ ++ ++nsresult rv; ++#ifdef XPCOM_GLUE ++ static const GREVersionRange greVersion = { ++ "1.8", PR_TRUE, ++ "1.9.*", PR_TRUE ++ }; ++ char xpcomLocation[4096]; ++ rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); ++ if (NS_FAILED(rv)) { ++ exit(123); ++ } ++ ++ // Startup the XPCOM Glue that links us up with XPCOM. ++ XPCOMGlueStartup(xpcomLocation); ++ if (NS_FAILED(rv)) { ++ exit(124); ++ } ++#endif // XPCOM_GLUE ++ + // redirect unwanted mozilla debug output to the bit bucket + freopen ("/dev/null", "w", stdout); + +-nsresult rv; +-nsCOMPtr directory; ++nsCOMPtr directory = nsnull; ++#ifndef XPCOM_GLUE + rv = NS_NewNativeLocalFile (NS_LITERAL_CSTRING("$_GECKO_HOME"), PR_FALSE, + getter_AddRefs (directory)); + if (NS_FAILED (rv) || !directory) { + exit (126); + } ++#endif + + rv = NS_InitXPCOM2 (nsnull, directory, nsnull); + if (NS_FAILED (rv)) { + exit (125); + } + + int status = EXIT_FAILURE; + +@@ -602,31 +688,32 @@ + # + # Variables set: + # XPIDL: the xpidl program + # XPIDL_IDLDIR: the xpidl include directory + + AC_DEFUN([GECKO_XPIDL], + [AC_REQUIRE([GECKO_INIT])dnl + +-_GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" ++if test ${gecko_cv_gecko} = "libxul-embedding" -o ${gecko_cv_gecko} = "libxul"; then ++ _GECKO_LIBDIR="`$PKG_CONFIG pkg-config --variable=sdkdir ${gecko_cv_gecko}`/bin" ++else ++ _GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" ++fi + + AC_PATH_PROG([XPIDL],[xpidl],[no],[$_GECKO_LIBDIR:$PATH]) + ++if test ${gecko_cv_gecko} = "libxul-embedding" -o ${gecko_cv_gecko} = "libxul"; then ++XPIDL_IDLDIR="`$PKG_CONFIG --variable=idldir ${gecko_cv_gecko}`" ++else + XPIDL_IDLDIR="`$PKG_CONFIG --variable=idldir ${gecko_cv_gecko}-xpcom`" +- +-# Older geckos don't have this variable, see +-# https://bugzilla.mozilla.org/show_bug.cgi?id=240473 +- + if test -z "$XPIDL_IDLDIR" -o ! -f "$XPIDL_IDLDIR/nsISupports.idl"; then + XPIDL_IDLDIR="`echo $_GECKO_LIBDIR | sed -e s!lib!share/idl!`" + fi +- + # Some distributions (Gentoo) have it in unusual places +- + if test -z "$XPIDL_IDLDIR" -o ! -f "$XPIDL_IDLDIR/nsISupports.idl"; then + XPIDL_IDLDIR="$_GECKO_INCLUDE_ROOT/idl" + fi + + if test "$XPIDL" != "no" -a -n "$XPIDL_IDLDIR" -a -f "$XPIDL_IDLDIR/nsISupports.idl"; then + ifelse([$1],,[:],[$1]) + else + ifelse([$2],,[AC_MSG_FAILURE([XPIDL program or include directory not found])],[$2]) + + --- epiphany-browser-2.22.0.orig/debian/patches/08_localized_startup_page.patch +++ epiphany-browser-2.22.0/debian/patches/08_localized_startup_page.patch @@ -0,0 +1,212 @@ +Index: epiphany-browser-2.21.4/src/ephy-home-action.c +=================================================================== +--- epiphany-browser-2.21.4.orig/src/ephy-home-action.c 2007-09-12 20:35:23.000000000 +0200 ++++ epiphany-browser-2.21.4/src/ephy-home-action.c 2007-12-17 10:49:07.000000000 +0100 +@@ -156,16 +156,95 @@ + } + } + ++static char * ++escape_homepage (char *homepage, char *languages) ++{ ++ const char *inptr, *start; ++ GString *page; ++ ++ languages = g_strdelimit (languages, ".@:", '\0'); ++ ++ page = g_string_new (NULL); ++ ++ start = inptr = homepage; ++ while ((inptr = strchr (inptr, '%')) != NULL) { ++ g_string_append_len (page, start, inptr - start); ++ inptr++; ++ switch (*inptr) { ++ case 'l': ++ g_string_append (page, languages); ++ break; ++ case '%': ++ g_string_append_c (page, '%'); ++ break; ++ default: ++ g_string_append_c (page, '%'); ++ if (*inptr) ++ g_string_append_c (page, *inptr); ++ break; ++ } ++ ++ if (*inptr) ++ inptr++; ++ start = inptr; ++ } ++ ++ g_string_append (page, start); ++ ++ return g_string_free (page, FALSE); ++} ++ + static void + ephy_home_action_activate (GtkAction *action) + { + char *action_name; + char *address; ++ const char * const * languages; ++ char *homepage; + + g_object_get (G_OBJECT (action), "name", &action_name, NULL); + + address = eel_gconf_get_string (CONF_GENERAL_HOMEPAGE); + ++ if (address != NULL && address[0] != '\0' && (*address == '/' || !strncmp(address, "file://", 7))) ++ { ++ languages = g_get_language_names (); ++ if (languages) ++ { ++ int i; ++ gboolean page_set = FALSE; ++ ++ for (i = 0; languages[i] != NULL; i++) ++ { ++ if (page_set) ++ break; ++ ++ homepage = escape_homepage (address, languages[i]); ++ ++ if (!strncmp(address, "file://", 7)) ++ { ++ char *path; ++ path = homepage + 7; ++ ++ if (g_file_test (path, G_FILE_TEST_EXISTS)) ++ page_set = TRUE; ++ ++ } ++ else if (g_file_test (homepage, G_FILE_TEST_EXISTS)) ++ page_set = TRUE; ++ } ++ ++ if (!page_set) ++ homepage = escape_homepage (address, "C"); ++ } ++ else ++ homepage = escape_homepage (address, "C"); ++ ++ g_free (address); ++ address = g_strdup (homepage); ++ g_free (homepage); ++ } ++ + action_name_association (action, action_name, address, FALSE); + + g_free (address); +Index: epiphany-browser-2.21.4/src/ephy-shell.c +=================================================================== +--- epiphany-browser-2.21.4.orig/src/ephy-shell.c 2007-11-16 16:09:42.000000000 +0100 ++++ epiphany-browser-2.21.4/src/ephy-shell.c 2007-12-17 10:46:49.000000000 +0100 +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + + #include "ephy-shell.h" + #include "ephy-type-builtins.h" +@@ -394,6 +395,44 @@ + return ephy_shell; + } + ++static char * ++escape_homepage (char *homepage, char *languages) ++{ ++ const char *inptr, *start; ++ GString *page; ++ ++ languages = g_strdelimit (languages, ".@:", '\0'); ++ ++ page = g_string_new (NULL); ++ ++ start = inptr = homepage; ++ while ((inptr = strchr (inptr, '%')) != NULL) { ++ g_string_append_len (page, start, inptr - start); ++ inptr++; ++ switch (*inptr) { ++ case 'l': ++ g_string_append (page, languages); ++ break; ++ case '%': ++ g_string_append_c (page, '%'); ++ break; ++ default: ++ g_string_append_c (page, '%'); ++ if (*inptr) ++ g_string_append_c (page, *inptr); ++ break; ++ } ++ ++ if (*inptr) ++ inptr++; ++ start = inptr; ++ } ++ ++ g_string_append (page, start); ++ ++ return g_string_free (page, FALSE); ++} ++ + static gboolean + url_is_empty (const char *location) + { +@@ -411,7 +450,8 @@ + static gboolean + load_homepage (EphyEmbed *embed) + { +- char *home; ++ const char * const * languages; ++ char *homepage, *home; + gboolean is_empty; + + home = eel_gconf_get_string(CONF_GENERAL_HOMEPAGE); +@@ -422,6 +462,44 @@ + + home = g_strdup ("about:blank"); + } ++ else if (*home == '/' || !strncmp(home, "file://", 7)) ++ { ++ languages = g_get_language_names (); ++ if (languages) ++ { ++ int i; ++ gboolean page_set = FALSE; ++ ++ for (i = 0; languages[i] != NULL; i++) ++ { ++ if (page_set) ++ break; ++ ++ homepage = escape_homepage (home, languages[i]); ++ ++ if (!strncmp(home, "file://", 7)) ++ { ++ char *path; ++ path = homepage + 7; ++ ++ if (g_file_test (path, G_FILE_TEST_EXISTS)) ++ page_set = TRUE; ++ ++ } ++ else if (g_file_test (homepage, G_FILE_TEST_EXISTS)) ++ page_set = TRUE; ++ } ++ ++ if (!page_set) ++ homepage = escape_homepage (home, "C"); ++ } ++ else ++ homepage = escape_homepage (home, "C"); ++ ++ g_free (home); ++ home = g_strdup (homepage); ++ g_free (homepage); ++ } + + is_empty = url_is_empty (home); + --- epiphany-browser-2.22.0.orig/debian/patches/05_libexecdir.patch +++ epiphany-browser-2.22.0/debian/patches/05_libexecdir.patch @@ -0,0 +1,142 @@ +Index: epiphany-2.20.0/data/epiphany.pc.in +=================================================================== +--- epiphany-2.20.0.orig/data/epiphany.pc.in 2007-09-21 14:41:49.966965277 +0200 ++++ epiphany-2.20.0/data/epiphany.pc.in 2007-09-21 14:45:51.976756629 +0200 +@@ -2,8 +2,8 @@ + exec_prefix=@exec_prefix@ + libdir=@libdir@ + includedir=@includedir@/epiphany/@EPIPHANY_MAJOR@ +-extensionsdir=@libdir@/epiphany/@EPIPHANY_MAJOR@/extensions +-loaderdir=@libdir@/epiphany/@EPIPHANY_MAJOR@/loaders ++extensionsdir=@libexecdir@/@EPIPHANY_MAJOR@/extensions ++loaderdir=@libexecdir@/@EPIPHANY_MAJOR@/loaders + datarootdir=@datarootdir@ + datadir=@datadir@ + icondir=@datadir@/@PACKAGE@/icons +Index: epiphany-2.20.0/embed/mozilla/Makefile.am +=================================================================== +--- epiphany-2.20.0.orig/embed/mozilla/Makefile.am 2007-09-21 14:41:35.286128664 +0200 ++++ epiphany-2.20.0/embed/mozilla/Makefile.am 2007-09-21 14:44:45.804985715 +0200 +@@ -141,7 +141,7 @@ + -I$(top_srcdir) \ + $(addprefix -I$(GECKO_INCLUDE_ROOT)/,$(mozilla_include_subdirs)) \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ +- -DPLUGINDIR=\"$(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins\" \ ++ -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ + -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ + -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ + -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ +Index: epiphany-2.20.0/embed/mozilla/Makefile.in +=================================================================== +--- epiphany-2.20.0.orig/embed/mozilla/Makefile.in 2007-09-21 14:41:35.326130943 +0200 ++++ epiphany-2.20.0/embed/mozilla/Makefile.in 2007-09-21 14:44:45.816986398 +0200 +@@ -461,7 +461,7 @@ + -I$(top_srcdir) \ + $(addprefix -I$(GECKO_INCLUDE_ROOT)/,$(mozilla_include_subdirs)) \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ +- -DPLUGINDIR=\"$(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins\" \ ++ -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ + -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ + -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ + -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ +Index: epiphany-2.20.0/lib/Makefile.am +=================================================================== +--- epiphany-2.20.0.orig/lib/Makefile.am 2007-09-21 14:41:42.814557684 +0200 ++++ epiphany-2.20.0/lib/Makefile.am 2007-09-21 14:44:45.816986398 +0200 +@@ -76,7 +76,7 @@ + libephymisc_la_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ +- -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ ++ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ + $(AM_CPPFLAGS) + + libephymisc_la_CFLAGS = \ +Index: epiphany-2.20.0/lib/Makefile.in +=================================================================== +--- epiphany-2.20.0.orig/lib/Makefile.in 2007-09-21 14:41:42.854559964 +0200 ++++ epiphany-2.20.0/lib/Makefile.in 2007-09-21 14:44:45.828987082 +0200 +@@ -409,7 +409,7 @@ + libephymisc_la_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ +- -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ ++ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ + $(AM_CPPFLAGS) + + libephymisc_la_CFLAGS = $(DEPENDENCIES_CFLAGS) $(AM_CFLAGS) \ +Index: epiphany-2.20.0/plugins/desktop-file/Makefile.am +=================================================================== +--- epiphany-2.20.0.orig/plugins/desktop-file/Makefile.am 2007-09-21 14:41:24.741527761 +0200 ++++ epiphany-2.20.0/plugins/desktop-file/Makefile.am 2007-09-21 14:44:45.800985487 +0200 +@@ -1,4 +1,4 @@ +-plugindir = $(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins ++plugindir = $(libexecdir)/$(EPIPHANY_MAJOR)/plugins + plugin_LTLIBRARIES = libdesktopfileplugin.la + + libdesktopfileplugin_la_SOURCES = \ +Index: epiphany-2.20.0/plugins/desktop-file/Makefile.in +=================================================================== +--- epiphany-2.20.0.orig/plugins/desktop-file/Makefile.in 2007-09-21 14:41:24.781530041 +0200 ++++ epiphany-2.20.0/plugins/desktop-file/Makefile.in 2007-09-21 14:44:45.804985715 +0200 +@@ -295,7 +295,7 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + with_engine = @with_engine@ +-plugindir = $(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins ++plugindir = $(libexecdir)/$(EPIPHANY_MAJOR)/plugins + plugin_LTLIBRARIES = libdesktopfileplugin.la + libdesktopfileplugin_la_SOURCES = \ + plugin.cpp +Index: epiphany-2.20.0/src/Makefile.am +=================================================================== +--- epiphany-2.20.0.orig/src/Makefile.am 2007-09-21 14:41:15.096978150 +0200 ++++ epiphany-2.20.0/src/Makefile.am 2007-09-21 14:44:45.784984575 +0200 +@@ -112,8 +112,8 @@ + -I$(top_srcdir)/lib/egg \ + -I$(top_srcdir)/lib/widgets \ + -I$(top_srcdir)/src/bookmarks \ +- -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ +- -DLOADER_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/loaders"\" \ ++ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ ++ -DLOADER_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/loaders"\" \ + -DDATADIR=\""$(pkgdatadir)"\" \ + -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + $(AM_CPPFLAGS) +@@ -164,8 +164,8 @@ + -I$(top_builddir)/src \ + -I$(top_builddir)/src/bookmarks \ + $(PYTHON_INCLUDES) \ +- -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ +- -DLOADER_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/loaders"\" \ ++ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ ++ -DLOADER_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/loaders"\" \ + -DDATADIR=\""$(datadir)"\" \ + $(AM_CPPFLAGS) + +Index: epiphany-2.20.0/src/Makefile.in +=================================================================== +--- epiphany-2.20.0.orig/src/Makefile.in 2007-09-21 14:41:15.132980201 +0200 ++++ epiphany-2.20.0/src/Makefile.in 2007-09-21 14:44:45.800985487 +0200 +@@ -521,8 +521,8 @@ + -I$(top_srcdir)/lib/egg \ + -I$(top_srcdir)/lib/widgets \ + -I$(top_srcdir)/src/bookmarks \ +- -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ +- -DLOADER_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/loaders"\" \ ++ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ ++ -DLOADER_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/loaders"\" \ + -DDATADIR=\""$(pkgdatadir)"\" \ + -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + $(AM_CPPFLAGS) +@@ -560,8 +560,8 @@ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/src \ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/src/bookmarks \ + @ENABLE_PYTHON_TRUE@ $(PYTHON_INCLUDES) \ +-@ENABLE_PYTHON_TRUE@ -DEXTENSIONS_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/extensions"\" \ +-@ENABLE_PYTHON_TRUE@ -DLOADER_DIR=\""$(libdir)/epiphany/$(EPIPHANY_MAJOR)/loaders"\" \ ++@ENABLE_PYTHON_TRUE@ -DEXTENSIONS_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/extensions"\" \ ++@ENABLE_PYTHON_TRUE@ -DLOADER_DIR=\""$(libexecdir)/$(EPIPHANY_MAJOR)/loaders"\" \ + @ENABLE_PYTHON_TRUE@ -DDATADIR=\""$(datadir)"\" \ + @ENABLE_PYTHON_TRUE@ $(AM_CPPFLAGS) + --- epiphany-browser-2.22.0.orig/debian/patches/10_url_double-click.patch +++ epiphany-browser-2.22.0/debian/patches/10_url_double-click.patch @@ -0,0 +1,32 @@ +Index: epiphany-2.20.0/lib/widgets/ephy-location-entry.c +=================================================================== +--- epiphany-2.20.0.orig/lib/widgets/ephy-location-entry.c 2007-08-27 22:19:00.000000000 +0200 ++++ epiphany-2.20.0/lib/widgets/ephy-location-entry.c 2007-09-21 14:30:14.987360646 +0200 +@@ -353,18 +353,6 @@ + } + + static gboolean +-entry_button_press_cb (GtkWidget *entry, GdkEventButton *event, EphyLocationEntry *le) +-{ +- if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) +- { +- ephy_location_entry_activate (le); +- return TRUE; +- } +- +- return FALSE; +-} +- +-static gboolean + entry_key_press_cb (GtkEntry *entry, + GdkEventKey *event, + EphyLocationEntry *lentry) +@@ -923,8 +911,6 @@ + G_CALLBACK (entry_key_press_after_cb), entry); + g_signal_connect_after (priv->icon_entry->entry, "activate", + G_CALLBACK (entry_activate_after_cb), entry); +- g_signal_connect (priv->icon_entry->entry, "button-press-event", +- G_CALLBACK (entry_button_press_cb), entry); + g_signal_connect (priv->icon_entry->entry, "changed", + G_CALLBACK (editable_changed_cb), entry); + g_signal_connect (priv->icon_entry->entry, "drag-motion", --- epiphany-browser-2.22.0.orig/debian/patches/02_ac_init.patch +++ epiphany-browser-2.22.0/debian/patches/02_ac_init.patch @@ -0,0 +1,13 @@ +Index: epiphany-browser-2.21.4/configure.ac +=================================================================== +--- epiphany-browser-2.21.4.orig/configure.ac 2007-12-16 14:25:57.000000000 +0100 ++++ epiphany-browser-2.21.4/configure.ac 2007-12-17 10:43:57.000000000 +0100 +@@ -24,7 +24,7 @@ + # This can be either "trunk" or "branches/gnome-x-y" + m4_define([epiphany_branch],["trunk"]) + +-AC_INIT([GNOME Web Browser],[epiphany_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany]) ++AC_INIT([GNOME Web Browser],[epiphany_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany-browser]) + + GNOME_COMMON_INIT + --- epiphany-browser-2.22.0.orig/debian/patches/06_lpi.patch +++ epiphany-browser-2.22.0/debian/patches/06_lpi.patch @@ -0,0 +1,45 @@ +diff -Nur epiphany-browser-2.15.4/configure.ac epiphany-browser-2.15.4.new/configure.ac +--- epiphany-browser-2.15.4/configure.ac 2006-07-11 10:32:09.000000000 +0200 ++++ epiphany-browser-2.15.4.new/configure.ac 2006-07-11 10:32:36.000000000 +0200 +@@ -95,6 +95,7 @@ + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED + gnome-vfs-module-2.0 +diff -Nur epiphany-browser-2.15.4/data/ui/epiphany-ui.xml epiphany-browser-2.15.4.new/data/ui/epiphany-ui.xml +--- epiphany-browser-2.15.4/data/ui/epiphany-ui.xml 2006-05-05 19:27:30.000000000 +0200 ++++ epiphany-browser-2.15.4.new/data/ui/epiphany-ui.xml 2006-07-11 10:32:17.000000000 +0200 +@@ -101,6 +101,9 @@ + + + ++ ++ ++ + + + +diff -Nur epiphany-browser-2.15.4/src/ephy-window.c epiphany-browser-2.15.4.new/src/ephy-window.c +--- epiphany-browser-2.15.4/src/ephy-window.c 2006-07-10 21:28:01.000000000 +0200 ++++ epiphany-browser-2.15.4.new/src/ephy-window.c 2006-07-11 10:32:17.000000000 +0200 +@@ -66,6 +66,7 @@ + #include + #include + #include ++#include + + #ifdef HAVE_X11_XF86KEYSYM_H + #include +@@ -3125,6 +3126,9 @@ + } + #endif + ++ launchpad_integration_add_ui (window->priv->manager, ++ "ui/menubar/HelpMenu/LaunchpadItems"); ++ + /* Initialize the menus */ + priv->tabs_menu = ephy_tabs_menu_new (window); + priv->enc_menu = ephy_encoding_menu_new (window); --- epiphany-browser-2.22.0.orig/debian/patches/08_load_on_new_tab.patch +++ epiphany-browser-2.22.0/debian/patches/08_load_on_new_tab.patch @@ -0,0 +1,90 @@ +Index: epiphany-browser-2.18.0/data/epiphany.schemas.in +=================================================================== +--- epiphany-browser-2.18.0.orig/data/epiphany.schemas.in 2007-03-06 12:31:58.000000000 +0000 ++++ epiphany-browser-2.18.0/data/epiphany.schemas.in 2007-03-11 21:01:46.000000000 +0000 +@@ -168,6 +168,21 @@ + + + ++ /schemas/apps/epiphany/general/load_on_new_tab ++ /apps/epiphany/general/load_on_new_tab ++ epiphany ++ int ++ 1 ++ ++ Page to open when opening a new tab ++ Page to open when opening a new tab. Allowed values are -1 ++ (browser startup page), 0 (blank page), 1 (homepage), 2 (last visited ++ page), as defined for mozilla's browser.tab.loadOnNewTab about:config ++ option. Both -1 and 1 are implemented the same way; 2 is not ++ implemented. ++ ++ ++ + /schemas/apps/epiphany/general/show_bookmarks_bar + /apps/epiphany/general/show_bookmarks_bar + epiphany +Index: epiphany-browser-2.18.0/lib/ephy-prefs.h +=================================================================== +--- epiphany-browser-2.18.0.orig/lib/ephy-prefs.h 2007-03-06 12:31:55.000000000 +0000 ++++ epiphany-browser-2.18.0/lib/ephy-prefs.h 2007-03-11 21:01:46.000000000 +0000 +@@ -37,6 +37,7 @@ + #define CONF_AUTO_DOWNLOADS "/apps/epiphany/general/automatic_downloads" + #define CONF_DESKTOP_IS_HOME_DIR "/apps/nautilus/preferences/desktop_is_home_dir" + #define CONF_NETWORK_MANAGED "/apps/epiphany/general/managed_network" ++#define CONF_BROWSER_TABS_LOADONNEWTAB "/apps/epiphany/general/load_on_new_tab" + + /* i18n pref */ + #define CONF_GECKO_ENABLE_PANGO "/apps/epiphany/web/enable_pango" +Index: epiphany-browser-2.18.0/src/ephy-shell.c +=================================================================== +--- epiphany-browser-2.18.0.orig/src/ephy-shell.c 2007-03-06 12:31:28.000000000 +0000 ++++ epiphany-browser-2.18.0/src/ephy-shell.c 2007-03-11 21:01:46.000000000 +0000 +@@ -530,14 +530,45 @@ + gtk_window_fullscreen (GTK_WINDOW (window)); + } + +- if (flags & EPHY_NEW_TAB_HOME_PAGE || +- flags & EPHY_NEW_TAB_NEW_PAGE) ++ if (flags & EPHY_NEW_TAB_HOME_PAGE) + { + ephy_tab_set_typed_address (tab, "", + EPHY_TAB_ADDRESS_EXPIRE_NEXT); + ephy_toolbar_activate_location (toolbar); + is_empty = load_homepage (embed); + } ++ else if (flags & EPHY_NEW_TAB_NEW_PAGE) ++ { ++ /* Simulate mozilla's browser.tabs.loadOnNewTab option through ++ * a gconf option. ++ * ++ * Documentation at: http://kb.mozillazine.org/About:config_entries ++ * ++ * To ensure that no blank page is displayed by default, this key ++ * is set to 1 by default in the schema (see data/epiphany.schema.in) ++ */ ++ int load_on_new_tab = eel_gconf_get_integer (CONF_BROWSER_TABS_LOADONNEWTAB); ++ ++ switch (load_on_new_tab) ++ { ++ case 0: /* Blank page */ ++ ephy_embed_load_url (embed, "about:blank"); ++ is_empty = url_is_empty ("about:blank"); ++ break; ++ ++ case 2: /* Last visited */ ++ /* NOT IMPLEMENTED */ ++ ++ case -1: /* Start-up page */ ++ case 1: /* Homepage */ ++ default: ++ /* Same as in the previous 'if' test */ ++ ephy_tab_set_typed_address (tab, "", ++ EPHY_TAB_ADDRESS_EXPIRE_NEXT); ++ ephy_toolbar_activate_location (toolbar); ++ is_empty = load_homepage (embed); ++ } ++ } + else if (flags & EPHY_NEW_TAB_OPEN_PAGE) + { + EphyEmbedLoadFlags load_flags = 0; --- epiphany-browser-2.22.0.orig/debian/patches/98_xulrunner1.9.patch +++ epiphany-browser-2.22.0/debian/patches/98_xulrunner1.9.patch @@ -0,0 +1,762 @@ +--- + doc/reference/Makefile.am | 4 + embed/Makefile.am | 1 + embed/ephy-password-manager.c | 4 + embed/ephy-password-manager.h | 5 + embed/mozilla/AutoModalDialog.cpp | 1 + embed/mozilla/EphyUtils.cpp | 2 + embed/mozilla/EphyUtils.h | 2 + embed/mozilla/Makefile.am | 7 + embed/mozilla/mozilla-embed-single.cpp | 244 ++++++++++++++++++++++++++++++--- + plugins/desktop-file/Makefile.am | 7 + src/Makefile.am | 15 ++ + 11 files changed, 269 insertions(+), 23 deletions(-) + +Index: epiphany-browser-2.22.0/doc/reference/Makefile.am +=================================================================== +--- epiphany-browser-2.22.0.orig/doc/reference/Makefile.am ++++ epiphany-browser-2.22.0/doc/reference/Makefile.am +@@ -202,20 +202,20 @@ + DOC_OVERRIDES = + + # include common portion ... + # include $(top_srcdir)/gtk-doc.make + # We need to copy/paste this to be able to change LD_LIBRARY_PATH + + if GTK_DOC_USE_LIBTOOL + GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) +-GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++GTKDOC_LD = $(LIBTOOL) --mode=link $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) + else + GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) +-GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++GTKDOC_LD = $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) + endif + + # We set GPATH here; this gives us semantics for GNU make + # which are more like other make's VPATH, when it comes to + # whether a source that is a target of one rule is then + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +Index: epiphany-browser-2.22.0/embed/Makefile.am +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/Makefile.am ++++ epiphany-browser-2.22.0/embed/Makefile.am +@@ -102,16 +102,17 @@ + $(NULL) + endif + + if WITH_GECKO_ENGINE + libephyembedfactory_la_CPPFLAGS += -I$(GECKO_INCLUDE_ROOT)/gtkembedmoz + endif + + libephyembedfactory_la_CFLAGS = \ ++ $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CFLAGS) + + CLEANFILES = $(stamp_files) $(BUILT_SOURCES) + DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + + stamp_files = \ +Index: epiphany-browser-2.22.0/embed/mozilla/Makefile.am +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/Makefile.am ++++ epiphany-browser-2.22.0/embed/mozilla/Makefile.am +@@ -148,12 +148,19 @@ + -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ + -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ + -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ + -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ + -DUA_VERSION=\"$(EPIPHANY_UA_VERSION)\" \ + -DALLOW_PRIVATE_API \ + $(AM_CPPFLAGS) + ++if HAVE_GECKO_XPCOM_GLUE ++if HAVE_GECKO_1_9 ++libephymozillaembed_la_CPPFLAGS += \ ++ -DXPCOM_GLUE_USE_NSPR ++endif ++endif ++ + libephymozillaembed_la_CXXFLAGS = \ + $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CXXFLAGS) +Index: epiphany-browser-2.22.0/plugins/desktop-file/Makefile.am +=================================================================== +--- epiphany-browser-2.22.0.orig/plugins/desktop-file/Makefile.am ++++ epiphany-browser-2.22.0/plugins/desktop-file/Makefile.am +@@ -20,13 +20,18 @@ + $(AM_CXXFLAGS) + + libdesktopfileplugin_la_LIBADD = \ + $(DESKTOP_FILE_PLUGIN_DEP_LIBS) + + libdesktopfileplugin_la_LDFLAGS = \ + -module -avoid-version \ + -export-symbols $(srcdir)/plugin.symbols \ +- -R$(GECKO_HOME) \ + $(AM_LDFLAGS) + ++if !HAVE_GECKO_XPCOM_GLUE ++ libdesktopfileplugin_la_LDFLAGS += \ ++ -R$(GECKO_HOME) \ ++ $(NULL) ++endif ++ + EXTRA_DIST = \ + plugin.symbols +Index: epiphany-browser-2.22.0/src/Makefile.am +=================================================================== +--- epiphany-browser-2.22.0.orig/src/Makefile.am ++++ epiphany-browser-2.22.0/src/Makefile.am +@@ -175,30 +175,41 @@ + + libpyphany_la_LIBADD = \ + $(DEPENDENCIES_LIBS) \ + $(PYTHON_LIB_LOC) $(PYTHON_LIBS) \ + $(PYTHON_EXTRA_LIBS) \ + $(PYGTK_LIBS) + endif + ++ ++# we do this to force c++ linkage if we are using the glue and ++# are running gecko 1.9 because standalone glue embedders that use ++# gtk_moz_embed_* need to #include ++if HAVE_GECKO_1_9 ++if HAVE_GECKO_XPCOM_GLUE ++nodist_EXTRA_epiphany_SOURCES = dummy.cpp ++endif ++endif ++ + epiphany_SOURCES = ephy-main.c + + epiphany_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/embed \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src/bookmarks \ + -DDATADIR=\""$(datadir)"\" \ + -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + $(INCINTL) \ + $(AM_CPPFLAGS) + + epiphany_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ ++ $(GECKO_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(AM_CFLAGS) + + epiphany_LDFLAGS = -dlopen self + + epiphany_LDADD = \ + libephymain.la \ + $(top_builddir)/src/bookmarks/libephybookmarks.la \ +@@ -209,16 +220,17 @@ + $(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \ + $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ + $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \ + $(top_builddir)/embed/xulrunner/components/libephycomponents.la + endif + + if WITH_GECKO_ENGINE + epiphany_LDADD += \ ++ $(GECKO_LIBS) \ + $(top_builddir)/embed/mozilla/libephymozillaembed.la + endif + + if WITH_WEBKIT_ENGINE + epiphany_LDADD += \ + $(top_builddir)/embed/webkit/libephywebkitembed.la + endif + +@@ -229,30 +241,33 @@ + $(top_builddir)/lib/egg/libegg.la + + if WITH_XULRUNNER_ENGINE + epiphany_LDFLAGS += -R$(LIBXUL_LIBDIR) + epiphany_LDADD += $(LIBXUL_LIBS) -lxpcomglue + endif + + if WITH_GECKO_ENGINE ++if !HAVE_GECKO_XPCOM_GLUE + epiphany_LDFLAGS += -R$(GECKO_HOME) ++endif + + epiphany_LDADD += \ + $(GECKO_LIBS) \ + $(GECKO_EXTRA_LIBS) \ + $(GECKO_GLUE_LIBS) + endif + + if WITH_WEBKIT_ENGINE + epiphany_LDADD += \ + $(WEBKIT_LIBS) + endif + + epiphany_LDADD += \ ++ $(GECKO_LIBS) \ + $(DEPENDENCIES_LIBS) \ + $(DBUS_LIBS) \ + $(LIBINTL) + + if ENABLE_PYTHON + epiphany_LDADD += \ + libpyphany.la \ + $(PYTHON_LIB_LOC) $(PYTHON_LIBS) \ +Index: epiphany-browser-2.22.0/embed/mozilla/EphyUtils.cpp +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/EphyUtils.cpp ++++ epiphany-browser-2.22.0/embed/mozilla/EphyUtils.cpp +@@ -159,16 +159,17 @@ + glong n_read = 0, n_written = 0; + char *converted = g_utf16_to_utf8 ((gunichar2*) aText, aMaxLength, + &n_read, &n_written, NULL); + /* FIXME loop from the end while !g_unichar_isspace (char)? */ + + return converted; + } + ++#if 0 + /* This isn't completely accurate: if you do window.prompt in one window, then + * call this in another window, it still returns TRUE ! Those are the wonders + * of recursive mainloops :-( + */ + PRBool + EphyJSUtils::IsCalledFromScript () + { + #if 1 +@@ -180,16 +181,17 @@ + + nsCOMPtr ncc; + rv = xpc->GetCurrentNativeCallContext (getter_AddRefs (ncc)); + NS_ENSURE_SUCCESS(rv, PR_FALSE); + + return nsnull != ncc; + #endif + } ++#endif + + /* NOTE: Only call this when we're SURE that we're called directly from JS! */ + nsIDOMWindow * + EphyJSUtils::GetDOMWindowFromCallContext () + { + /* TODO: We could do this on 1.8, but we'd need to use headers which include private string API + * so we'll have to move this to MozillaPrivate + */ +Index: epiphany-browser-2.22.0/embed/mozilla/EphyUtils.h +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/EphyUtils.h ++++ epiphany-browser-2.22.0/embed/mozilla/EphyUtils.h +@@ -58,14 +58,16 @@ + + GtkWidget *FindGtkParent (nsIDOMWindow *aDOMWindow); + + char * ConvertUTF16toUTF8 (const PRUnichar*, PRInt32); + } + + namespace EphyJSUtils + { ++#if 0 + PRBool IsCalledFromScript (); ++#endif + + /* not addref'd! */ nsIDOMWindow* GetDOMWindowFromCallContext (); + } + + #endif +Index: epiphany-browser-2.22.0/embed/mozilla/mozilla-embed-single.cpp +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/mozilla-embed-single.cpp ++++ epiphany-browser-2.22.0/embed/mozilla/mozilla-embed-single.cpp +@@ -28,16 +28,21 @@ + #include + + #include + #include + #include + + #include + ++#ifdef XPCOM_GLUE ++#include ++#include ++#endif ++ + #include + #include + #include + #include + #include + #include + #include + #include +@@ -60,16 +65,19 @@ + #include + #include + #include + #endif /* ALLOW_PRIVATE_API */ + + #ifndef HAVE_GECKO_1_9 + #include + #include ++#else ++#include ++#include + #endif /* !HAVE_GECKO_1_9 */ + + #include "ephy-file-helpers.h" + #include "eel-gconf-extensions.h" + #include "ephy-cookie-manager.h" + #include "ephy-debug.h" + #include "ephy-embed-prefs.h" + #include "ephy-embed-shell.h" +@@ -319,16 +327,17 @@ + + void + mozilla_init_profile (void) + { + char *profile_path; + profile_path = g_build_filename (ephy_dot_dir (), + MOZILLA_PROFILE_DIR, + (char *) NULL); ++ gtk_moz_embed_set_comp_path (profile_path); + gtk_moz_embed_set_profile_path (profile_path, MOZILLA_PROFILE_NAME); + g_free (profile_path); + } + + #if defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) || defined(HAVE_CHROME_NSICHROMEREGISTRYSEA_H) + static nsresult + getUILang (nsAString& aUILang) + { +@@ -366,16 +375,29 @@ + if (NS_FAILED (rv)) + { + g_warning ("Failed to initialise EphySingle!\n"); + return; + } + } + + static void ++mozilla_init_login_manager (MozillaEmbedSingle *single) ++{ ++#ifdef HAVE_GECKO_1_9 ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ if (!loginManager) ++ g_warning ("Failed to instantiate LoginManager"); ++ else ++ g_debug ("LoginManager tapped"); ++#endif /* HAVE_GECKO_1_9 */ ++} ++ ++static void + user_css_register (MozillaEmbedSingle *single) + { + MozillaEmbedSinglePrivate *priv = single->priv; + + nsresult rv; + nsCOMPtr file; + rv = NS_NewNativeLocalFile (nsDependentCString (priv->user_css_file), + PR_TRUE, getter_AddRefs (file)); +@@ -560,34 +582,83 @@ + /* XPrint? No, thanks! */ + g_unsetenv ("XPSERVERLIST"); + #endif + + #ifdef HAVE_GECKO_1_9 + NS_LogInit (); + #endif + ++ nsresult rv; ++#ifdef XPCOM_GLUE ++ static const GREVersionRange greVersion = { ++ "1.9a", PR_TRUE, ++ "2", PR_TRUE ++ }; ++ char xpcomLocation[4096]; ++ rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not find a suitable GRE!\n"); ++ return FALSE; ++ } ++ ++ // Startup the XPCOM Glue that links us up with XPCOM. ++ rv = XPCOMGlueStartup(xpcomLocation); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup XPCOM glue!\n"); ++ return FALSE; ++ } ++ ++ rv = GTKEmbedGlueStartup(); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup embed glue!\n"); ++ return FALSE; ++ } ++ ++ rv = GTKEmbedGlueStartupInternal(); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup internal glue!\n"); ++ return FALSE; ++ } ++ ++ char *lastSlash = strrchr(xpcomLocation, '/'); ++ if (lastSlash) ++ *lastSlash = '\0'; ++ ++ gtk_moz_embed_set_path(xpcomLocation); ++#else ++#ifdef HAVE_GECKO_1_9 ++ gtk_moz_embed_set_path (MOZILLA_HOME); ++#else ++ gtk_moz_embed_set_comp_path (MOZILLA_HOME); ++#endif ++#endif // XPCOM_GLUE ++ /* Fire up the beast */ ++ gtk_moz_embed_push_startup (); ++ + /* Pre initialization */ + mozilla_init_plugin_path (); + + mozilla_init_profile (); + + #ifdef HAVE_GECKO_1_9 + gtk_moz_embed_set_path (MOZILLA_HOME); + #endif + /* Set mozilla binary path */ + gtk_moz_embed_set_comp_path (MOZILLA_HOME); + + nsCOMPtr dp = new EphyDirectoryProvider (); + if (!dp) return FALSE; + + gtk_moz_embed_set_directory_service_provider (dp); + +- /* Fire up the beast */ +- gtk_moz_embed_push_startup (); + /* FIXME check that it succeeded! */ + + mozilla_register_components (); + + mozilla_init_single (single); + + if (!mozilla_set_default_prefs (single)) + { +@@ -595,17 +666,19 @@ + } + + START_PROFILER ("Mozilla prefs notifiers") + mozilla_notifiers_init (); + STOP_PROFILER ("Mozilla prefs notifiers") + + mozilla_init_observer (single); + +- mozilla_stylesheet_init (single); ++ mozilla_stylesheet_init (single); ++ ++ mozilla_init_login_manager (single); + + return TRUE; + } + + static void + prepare_close_cb (EphyEmbedShell *shell) + { + GValue value = { 0, }; +@@ -843,26 +916,103 @@ + cookieManager->RemoveAll (); + } + + static GList * + impl_list_passwords (EphyPasswordManager *manager) + { + GList *passwords = NULL; + +-#ifndef HAVE_GECKO_1_9 ++ nsCOMPtr idnService ++ (do_GetService ("@mozilla.org/network/idn-service;1")); ++ NS_ENSURE_TRUE (idnService, NULL); ++ ++#ifdef HAVE_GECKO_1_9 ++ nsILoginInfo **logins = nsnull; ++ PRUint32 count,i; ++ nsresult rv; ++ ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, NULL); ++ ++ loginManager -> GetAllLogins(&count, &logins); ++ ++ for (i=0; i < count; i++) { ++ nsString transfer; ++ nsString unicodeName; ++ rv = logins[i]->GetHostname (transfer); ++ if (NS_FAILED (rv)) continue; ++ ++ nsCString host; ++ idnService->ConvertACEtoUTF8 (NS_ConvertUTF16toUTF8(transfer), host); ++ if(transfer.IsVoid()) host.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetHttpRealm (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString httpRealm; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, httpRealm); ++ if(unicodeName.IsVoid()) httpRealm.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetUsername (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString userName; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, userName); ++ if(unicodeName.IsVoid()) userName.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetUsernameField (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString usernameField; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, usernameField); ++ if(unicodeName.IsVoid()) usernameField.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetPassword (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString userPassword; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, userPassword); ++ if(unicodeName.IsVoid()) userPassword.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetPasswordField (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString passwordField; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, passwordField); ++ if(unicodeName.IsVoid()) passwordField.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetFormSubmitURL (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString formSubmitURL; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, formSubmitURL); ++ if(unicodeName.IsVoid()) formSubmitURL.SetIsVoid(PR_TRUE); ++ ++ ++ EphyPasswordInfo *p = g_new0 (EphyPasswordInfo, 1); ++ p->host = !userName.IsVoid() ? g_strdup (host.get()) : nsnull; ++ p->username = !userName.IsVoid() ? g_strdup (userName.get()) : nsnull; ++ p->password = !userPassword.IsVoid() ? g_strdup (userPassword.get()) : nsnull; ++ p->httpRealm = !httpRealm.IsVoid() ? g_strdup(httpRealm.get()) : nsnull; ++ p->usernameField = !usernameField.IsVoid() ? g_strdup(usernameField.get()) : nsnull; ++ p->passwordField = !passwordField.IsVoid() ? g_strdup(passwordField.get()) : nsnull; ++ p->formSubmitURL = !formSubmitURL.IsVoid() ? g_strdup(formSubmitURL.get()) : nsnull; ++ ++ passwords = g_list_prepend (passwords, p); ++ } ++ ++#else // HAVE_GECKO_1_9 ++ + nsresult rv; + nsCOMPtr passwordManager = + do_GetService (NS_PASSWORDMANAGER_CONTRACTID); + if (!passwordManager) return NULL; + +- nsCOMPtr idnService +- (do_GetService ("@mozilla.org/network/idn-service;1")); +- NS_ENSURE_TRUE (idnService, NULL); +- + nsCOMPtr passwordEnumerator; + passwordManager->GetEnumerator (getter_AddRefs(passwordEnumerator)); + NS_ENSURE_TRUE (passwordEnumerator, NULL); + + PRBool enumResult; + for (passwordEnumerator->HasMoreElements(&enumResult) ; + enumResult == PR_TRUE ; + passwordEnumerator->HasMoreElements(&enumResult)) +@@ -905,41 +1055,97 @@ + + return passwords; + } + + static void + impl_remove_password (EphyPasswordManager *manager, + EphyPasswordInfo *info) + { +-#ifndef HAVE_GECKO_1_9 +- nsCOMPtr pm = +- do_GetService (NS_PASSWORDMANAGER_CONTRACTID); +- if (!pm) return; ++ nsresult rv; ++ nsString host; ++ nsString userName; ++ nsString userNameField; ++ nsString password; ++ nsString passwordField; ++ nsString httpRealm; ++ nsString formSubmitURL; + + nsCOMPtr idnService + (do_GetService ("@mozilla.org/network/idn-service;1")); + NS_ENSURE_TRUE (idnService, ); + +- nsresult rv; +- nsCString host; +- rv = idnService->ConvertUTF8toACE (nsCString(info->host), host); +- NS_ENSURE_SUCCESS (rv, ); ++ if(info->formSubmitURL != nsnull) ++ g_debug("form submit url: %s", info->formSubmitURL); ++ else ++ g_debug("form submit url is NULL"); + +- nsString userName; + NS_CStringToUTF16 (nsCString(info->username), + NS_CSTRING_ENCODING_UTF8, userName); +- pm->RemoveUser (host, userName); ++ NS_CStringToUTF16 (nsCString(info->usernameField), ++ NS_CSTRING_ENCODING_UTF8, userNameField); ++ NS_CStringToUTF16 (nsCString(info->host), ++ NS_CSTRING_ENCODING_UTF8, host); ++ NS_CStringToUTF16 (nsCString(info->httpRealm), ++ NS_CSTRING_ENCODING_UTF8, httpRealm); ++ NS_CStringToUTF16 (nsCString(info->password), ++ NS_CSTRING_ENCODING_UTF8, password); ++ NS_CStringToUTF16 (nsCString(info->passwordField), ++ NS_CSTRING_ENCODING_UTF8, passwordField); ++ NS_CStringToUTF16 (nsCString(info->formSubmitURL), ++ NS_CSTRING_ENCODING_UTF8, formSubmitURL); ++ ++#ifdef HAVE_GECKO_1_9 ++ if(!info->username) userName.SetIsVoid(PR_TRUE); ++ if(!info->usernameField) userNameField.SetIsVoid(PR_TRUE); ++ if(!info->host) host.SetIsVoid(PR_TRUE); ++ if(!info->httpRealm) httpRealm.SetIsVoid(PR_TRUE); ++ if(!info->password) password.SetIsVoid(PR_TRUE); ++ if(!info->passwordField) passwordField.SetIsVoid(PR_TRUE); ++ if(!info->formSubmitURL) formSubmitURL.SetIsVoid(PR_TRUE); ++ ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, ); ++ ++ nsCOMPtr login ++ (do_CreateInstance(NS_LOGININFO_CONTRACTID)); ++ ++ login->SetUsername(userName); ++ login->SetUsernameField(userNameField); ++ login->SetHostname(host); ++ login->SetHttpRealm(httpRealm); ++ login->SetFormSubmitURL(formSubmitURL); ++ login->SetPassword(password); ++ login->SetPasswordField(passwordField); ++ ++ rv = loginManager->RemoveLogin(login); ++ ++#else /* HAVE_GECKO_1_9 */ ++ nsCOMPtr pm = ++ do_GetService (NS_PASSWORDMANAGER_CONTRACTID); ++ if (!pm) return; ++ ++ pm->RemoveUser (nsCString(info->host), userName); + #endif /* !HAVE_GECKO_1_9 */ + } + + static void + impl_remove_all_passwords (EphyPasswordManager *manager) + { +-#ifndef HAVE_GECKO_1_9 ++#ifdef HAVE_GECKO_1_9 ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, ); ++ ++ nsresult rv = loginManager->RemoveAllLogins(); ++ if(NS_FAILED(rv)) ++ g_warning("couldn't remove all logins"); ++ ++#else /* HAVE_GECKO_1_9 */ + nsresult rv; + nsCOMPtr passwordManager = + do_GetService (NS_PASSWORDMANAGER_CONTRACTID); + if (!passwordManager) return; + + nsCOMPtr idnService + (do_GetService ("@mozilla.org/network/idn-service;1")); + NS_ENSURE_TRUE (idnService, ); +Index: epiphany-browser-2.22.0/embed/ephy-password-manager.c +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/ephy-password-manager.c ++++ epiphany-browser-2.22.0/embed/ephy-password-manager.c +@@ -75,16 +75,20 @@ + EphyPasswordInfo * + ephy_password_info_copy (const EphyPasswordInfo *info) + { + EphyPasswordInfo *copy = g_new0 (EphyPasswordInfo, 1); + + copy->host = g_strdup (info->host); + copy->username = g_strdup (info->username); + copy->password = g_strdup (info->password); ++ copy->httpRealm = g_strdup (info->httpRealm); ++ copy->passwordField = g_strdup (info->passwordField); ++ copy->usernameField = g_strdup (info->usernameField); ++ copy->formSubmitURL = g_strdup (info->formSubmitURL); + + return copy; + } + + /** + * ephy_password_info_free: + * @info: + * +Index: epiphany-browser-2.22.0/embed/ephy-password-manager.h +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/ephy-password-manager.h ++++ epiphany-browser-2.22.0/embed/ephy-password-manager.h +@@ -39,16 +39,21 @@ + typedef struct _EphyPasswordManager EphyPasswordManager; + typedef struct _EphyPasswordManagerIface EphyPasswordManagerIface; + + typedef struct + { + char *host; + char *username; + char *password; ++ ++ char *httpRealm; ++ char *formSubmitURL; ++ char *usernameField; ++ char *passwordField; + } EphyPasswordInfo; + + struct _EphyPasswordManagerIface + { + GTypeInterface base_iface; + + /* Signals */ + void (* changed) (EphyPasswordManager *manager); +Index: epiphany-browser-2.22.0/embed/mozilla/AutoModalDialog.cpp +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/AutoModalDialog.cpp ++++ epiphany-browser-2.22.0/embed/mozilla/AutoModalDialog.cpp +@@ -30,17 +30,16 @@ + #include + #include + + #ifdef HAVE_GECKO_1_9 + #include + #include + #include + #include +-#include + #include + #include + #include + #include + #endif /* HAVE_GECKO_1_9 */ + + #include + --- epiphany-browser-2.22.0.orig/debian/patches/series +++ epiphany-browser-2.22.0/debian/patches/series @@ -0,0 +1,20 @@ +00_browser_wrapper_path.patch +01_bookmarks_menu.patch +02_ac_init.patch +#03_dbus.patch +#04_move_tabs.patch +05_libexecdir.patch +06_lpi.patch +06_ssl_weak_ciphers.patch +07_bookmarks.patch +#08_load_on_new_tab.patch +08_localized_startup_page.patch +09_download_dialog.patch -p0 +10_url_double-click.patch +#11_useragent-weasel.patch +98_xulrunner1.9.patch +#98_xulrunner1.9_build_changes.patch +98a_nsipromptservice2_workaround.patch +98_ephy-boot-xul-early.patch +#98b_gtk_nss_dialog_missing_symbol.patch +99_autoreconf.patch --- epiphany-browser-2.22.0.orig/debian/patches/01_bookmarks_menu.patch +++ epiphany-browser-2.22.0/debian/patches/01_bookmarks_menu.patch @@ -0,0 +1,12 @@ +Index: epiphany-2.20.0/data/bme.desktop.in.in +=================================================================== +--- epiphany-2.20.0.orig/data/bme.desktop.in.in 2007-09-21 14:26:35.018825354 +0200 ++++ epiphany-2.20.0/data/bme.desktop.in.in 2007-09-21 14:28:35.273678287 +0200 +@@ -8,6 +8,7 @@ + Terminal=false + Type=Application + Icon=epiphany-bookmarks ++NoDisplay=true + X-GNOME-Bugzilla-Bugzilla=GNOME + X-GNOME-Bugzilla-Product=epiphany + X-GNOME-Bugzilla-Component=BugBuddyBugs --- epiphany-browser-2.22.0.orig/debian/patches/00_browser_wrapper_path.patch +++ epiphany-browser-2.22.0/debian/patches/00_browser_wrapper_path.patch @@ -0,0 +1,27 @@ +Index: epiphany-2.20.0/data/bme.desktop.in.in +=================================================================== +--- epiphany-2.20.0.orig/data/bme.desktop.in.in 2007-08-27 22:19:01.000000000 +0200 ++++ epiphany-2.20.0/data/bme.desktop.in.in 2007-09-21 14:26:35.018825354 +0200 +@@ -3,7 +3,7 @@ + _Name=Epiphany Web Bookmarks + _GenericName=Web Bookmarks + _Comment=Browse and organize your bookmarks +-Exec=epiphany --bookmarks-editor ++Exec=epiphany-browser --bookmarks-editor + StartupNotify=true + Terminal=false + Type=Application +Index: epiphany-2.20.0/data/epiphany.desktop.in.in +=================================================================== +--- epiphany-2.20.0.orig/data/epiphany.desktop.in.in 2007-08-27 22:19:01.000000000 +0200 ++++ epiphany-2.20.0/data/epiphany.desktop.in.in 2007-09-21 14:27:40.254542926 +0200 +@@ -3,7 +3,8 @@ + _Name=Epiphany Web Browser + _GenericName=Web Browser + _Comment=Browse the web +-Exec=epiphany %U ++Exec=epiphany-browser %U ++TryExec=/usr/bin/epiphany-browser + StartupNotify=true + Terminal=false + Type=Application --- epiphany-browser-2.22.0.orig/debian/patches/99_autoreconf.patch +++ epiphany-browser-2.22.0/debian/patches/99_autoreconf.patch @@ -0,0 +1,857 @@ +--- + configure | 16 ++- + doc/reference/Makefile.in | 4 + embed/Makefile.in | 1 + embed/mozilla/Makefile.in | 27 ++---- + gtk-doc.make | 174 +++++++++++++++++++++++++++++++++++++++ + intltool-extract.in | 12 ++ + plugins/desktop-file/Makefile.in | 5 - + src/Makefile.in | 70 +++++++++++++-- + 8 files changed, 281 insertions(+), 28 deletions(-) + +Index: epiphany-browser-2.22.0/configure +=================================================================== +--- epiphany-browser-2.22.0.orig/configure ++++ epiphany-browser-2.22.0/configure +@@ -722,17 +722,17 @@ + cross_compiling=no + subdirs= + MFLAGS= + MAKEFLAGS= + SHELL=${CONFIG_SHELL-/bin/sh} + + # Identity of this package. + PACKAGE_NAME='GNOME Web Browser' +-PACKAGE_TARNAME='epiphany' ++PACKAGE_TARNAME='epiphany-browser' + PACKAGE_VERSION='2.22.0' + PACKAGE_STRING='GNOME Web Browser 2.22.0' + PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany' + + ac_unique_file="configure.ac" + # Factoring default headers for most tests. + ac_includes_default="\ + #include +@@ -1633,17 +1633,17 @@ + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] +- --docdir=DIR documentation root [DATAROOTDIR/doc/epiphany] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/epiphany-browser] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] + _ACEOF + + cat <<\_ACEOF + +@@ -2553,17 +2553,17 @@ + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi + fi + + + # Define the identity of the package. +- PACKAGE='epiphany' ++ PACKAGE='epiphany-browser' + VERSION='2.22.0' + + + cat >>confdefs.h <<_ACEOF + #define PACKAGE "$PACKAGE" + _ACEOF + + +@@ -23435,32 +23435,34 @@ + gmodule-2.0 + gio-unix-2.0 >= \$GLIB_REQUIRED + gtk+-2.0 >= \$GTK_REQUIRED + gtk+-unix-print-2.0 >= \$GTK_REQUIRED + libxml-2.0 >= \$LIBXML_REQUIRED + libxslt >= \$LIBXSLT_REQUIRED + libgnome-2.0 >= \$LIBGNOME_REQUIRED + libgnomeui-2.0 >= \$LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= \$LIBGLADE_REQUIRED \\ + gconf-2.0 + gnome-desktop-2.0 >= \$GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= \$LIBSTARTUP_NOTIFICATION_REQUIRED + \$LIBNOTIFY_PACKAGE + \"") >&5 + ($PKG_CONFIG --exists --print-errors " + glib-2.0 >= $GLIB_REQUIRED + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + ") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +@@ -23470,16 +23472,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + " 2>/dev/null` + else + pkg_failed=yes +@@ -23498,32 +23501,34 @@ + gmodule-2.0 + gio-unix-2.0 >= \$GLIB_REQUIRED + gtk+-2.0 >= \$GTK_REQUIRED + gtk+-unix-print-2.0 >= \$GTK_REQUIRED + libxml-2.0 >= \$LIBXML_REQUIRED + libxslt >= \$LIBXSLT_REQUIRED + libgnome-2.0 >= \$LIBGNOME_REQUIRED + libgnomeui-2.0 >= \$LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= \$LIBGLADE_REQUIRED \\ + gconf-2.0 + gnome-desktop-2.0 >= \$GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= \$LIBSTARTUP_NOTIFICATION_REQUIRED + \$LIBNOTIFY_PACKAGE + \"") >&5 + ($PKG_CONFIG --exists --print-errors " + glib-2.0 >= $GLIB_REQUIRED + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + ") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +@@ -23533,16 +23538,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + " 2>/dev/null` + else + pkg_failed=yes +@@ -23567,16 +23573,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + "` + else + DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors " +@@ -23584,16 +23591,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + "` + fi + # Put the nasty error message in config.log where it belongs +@@ -23604,16 +23612,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + ) were not met: + + $DEPENDENCIES_PKG_ERRORS +@@ -23630,16 +23639,17 @@ + gmodule-2.0 + gio-unix-2.0 >= $GLIB_REQUIRED + gtk+-2.0 >= $GTK_REQUIRED + gtk+-unix-print-2.0 >= $GTK_REQUIRED + libxml-2.0 >= $LIBXML_REQUIRED + libxslt >= $LIBXSLT_REQUIRED + libgnome-2.0 >= $LIBGNOME_REQUIRED + libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED ++ launchpad-integration + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gconf-2.0 + gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED + libstartup-notification-1.0 >= $LIBSTARTUP_NOTIFICATION_REQUIRED + $LIBNOTIFY_PACKAGE + ) were not met: + + $DEPENDENCIES_PKG_ERRORS +Index: epiphany-browser-2.22.0/doc/reference/Makefile.in +=================================================================== +--- epiphany-browser-2.22.0.orig/doc/reference/Makefile.in ++++ epiphany-browser-2.22.0/doc/reference/Makefile.in +@@ -515,18 +515,18 @@ + # $(DOC_MODULE)-overrides.txt file and uncomment the second line here. + DOC_OVERRIDES = + @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) + + # include common portion ... + # include $(top_srcdir)/gtk-doc.make + # We need to copy/paste this to be able to change LD_LIBRARY_PATH + @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) +-@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) +-@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) + + # We set GPATH here; this gives us semantics for GNU make + # which are more like other make's VPATH, when it comes to + # whether a source that is a target of one rule is then + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) + TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +Index: epiphany-browser-2.22.0/embed/Makefile.in +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/Makefile.in ++++ epiphany-browser-2.22.0/embed/Makefile.in +@@ -495,16 +495,17 @@ + libephyembedfactory_la_SOURCES = \ + ephy-embed-factory.c \ + ephy-embed-factory.h + + libephyembedfactory_la_CPPFLAGS = \ + -I$(top_srcdir)/embed/$(with_engine) $(AM_CPPFLAGS) \ + $(am__append_1) $(am__append_2) + libephyembedfactory_la_CFLAGS = \ ++ $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CFLAGS) + + CLEANFILES = $(stamp_files) $(BUILT_SOURCES) + DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + stamp_files = \ + stamp-ephy-embed-type-builtins.c \ +Index: epiphany-browser-2.22.0/embed/mozilla/Makefile.in +=================================================================== +--- epiphany-browser-2.22.0.orig/embed/mozilla/Makefile.in ++++ epiphany-browser-2.22.0/embed/mozilla/Makefile.in +@@ -54,16 +54,19 @@ + @HAVE_MOZILLA_PSM_TRUE@ GtkNSSKeyPairDialogs.h \ + @HAVE_MOZILLA_PSM_TRUE@ GtkNSSSecurityWarningDialogs.cpp\ + @HAVE_MOZILLA_PSM_TRUE@ GtkNSSSecurityWarningDialogs.h + + @ENABLE_SPELLCHECKER_TRUE@am__append_4 = \ + @ENABLE_SPELLCHECKER_TRUE@ GeckoSpellCheckEngine.cpp \ + @ENABLE_SPELLCHECKER_TRUE@ GeckoSpellCheckEngine.h + ++@HAVE_GECKO_1_9_TRUE@@HAVE_GECKO_XPCOM_GLUE_TRUE@am__append_5 = \ ++@HAVE_GECKO_1_9_TRUE@@HAVE_GECKO_XPCOM_GLUE_TRUE@ -DXPCOM_GLUE_USE_NSPR ++ + subdir = embed/mozilla + DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/m4/gecko.m4 \ + $(top_srcdir)/m4/gnome-doc-utils.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/intltool.m4 \ + $(top_srcdir)/m4/libxul.m4 $(top_srcdir)/m4/python.m4 \ + $(top_srcdir)/configure.ac +@@ -524,30 +527,26 @@ + webbrowserpersist \ + webbrwsr \ + widget \ + windowwatcher \ + xmlextras \ + xpcom \ + xpconnect + +-libephymozillaembed_la_CPPFLAGS = \ +- -I$(top_srcdir)/lib \ +- -I$(top_srcdir)/embed \ +- -I$(top_srcdir) \ +- $(addprefix -I$(GECKO_INCLUDE_ROOT)/,$(mozilla_include_subdirs)) \ +- -DSHARE_DIR=\"$(pkgdatadir)\" \ +- -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ +- -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ +- -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ +- -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ +- -DUA_VERSION=\"$(EPIPHANY_UA_VERSION)\" \ +- -DALLOW_PRIVATE_API \ +- $(AM_CPPFLAGS) +- ++libephymozillaembed_la_CPPFLAGS = -I$(top_srcdir)/lib \ ++ -I$(top_srcdir)/embed -I$(top_srcdir) $(addprefix \ ++ -I$(GECKO_INCLUDE_ROOT)/,$(mozilla_include_subdirs)) \ ++ -DSHARE_DIR=\"$(pkgdatadir)\" \ ++ -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ ++ -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ ++ -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ ++ -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ ++ -DUA_VERSION=\"$(EPIPHANY_UA_VERSION)\" -DALLOW_PRIVATE_API \ ++ $(AM_CPPFLAGS) $(am__append_5) + libephymozillaembed_la_CXXFLAGS = \ + $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CXXFLAGS) + + all: all-am + + .SUFFIXES: +Index: epiphany-browser-2.22.0/gtk-doc.make +=================================================================== +--- /dev/null ++++ epiphany-browser-2.22.0/gtk-doc.make +@@ -0,0 +1,174 @@ ++# -*- mode: makefile -*- ++ ++#################################### ++# Everything below here is generic # ++#################################### ++ ++if GTK_DOC_USE_LIBTOOL ++GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) ++GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++else ++GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) ++GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++endif ++ ++# We set GPATH here; this gives us semantics for GNU make ++# which are more like other make's VPATH, when it comes to ++# whether a source that is a target of one rule is then ++# searched for in VPATH/GPATH. ++# ++GPATH = $(srcdir) ++ ++TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) ++ ++EXTRA_DIST = \ ++ $(content_files) \ ++ $(HTML_IMAGES) \ ++ $(DOC_MAIN_SGML_FILE) \ ++ $(DOC_MODULE)-sections.txt \ ++ $(DOC_MODULE)-overrides.txt ++ ++DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ ++ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp ++ ++SCANOBJ_FILES = \ ++ $(DOC_MODULE).args \ ++ $(DOC_MODULE).hierarchy \ ++ $(DOC_MODULE).interfaces \ ++ $(DOC_MODULE).prerequisites \ ++ $(DOC_MODULE).signals ++ ++REPORT_FILES = \ ++ $(DOC_MODULE)-undocumented.txt \ ++ $(DOC_MODULE)-undeclared.txt \ ++ $(DOC_MODULE)-unused.txt ++ ++CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) ++ ++if ENABLE_GTK_DOC ++all-local: html-build.stamp ++else ++all-local: ++endif ++ ++docs: html-build.stamp ++ ++#### scan #### ++ ++scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) ++ @echo 'gtk-doc: Scanning header files' ++ @-chmod -R u+w $(srcdir) ++ cd $(srcdir) && \ ++ gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) ++ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ ++ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ ++ else \ ++ cd $(srcdir) ; \ ++ for i in $(SCANOBJ_FILES) ; do \ ++ test -f $$i || touch $$i ; \ ++ done \ ++ fi ++ touch scan-build.stamp ++ ++$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp ++ @true ++ ++#### templates #### ++ ++tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt ++ @echo 'gtk-doc: Rebuilding template files' ++ @-chmod -R u+w $(srcdir) ++ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) ++ touch tmpl-build.stamp ++ ++tmpl.stamp: tmpl-build.stamp ++ @true ++ ++tmpl/*.sgml: ++ @true ++ ++ ++#### xml #### ++ ++sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) ++ @echo 'gtk-doc: Building XML' ++ @-chmod -R u+w $(srcdir) ++ cd $(srcdir) && \ ++ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS) ++ touch sgml-build.stamp ++ ++sgml.stamp: sgml-build.stamp ++ @true ++ ++#### html #### ++ ++html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) ++ @echo 'gtk-doc: Building HTML' ++ @-chmod -R u+w $(srcdir) ++ rm -rf $(srcdir)/html ++ mkdir $(srcdir)/html ++ cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) ++ test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) ++ @echo 'gtk-doc: Fixing cross-references' ++ cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) ++ touch html-build.stamp ++ ++############## ++ ++clean-local: ++ rm -f *~ *.bak ++ rm -rf .libs ++ ++distclean-local: ++ cd $(srcdir) && \ ++ rm -rf xml $(REPORT_FILES) \ ++ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt ++ ++maintainer-clean-local: clean ++ cd $(srcdir) && rm -rf xml html ++ ++install-data-local: ++ installfiles=`echo $(srcdir)/html/*`; \ ++ if test "$$installfiles" = '$(srcdir)/html/*'; \ ++ then echo '-- Nothing to install' ; \ ++ else \ ++ $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \ ++ for i in $$installfiles; do \ ++ echo '-- Installing '$$i ; \ ++ $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ ++ done; \ ++ echo '-- Installing $(srcdir)/html/index.sgml' ; \ ++ $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ ++ if test `which gtkdoc-rebase` != ""; then \ ++ gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \ ++ fi \ ++ fi ++ ++ ++uninstall-local: ++ rm -f $(DESTDIR)$(TARGET_DIR)/* ++ ++# ++# Require gtk-doc when making dist ++# ++if ENABLE_GTK_DOC ++dist-check-gtkdoc: ++else ++dist-check-gtkdoc: ++ @echo "*** gtk-doc must be installed and enabled in order to make dist" ++ @false ++endif ++ ++dist-hook: dist-check-gtkdoc dist-hook-local ++ mkdir $(distdir)/tmpl ++ mkdir $(distdir)/xml ++ mkdir $(distdir)/html ++ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl ++ -cp $(srcdir)/xml/*.xml $(distdir)/xml ++ cp $(srcdir)/html/* $(distdir)/html ++ cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ ++ cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ ++ cd $(distdir) && rm -f $(DISTCLEANFILES) ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ ++.PHONY : dist-hook-local docs +Index: epiphany-browser-2.22.0/plugins/desktop-file/Makefile.in +=================================================================== +--- epiphany-browser-2.22.0.orig/plugins/desktop-file/Makefile.in ++++ epiphany-browser-2.22.0/plugins/desktop-file/Makefile.in +@@ -386,17 +386,16 @@ + $(AM_CXXFLAGS) + + libdesktopfileplugin_la_LIBADD = \ + $(DESKTOP_FILE_PLUGIN_DEP_LIBS) + + libdesktopfileplugin_la_LDFLAGS = \ + -module -avoid-version \ + -export-symbols $(srcdir)/plugin.symbols \ +- -R$(GECKO_HOME) \ + $(AM_LDFLAGS) + + EXTRA_DIST = \ + plugin.symbols + + all: all-am + + .SUFFIXES: +@@ -671,11 +670,15 @@ + install-exec-am install-info install-info-am install-man \ + install-pluginLTLIBRARIES install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-pluginLTLIBRARIES + ++ ++@HAVE_GECKO_XPCOM_GLUE_FALSE@ libdesktopfileplugin_la_LDFLAGS += \ ++@HAVE_GECKO_XPCOM_GLUE_FALSE@ -R$(GECKO_HOME) \ ++@HAVE_GECKO_XPCOM_GLUE_FALSE@ $(NULL) + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +Index: epiphany-browser-2.22.0/src/Makefile.in +=================================================================== +--- epiphany-browser-2.22.0.orig/src/Makefile.in ++++ epiphany-browser-2.22.0/src/Makefile.in +@@ -51,24 +51,25 @@ + + @WITH_XULRUNNER_ENGINE_TRUE@am__append_4 = \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/components/libephycomponents.la + + @WITH_GECKO_ENGINE_TRUE@am__append_5 = \ ++@WITH_GECKO_ENGINE_TRUE@ $(GECKO_LIBS) \ + @WITH_GECKO_ENGINE_TRUE@ $(top_builddir)/embed/mozilla/libephymozillaembed.la + + @WITH_WEBKIT_ENGINE_TRUE@am__append_6 = \ + @WITH_WEBKIT_ENGINE_TRUE@ $(top_builddir)/embed/webkit/libephywebkitembed.la + + @WITH_XULRUNNER_ENGINE_TRUE@am__append_7 = -R$(LIBXUL_LIBDIR) + @WITH_XULRUNNER_ENGINE_TRUE@am__append_8 = $(LIBXUL_LIBS) -lxpcomglue +-@WITH_GECKO_ENGINE_TRUE@am__append_9 = -R$(GECKO_HOME) ++@HAVE_GECKO_XPCOM_GLUE_FALSE@@WITH_GECKO_ENGINE_TRUE@am__append_9 = -R$(GECKO_HOME) + @WITH_GECKO_ENGINE_TRUE@am__append_10 = \ + @WITH_GECKO_ENGINE_TRUE@ $(GECKO_LIBS) \ + @WITH_GECKO_ENGINE_TRUE@ $(GECKO_EXTRA_LIBS) \ + @WITH_GECKO_ENGINE_TRUE@ $(GECKO_GLUE_LIBS) + + @WITH_WEBKIT_ENGINE_TRUE@am__append_11 = \ + @WITH_WEBKIT_ENGINE_TRUE@ $(WEBKIT_LIBS) + +@@ -184,17 +185,18 @@ + binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) + PROGRAMS = $(bin_PROGRAMS) + am_epiphany_OBJECTS = epiphany-ephy-main.$(OBJEXT) + epiphany_OBJECTS = $(am_epiphany_OBJECTS) + @WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/components/libephycomponents.la +-@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_3 = $(top_builddir)/embed/mozilla/libephymozillaembed.la ++@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) \ ++@WITH_GECKO_ENGINE_TRUE@ $(top_builddir)/embed/mozilla/libephymozillaembed.la + @WITH_WEBKIT_ENGINE_TRUE@am__DEPENDENCIES_4 = $(top_builddir)/embed/webkit/libephywebkitembed.la + @WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_5 = \ + @WITH_XULRUNNER_ENGINE_TRUE@ $(am__DEPENDENCIES_1) + @WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_6 = $(am__DEPENDENCIES_1) \ + @WITH_GECKO_ENGINE_TRUE@ $(am__DEPENDENCIES_1) \ + @WITH_GECKO_ENGINE_TRUE@ $(am__DEPENDENCIES_1) + @WITH_WEBKIT_ENGINE_TRUE@am__DEPENDENCIES_7 = $(am__DEPENDENCIES_1) + @ENABLE_PYTHON_TRUE@am__DEPENDENCIES_8 = libpyphany.la \ +@@ -207,31 +209,40 @@ + $(top_builddir)/embed/libephyembedfactory.la \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(top_builddir)/embed/libephyembed.la \ + $(top_builddir)/lib/widgets/libephywidgets.la \ + $(top_builddir)/lib/libephymisc.la \ + $(top_builddir)/lib/egg/libegg.la $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ +- $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_1) ++ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_8) \ ++ $(am__DEPENDENCIES_1) + DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) + CCLD = $(CC) + LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ++ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) ++LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ ++ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ++ $(AM_CXXFLAGS) $(CXXFLAGS) ++CXXLD = $(CXX) ++CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ ++ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ + SOURCES = $(libephymain_la_SOURCES) $(nodist_libephymain_la_SOURCES) \ + $(libpyphany_la_SOURCES) $(nodist_libpyphany_la_SOURCES) \ +- $(epiphany_SOURCES) ++ $(epiphany_SOURCES) $(nodist_EXTRA_epiphany_SOURCES) + DIST_SOURCES = $(am__libephymain_la_SOURCES_DIST) \ + $(am__libpyphany_la_SOURCES_DIST) $(epiphany_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 +@@ -644,43 +655,50 @@ + @ENABLE_PYTHON_TRUE@ -export-symbols-regex ephy_python_init + + @ENABLE_PYTHON_TRUE@libpyphany_la_LIBADD = \ + @ENABLE_PYTHON_TRUE@ $(DEPENDENCIES_LIBS) \ + @ENABLE_PYTHON_TRUE@ $(PYTHON_LIB_LOC) $(PYTHON_LIBS) \ + @ENABLE_PYTHON_TRUE@ $(PYTHON_EXTRA_LIBS) \ + @ENABLE_PYTHON_TRUE@ $(PYGTK_LIBS) + ++ ++# we do this to force c++ linkage if we are using the glue and ++# are running gecko 1.9 because standalone glue embedders that use ++# gtk_moz_embed_* need to #include ++@HAVE_GECKO_1_9_TRUE@@HAVE_GECKO_XPCOM_GLUE_TRUE@nodist_EXTRA_epiphany_SOURCES = dummy.cpp + epiphany_SOURCES = ephy-main.c + epiphany_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/embed \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src/bookmarks \ + -DDATADIR=\""$(datadir)"\" \ + -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + $(INCINTL) \ + $(AM_CPPFLAGS) + + epiphany_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ ++ $(GECKO_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(AM_CFLAGS) + + epiphany_LDFLAGS = -dlopen self $(am__append_7) $(am__append_9) + epiphany_LDADD = libephymain.la \ + $(top_builddir)/src/bookmarks/libephybookmarks.la \ + $(top_builddir)/embed/libephyembedfactory.la $(am__append_4) \ + $(am__append_5) $(am__append_6) \ + $(top_builddir)/embed/libephyembed.la \ + $(top_builddir)/lib/widgets/libephywidgets.la \ + $(top_builddir)/lib/libephymisc.la \ + $(top_builddir)/lib/egg/libegg.la $(am__append_8) \ +- $(am__append_10) $(am__append_11) $(DEPENDENCIES_LIBS) \ +- $(DBUS_LIBS) $(LIBINTL) $(am__append_12) $(am__append_13) ++ $(am__append_10) $(am__append_11) $(GECKO_LIBS) \ ++ $(DEPENDENCIES_LIBS) $(DBUS_LIBS) $(LIBINTL) $(am__append_12) \ ++ $(am__append_13) + @ENABLE_PYTHON_TRUE@pydefsdir = $(datadir)/pygtk/2.0/defs + @ENABLE_PYTHON_TRUE@pydefs_DATA = epiphany.defs + BUILT_SOURCES = $(TYPES_SOURCE) ephy-dbus-client-bindings.h \ + ephy-dbus-server-bindings.h $(am__append_14) + TYPES_SOURCE = \ + ephy-type-builtins.c \ + ephy-type-builtins.h + +@@ -849,17 +867,17 @@ + @ENABLE_PYTHON_TRUE@ $(BINDING_HEADERS_BUILDDIR) \ + @ENABLE_PYTHON_TRUE@ $(BINDING_HEADERS_BUILDDIR_IGNORE) + + @ENABLE_PYTHON_TRUE@BINDING_HEADERS_ALL_UNKNOWN = $(filter-out $(BINDING_HEADERS_ALL_KNOWN),$(BINDING_HEADERS_ALL)) + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-recursive + + .SUFFIXES: +-.SUFFIXES: .c .lo .o .obj ++.SUFFIXES: .c .cpp .lo .o .obj + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ +@@ -924,24 +942,25 @@ + clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f $$p $$f"; \ + rm -f $$p $$f ; \ + done + epiphany$(EXEEXT): $(epiphany_OBJECTS) $(epiphany_DEPENDENCIES) + @rm -f epiphany$(EXEEXT) +- $(LINK) $(epiphany_LDFLAGS) $(epiphany_OBJECTS) $(epiphany_LDADD) $(LIBS) ++ $(CXXLINK) $(epiphany_LDFLAGS) $(epiphany_OBJECTS) $(epiphany_LDADD) $(LIBS) + + mostlyclean-compile: + -rm -f *.$(OBJEXT) + + distclean-compile: + -rm -f *.tab.c + ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epiphany-dummy.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epiphany-ephy-main.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-action-helper.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-activation.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-completion-model.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-dbus.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-encoding-dialog.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-encoding-menu.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymain_la-ephy-extension.Plo@am__quote@ +@@ -1273,16 +1292,51 @@ + + epiphany-ephy-main.obj: ephy-main.c + @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -MT epiphany-ephy-main.obj -MD -MP -MF "$(DEPDIR)/epiphany-ephy-main.Tpo" -c -o epiphany-ephy-main.obj `if test -f 'ephy-main.c'; then $(CYGPATH_W) 'ephy-main.c'; else $(CYGPATH_W) '$(srcdir)/ephy-main.c'; fi`; \ + @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/epiphany-ephy-main.Tpo" "$(DEPDIR)/epiphany-ephy-main.Po"; else rm -f "$(DEPDIR)/epiphany-ephy-main.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-main.c' object='epiphany-ephy-main.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -c -o epiphany-ephy-main.obj `if test -f 'ephy-main.c'; then $(CYGPATH_W) 'ephy-main.c'; else $(CYGPATH_W) '$(srcdir)/ephy-main.c'; fi` + ++.cpp.o: ++@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< ++ ++.cpp.obj: ++@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` ++ ++.cpp.lo: ++@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< ++ ++epiphany-dummy.o: dummy.cpp ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT epiphany-dummy.o -MD -MP -MF "$(DEPDIR)/epiphany-dummy.Tpo" -c -o epiphany-dummy.o `test -f 'dummy.cpp' || echo '$(srcdir)/'`dummy.cpp; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/epiphany-dummy.Tpo" "$(DEPDIR)/epiphany-dummy.Po"; else rm -f "$(DEPDIR)/epiphany-dummy.Tpo"; exit 1; fi ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dummy.cpp' object='epiphany-dummy.o' libtool=no @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o epiphany-dummy.o `test -f 'dummy.cpp' || echo '$(srcdir)/'`dummy.cpp ++ ++epiphany-dummy.obj: dummy.cpp ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT epiphany-dummy.obj -MD -MP -MF "$(DEPDIR)/epiphany-dummy.Tpo" -c -o epiphany-dummy.obj `if test -f 'dummy.cpp'; then $(CYGPATH_W) 'dummy.cpp'; else $(CYGPATH_W) '$(srcdir)/dummy.cpp'; fi`; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/epiphany-dummy.Tpo" "$(DEPDIR)/epiphany-dummy.Po"; else rm -f "$(DEPDIR)/epiphany-dummy.Tpo"; exit 1; fi ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dummy.cpp' object='epiphany-dummy.obj' libtool=no @AMDEPBACKSLASH@ ++@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ++@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o epiphany-dummy.obj `if test -f 'dummy.cpp'; then $(CYGPATH_W) 'dummy.cpp'; else $(CYGPATH_W) '$(srcdir)/dummy.cpp'; fi` ++ + mostlyclean-libtool: + -rm -f *.lo + + clean-libtool: + -rm -rf .libs _libs + + distclean-libtool: + -rm -f libtool +Index: epiphany-browser-2.22.0/intltool-extract.in +=================================================================== +--- epiphany-browser-2.22.0.orig/intltool-extract.in ++++ epiphany-browser-2.22.0/intltool-extract.in +@@ -740,16 +740,28 @@ + $message =~ s/\\\"/\"/g; + $message = entity_decode($message); + $before =~ s/[^\n]//g; + $messages{$message} = []; + $loc{$message} = length ($before) + 2; + } + } + ++sub type_quotedxml { ++ while ($input =~ /\"(([^\"]|\\\")*[^\\\"])\"/g) { ++ my $message = $1; ++ my $before = $`; ++ $message =~ s/\\\"/\"/g; ++ $message = entity_decode($message); ++ $before =~ s/[^\n]//g; ++ $messages{$message} = []; ++ $loc{$message} = length ($before) + 2; ++ } ++} ++ + sub type_glade { + ### For translatable Glade XML files ### + + my $tags = "label|title|text|format|copyright|comments|preview_text|tooltip|message"; + + while ($input =~ /<($tags)>([^<]+)<\/($tags)>/sg) { + # Glade sometimes uses tags that normally mark translatable things for + # little bits of non-translatable content. We work around this by not --- epiphany-browser-2.22.0.orig/debian/patches/11_useragent-weasel.patch +++ epiphany-browser-2.22.0/debian/patches/11_useragent-weasel.patch @@ -0,0 +1,18 @@ +Index: epiphany-2.18.3/data/weasel-ua-pref.js.in +=================================================================== +--- epiphany-2.18.3.orig/data/weasel-ua-pref.js.in 2007-07-04 22:20:08.250260516 +0200 ++++ epiphany-2.18.3/data/weasel-ua-pref.js.in 2007-07-04 22:23:24.133423262 +0200 +@@ -1,6 +1,7 @@ +-// Add "Firefox/@WEASEL_UA_VERSION@" to the UA. This fixes +-// [https://bugzilla.mozilla.org/show_bug.cgi?id=334967] +-// Same as Camino [https://bugzilla.mozilla.org/show_bug.cgi?id=384721] and +-// IceApe [https://bugzilla.mozilla.org/show_bug.cgi?id=386113] do. +-// Also see discussion on [https://bugzilla.mozilla.org/show_bug.cgi?id=385999]. +-pref("general.useragent.extra.firefox", "Firefox/@WEASEL_UA_VERSION@"); ++ ++// The following breaks the UA by adding Firefox to it, but it also ++// fixes interaction with poorly written websites with broken UA checks. ++// See https://bugzilla.mozilla.org/show_bug.cgi?id=384721#c6 to ++// understand why this is a bad idea and isn't enabled in Debian. ++// ++// pref("general.useragent.extra.firefox", "Firefox/@WEASEL_UA_VERSION@"); --- epiphany-browser-2.22.0.orig/debian/patches/98a_nsipromptservice2_workaround.patch +++ epiphany-browser-2.22.0/debian/patches/98a_nsipromptservice2_workaround.patch @@ -0,0 +1,303 @@ +Index: embed/mozilla/EphyPromptService.cpp +=================================================================== +--- a/embed/mozilla/EphyPromptService.cpp (revision 7834) ++++ b/embed/mozilla/EphyPromptService.cpp (working copy) +@@ -31,6 +31,7 @@ + #include + #include + #include ++#include + + #include "ephy-embed-shell.h" + #include "ephy-gui.h" +@@ -41,6 +42,14 @@ + #include "EphyUtils.h" + + #include "EphyPromptService.h" ++#include "nsIChannel.h" ++#include "nsIProxiedChannel.h" ++#include "nsIProxyInfo.h" ++#include "nsNetCID.h" ++#include "nsIURI.h" ++#include "nsNetUtil.h" ++#include "nsIIDNService.h" ++#include "nsIAuthInformation.h" + + #define TIMEOUT 1000 /* ms */ + #define TIMEOUT_DATA_KEY "timeout" +@@ -645,11 +654,11 @@ + /* FIXME: needs THREADSAFE? */ + #if HAVE_NSINONBLOCKINGALERTSERVICE_H + NS_IMPL_ISUPPORTS2 (EphyPromptService, +- nsIPromptService, ++ nsIPromptService2, + nsINonBlockingAlertService) + #else + NS_IMPL_ISUPPORTS1 (EphyPromptService, +- nsIPromptService) ++ nsIPromptService2) + #endif + + EphyPromptService::EphyPromptService() +@@ -885,4 +894,216 @@ + return NS_OK; + } + ++static void ++NS_GetAuthHostPort(nsIChannel* aChannel, nsIAuthInformation* aAuthInfo, ++ PRBool machineProcessing, nsCString& host, PRInt32* port) ++{ ++ nsCOMPtr uri; ++ nsresult rv = aChannel->GetURI(getter_AddRefs(uri)); ++ if (NS_FAILED(rv)) ++ return; ++ ++ // Have to distinguish proxy auth and host auth here... ++ PRUint32 flags; ++ aAuthInfo->GetFlags(&flags); ++ if (flags & nsIAuthInformation::AUTH_PROXY) { ++ nsCOMPtr proxied(do_QueryInterface(aChannel)); ++ NS_ASSERTION(proxied, "proxy auth needs nsIProxiedChannel"); ++ ++ nsCOMPtr info; ++ proxied->GetProxyInfo(getter_AddRefs(info)); ++ NS_ASSERTION(info, "proxy auth needs nsIProxyInfo"); ++ ++ nsCAutoString idnhost; ++ info->GetHost(idnhost); ++ info->GetPort(port); ++ ++ if (machineProcessing) { ++ nsCOMPtr idnService = ++ do_GetService(NS_IDNSERVICE_CONTRACTID); ++ if (idnService) { ++ idnService->ConvertUTF8toACE(idnhost, host); ++ } else { ++ // Not much we can do here... ++ host = idnhost; ++ } ++ } else { ++ host = idnhost; ++ } ++ } else { ++ if (machineProcessing) { ++ uri->GetAsciiHost(host); ++ *port = NS_GetRealPort(uri); ++ } else { ++ uri->GetHost(host); ++ uri->GetPort(port); ++ } ++ } ++} ++ ++static nsresult ++MakeDialogText(nsIChannel* aChannel, nsIAuthInformation* aAuthInfo, ++ nsString& message) ++{ ++ nsresult rv; ++ nsCOMPtr bundleSvc = ++ do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv); ++ NS_ENSURE_SUCCESS(rv, rv); ++ ++ nsCOMPtr bundle; ++ rv = bundleSvc->CreateBundle("chrome://global/locale/prompts.properties", ++ getter_AddRefs(bundle)); ++ NS_ENSURE_SUCCESS(rv, rv); ++ ++ // figure out what message to display... ++ nsCAutoString host; ++ PRInt32 port; ++ NS_GetAuthHostPort(aChannel, aAuthInfo, PR_FALSE, host, &port); ++ ++ nsAutoString displayHost; ++ CopyUTF8toUTF16(host, displayHost); ++ ++ nsCOMPtr uri; ++ aChannel->GetURI(getter_AddRefs(uri)); ++ ++ nsCAutoString scheme; ++ uri->GetScheme(scheme); ++ ++ nsAutoString username; ++ aAuthInfo->GetUsername(username); ++ ++ PRUint32 flags; ++ aAuthInfo->GetFlags(&flags); ++ PRBool proxyAuth = (flags & nsIAuthInformation::AUTH_PROXY) != 0; ++ ++ nsAutoString realm; ++ aAuthInfo->GetRealm(realm); ++ ++ // Append the port if it was specified ++ if (port != -1) { ++ displayHost.Append(PRUnichar(':')); ++ displayHost.AppendInt(port); ++ } ++ ++ NS_NAMED_LITERAL_STRING(proxyText, "EnterUserPasswordForProxy"); ++ NS_NAMED_LITERAL_STRING(originText, "EnterUserPasswordForRealm"); ++ NS_NAMED_LITERAL_STRING(noRealmText, "EnterUserPasswordFor"); ++ NS_NAMED_LITERAL_STRING(passwordText, "EnterPasswordFor"); ++ ++ const PRUnichar *text; ++ if (proxyAuth) { ++ text = proxyText.get(); ++ } else { ++ text = originText.get(); ++ ++ // prepend "scheme://" ++ nsAutoString schemeU; ++ CopyASCIItoUTF16(scheme, schemeU); ++ schemeU.AppendLiteral("://"); ++ displayHost.Insert(schemeU, 0); ++ } ++ ++ const PRUnichar *strings[] = { realm.get(), displayHost.get() }; ++ PRUint32 count = NS_ARRAY_LENGTH(strings); ++ ++ if (flags & nsIAuthInformation::ONLY_PASSWORD) { ++ text = passwordText.get(); ++ strings[0] = username.get(); ++ } else if (!proxyAuth && realm.IsEmpty()) { ++ text = noRealmText.get(); ++ count--; ++ strings[0] = strings[1]; ++ } ++ ++ rv = bundle->FormatStringFromName(text, strings, count, getter_Copies(message)); ++ return rv; ++} ++ ++/* static */ nsresult ++EphyPromptService::PromptPasswordAdapter(nsIPromptService* aService, ++ nsIDOMWindow* aParent, ++ nsIChannel* aChannel, ++ PRUint32 aLevel, ++ nsIAuthInformation* aAuthInfo, ++ const PRUnichar* aCheckLabel, ++ PRBool* aCheckValue, ++ PRBool* retval) ++{ ++ // construct the message string ++ nsString message; ++ MakeDialogText(aChannel, aAuthInfo, message); ++ ++ nsAutoString defaultUser, defaultDomain, defaultPass; ++ aAuthInfo->GetUsername(defaultUser); ++ aAuthInfo->GetDomain(defaultDomain); ++ aAuthInfo->GetPassword(defaultPass); ++ ++ PRUint32 flags; ++ aAuthInfo->GetFlags(&flags); ++ ++ if ((flags & nsIAuthInformation::NEED_DOMAIN) && !defaultDomain.IsEmpty()) { ++ defaultDomain.Append(PRUnichar('\\')); ++ defaultUser.Insert(defaultDomain, 0); ++ } ++ ++ // NOTE: Allocation failure is not fatal here (just default to empty string ++ // if allocation fails) ++ PRUnichar *user = ToNewUnicode(defaultUser), ++ *pass = ToNewUnicode(defaultPass); ++ nsresult rv; ++ if (flags & nsIAuthInformation::ONLY_PASSWORD) ++ rv = aService->PromptPassword(aParent, nsnull, message.get(), ++ &pass, aCheckLabel, ++ aCheckValue, retval); ++ else ++ rv = aService->PromptUsernameAndPassword(aParent, nsnull, message.get(), ++ &user, &pass, aCheckLabel, ++ aCheckValue, retval); ++ ++ nsString userStr(user); ++ nsString passStr(pass); ++ aAuthInfo->SetUsername(userStr); ++ aAuthInfo->SetPassword(passStr); ++ ++ return rv; ++} ++ ++/* boolean promptAuth (in nsIDOMWindow aParent, in nsIChannel aChannel, in PRUint32 level, in nsIAuthInformation authInfo, in wstring checkboxLabel, inout boolean checkValue); */ ++NS_METHOD ++EphyPromptService::PromptAuth(nsIDOMWindow *aParent, ++ nsIChannel *aChannel, ++ PRUint32 level, ++ nsIAuthInformation *authInfo, ++ const PRUnichar *checkboxLabel, ++ PRBool *checkValue, ++ PRBool *_retval) ++{ ++ NS_ENSURE_ARG_POINTER (_retval); ++ NS_ENSURE_ARG_POINTER (authInfo); ++ ++ return EphyPromptService::PromptPasswordAdapter(this, ++ aParent, ++ aChannel, ++ level, ++ authInfo, ++ checkboxLabel, ++ checkValue, ++ _retval); ++} ++ ++/* nsICancelable asyncPromptAuth (in nsIDOMWindow aParent, in nsIChannel aChannel, in nsIAuthPromptCallback aCallback, in nsISupports aContext, in PRUint32 level, in nsIAuthInformation authInfo, in wstring checkboxLabel, inout boolean checkValue); */ ++NS_METHOD EphyPromptService::AsyncPromptAuth(nsIDOMWindow *aParent, ++ nsIChannel *aChannel, ++ nsIAuthPromptCallback *aCallback, ++ nsISupports *aContext, ++ PRUint32 level, ++ nsIAuthInformation *authInfo, ++ const PRUnichar *checkboxLabel, ++ PRBool *checkValue, ++ nsICancelable **_retval) ++{ ++ return NS_ERROR_NOT_IMPLEMENTED; ++} ++ ++ + #endif /* HAVE_NSINONBLOCKINGALERTSERVICE_H */ +Index: embed/mozilla/EphyPromptService.h +=================================================================== +--- a/embed/mozilla/EphyPromptService.h (revision 7834) ++++ b/embed/mozilla/EphyPromptService.h (working copy) +@@ -22,6 +22,7 @@ + #define EPHY_PROMPT_SERVICE_H + + #include ++#include + + #if HAVE_NSINONBLOCKINGALERTSERVICE_H + #include +@@ -34,7 +35,7 @@ + + #define EPHY_PROMPT_SERVICE_CLASSNAME "Epiphany Prompt Service" + +-class EphyPromptService : public nsIPromptService ++class EphyPromptService : public nsIPromptService2 + #if HAVE_NSINONBLOCKINGALERTSERVICE_H + , public nsINonBlockingAlertService + #endif +@@ -42,12 +43,23 @@ + public: + NS_DECL_ISUPPORTS + NS_DECL_NSIPROMPTSERVICE ++ NS_DECL_NSIPROMPTSERVICE2 + #if HAVE_NSINONBLOCKINGALERTSERVICE_H + NS_DECL_NSINONBLOCKINGALERTSERVICE + #endif + + EphyPromptService(); + virtual ~EphyPromptService(); ++ ++ protected: ++ static nsresult PromptPasswordAdapter(nsIPromptService* aService, ++ nsIDOMWindow* aParent, ++ nsIChannel* aChannel, ++ PRUint32 aLevel, ++ nsIAuthInformation* aAuthInfo, ++ const PRUnichar* aCheckLabel, ++ PRBool* aCheckValue, ++ PRBool* retval); + }; + + #endif /* EPHY_PROMPT_SERVICE_H */ --- epiphany-browser-2.22.0.orig/debian/patches/98_ephy-boot-xul-early.patch +++ epiphany-browser-2.22.0/debian/patches/98_ephy-boot-xul-early.patch @@ -0,0 +1,12 @@ +Index: epiphany-browser-2.21.90/src/ephy-shell.c +=================================================================== +--- epiphany-browser-2.21.90/src/ephy-shell.c (revision 7927) ++++ epiphany-browser-2.21.90/src/ephy-shell.c (working copy) +@@ -248,6 +248,7 @@ + ephy_shell = shell; + g_object_add_weak_pointer (G_OBJECT(ephy_shell), + (gpointer *)ptr); ++ impl_get_embed_single(EPHY_EMBED_SHELL(shell)); + } + + static void --- epiphany-browser-2.22.0.orig/debian/patches/06_ssl_weak_ciphers.patch +++ epiphany-browser-2.22.0/debian/patches/06_ssl_weak_ciphers.patch @@ -0,0 +1,11 @@ +Index: epiphany-2.20.0/data/default-prefs-common.js +=================================================================== +--- epiphany-2.20.0.orig/data/default-prefs-common.js 2007-08-27 22:19:01.000000000 +0200 ++++ epiphany-2.20.0/data/default-prefs-common.js 2007-09-21 14:29:58.022393868 +0200 +@@ -163,3 +163,6 @@ + // set to true for parity with gtk entries + pref("bidi.edit.delete_immediately", true); + ++// enable weak SSL ciphers, as Epiphany warns about them anyway ++pref("security.ssl3.rsa_rc4_40_md5", true); ++pref("security.ssl3.rsa_rc2_40_md5", true); --- epiphany-browser-2.22.0.orig/debian/patches/04_move_tabs.patch +++ epiphany-browser-2.22.0/debian/patches/04_move_tabs.patch @@ -0,0 +1,13 @@ +Index: epiphany-browser-2.18.0/src/ephy-notebook.c +=================================================================== +--- epiphany-browser-2.18.0.orig/src/ephy-notebook.c 2007-03-06 12:31:28.000000000 +0000 ++++ epiphany-browser-2.18.0/src/ephy-notebook.c 2007-03-11 20:57:46.000000000 +0000 +@@ -58,7 +58,7 @@ + #define TOOLTIP_MAX_LENGTH 256 + + /* Until https://bugzilla.mozilla.org/show_bug.cgi?id=296002 is fixed */ +-#define KEEP_TAB_IN_SAME_TOPLEVEL ++#undef KEEP_TAB_IN_SAME_TOPLEVEL + + #define EPHY_NOTEBOOK_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_NOTEBOOK, EphyNotebookPrivate)) + --- epiphany-browser-2.22.0.orig/debian/patches/98b_gtk_nss_dialog_missing_symbol.patch +++ epiphany-browser-2.22.0/debian/patches/98b_gtk_nss_dialog_missing_symbol.patch @@ -0,0 +1,40 @@ +--- + embed/mozilla/GtkNSSDialogs.cpp | 15 +++++++++++++++ + 1 file changed, 15 insertions(+) + +Index: epiphany-browser-2.21.4/embed/mozilla/GtkNSSDialogs.cpp +=================================================================== +--- epiphany-browser-2.21.4.orig/embed/mozilla/GtkNSSDialogs.cpp ++++ epiphany-browser-2.21.4/embed/mozilla/GtkNSSDialogs.cpp +@@ -1551,16 +1551,31 @@ + static void + SelectionChangedCallback (GtkComboBox *combo, + GtkDialog *dialog) + { + int active = gtk_combo_box_get_active (combo); + gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_ACCEPT, active >= 0); + } + ++#ifdef HAVE_GECKO_1_9 ++/** ++* displayProtectedAuth - displays notification dialog to the user ++* that he is expected to authenticate to the token using its ++* "protected authentication path" feature ++*/ ++/* void displayProtectedAuth (in nsIInterfaceRequestor ctx, in nsIProtectedAuthThread runnable); */ ++NS_IMETHODIMP ++GtkNSSDialogs::DisplayProtectedAuth (nsIInterfaceRequestor *ctx, ++ nsIProtectedAuthThread *runnable) ++{ ++ return NS_OK; ++} ++#endif ++ + /* void ChooseToken (in nsIInterfaceRequestor ctx, + [array, size_is (count)] in wstring tokenNameList, + in unsigned long count, + out wstring tokenName, + out boolean canceled); */ + NS_IMETHODIMP + GtkNSSDialogs::ChooseToken (nsIInterfaceRequestor *aContext, + const PRUnichar **tokenNameList, --- epiphany-browser-2.22.0.orig/debian/patches/98_xulrunner1.9.patch.sav1 +++ epiphany-browser-2.22.0/debian/patches/98_xulrunner1.9.patch.sav1 @@ -0,0 +1,756 @@ +--- + doc/reference/Makefile.am | 4 + embed/Makefile.am | 1 + embed/mozilla/EphyUtils.cpp | 2 + embed/mozilla/EphyUtils.h | 2 + embed/mozilla/GtkNSSDialogs.cpp | 17 ++ + embed/mozilla/Makefile.am | 7 + embed/mozilla/mozilla-embed-single.cpp | 244 ++++++++++++++++++++++++++++++--- + plugins/desktop-file/Makefile.am | 7 + src/Makefile.am | 15 ++ + 9 files changed, 277 insertions(+), 22 deletions(-) + +Index: epiphany-browser-2.21.92/doc/reference/Makefile.am +=================================================================== +--- epiphany-browser-2.21.92.orig/doc/reference/Makefile.am ++++ epiphany-browser-2.21.92/doc/reference/Makefile.am +@@ -202,20 +202,20 @@ + DOC_OVERRIDES = + + # include common portion ... + # include $(top_srcdir)/gtk-doc.make + # We need to copy/paste this to be able to change LD_LIBRARY_PATH + + if GTK_DOC_USE_LIBTOOL + GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) +-GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++GTKDOC_LD = $(LIBTOOL) --mode=link $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) + else + GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) +-GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) ++GTKDOC_LD = $(CXX) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) + endif + + # We set GPATH here; this gives us semantics for GNU make + # which are more like other make's VPATH, when it comes to + # whether a source that is a target of one rule is then + # searched for in VPATH/GPATH. + # + GPATH = $(srcdir) +Index: epiphany-browser-2.21.92/embed/Makefile.am +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/Makefile.am ++++ epiphany-browser-2.21.92/embed/Makefile.am +@@ -112,16 +112,17 @@ + $(NULL) + endif + + if WITH_GECKO_ENGINE + libephyembedfactory_la_CPPFLAGS += -I$(GECKO_INCLUDE_ROOT)/gtkembedmoz + endif + + libephyembedfactory_la_CFLAGS = \ ++ $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CFLAGS) + + CLEANFILES = $(stamp_files) $(BUILT_SOURCES) + DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES) + + stamp_files = \ +Index: epiphany-browser-2.21.92/embed/mozilla/GtkNSSDialogs.cpp +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/mozilla/GtkNSSDialogs.cpp ++++ epiphany-browser-2.21.92/embed/mozilla/GtkNSSDialogs.cpp +@@ -1559,16 +1559,33 @@ + static void + SelectionChangedCallback (GtkComboBox *combo, + GtkDialog *dialog) + { + int active = gtk_combo_box_get_active (combo); + gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_ACCEPT, active >= 0); + } + ++ ++#ifdef HAVE_GECKO_1_9 ++/** ++ * displayProtectedAuth - displays notification dialog to the user ++ * that he is expected to authenticate to the token using its ++ * "protected authentication path" feature ++ */ ++/* void displayProtectedAuth (in nsIInterfaceRequestor ctx, in nsIProtectedAuthThread runnable); */ ++NS_IMETHODIMP ++GtkNSSDialogs::DisplayProtectedAuth (nsIInterfaceRequestor *ctx, ++ nsIProtectedAuthThread *runnable) ++{ ++ return NS_ERROR_NOT_IMPLEMENTED; ++} ++#endif ++ ++ + /* void ChooseToken (in nsIInterfaceRequestor ctx, + [array, size_is (count)] in wstring tokenNameList, + in unsigned long count, + out wstring tokenName, + out boolean canceled); */ + NS_IMETHODIMP + GtkNSSDialogs::ChooseToken (nsIInterfaceRequestor *aContext, + const PRUnichar **tokenNameList, +Index: epiphany-browser-2.21.92/embed/mozilla/Makefile.am +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/mozilla/Makefile.am ++++ epiphany-browser-2.21.92/embed/mozilla/Makefile.am +@@ -154,12 +154,19 @@ + -DPLUGINDIR=\"$(libexecdir)/$(EPIPHANY_MAJOR)/plugins\" \ + -DMOZILLA_HOME=\"$(GECKO_HOME)\" \ + -DMOZILLA_PREFIX=\"$(GECKO_PREFIX)\" \ + -DMOZILLA_NATIVE_PLUGINSDIR=\"$(libdir)/mozilla/plugins\" \ + -DUA_VERSION=\"$(EPIPHANY_UA_VERSION)\" \ + -DALLOW_PRIVATE_API \ + $(AM_CPPFLAGS) + ++if HAVE_GECKO_XPCOM_GLUE ++if HAVE_GECKO_1_9 ++libephymozillaembed_la_CPPFLAGS += \ ++ -DXPCOM_GLUE_USE_NSPR ++endif ++endif ++ + libephymozillaembed_la_CXXFLAGS = \ + $(GECKO_CFLAGS) \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CXXFLAGS) +Index: epiphany-browser-2.21.92/plugins/desktop-file/Makefile.am +=================================================================== +--- epiphany-browser-2.21.92.orig/plugins/desktop-file/Makefile.am ++++ epiphany-browser-2.21.92/plugins/desktop-file/Makefile.am +@@ -20,13 +20,18 @@ + $(AM_CXXFLAGS) + + libdesktopfileplugin_la_LIBADD = \ + $(DESKTOP_FILE_PLUGIN_DEP_LIBS) + + libdesktopfileplugin_la_LDFLAGS = \ + -module -avoid-version \ + -export-symbols $(srcdir)/plugin.symbols \ +- -R$(GECKO_HOME) \ + $(AM_LDFLAGS) + ++if !HAVE_GECKO_XPCOM_GLUE ++ libdesktopfileplugin_la_LDFLAGS += \ ++ -R$(GECKO_HOME) \ ++ $(NULL) ++endif ++ + EXTRA_DIST = \ + plugin.symbols +Index: epiphany-browser-2.21.92/src/Makefile.am +=================================================================== +--- epiphany-browser-2.21.92.orig/src/Makefile.am ++++ epiphany-browser-2.21.92/src/Makefile.am +@@ -183,30 +183,41 @@ + + libpyphany_la_LIBADD = \ + $(DEPENDENCIES_LIBS) \ + $(PYTHON_LIB_LOC) $(PYTHON_LIBS) \ + $(PYTHON_EXTRA_LIBS) \ + $(PYGTK_LIBS) + endif + ++ ++# we do this to force c++ linkage if we are using the glue and ++# are running gecko 1.9 because standalone glue embedders that use ++# gtk_moz_embed_* need to #include ++if HAVE_GECKO_1_9 ++if HAVE_GECKO_XPCOM_GLUE ++nodist_EXTRA_epiphany_SOURCES = dummy.cpp ++endif ++endif ++ + epiphany_SOURCES = ephy-main.c + + epiphany_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/embed \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src/bookmarks \ + -DDATADIR=\""$(datadir)"\" \ + -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + $(INCINTL) \ + $(AM_CPPFLAGS) + + epiphany_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ ++ $(GECKO_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(AM_CFLAGS) + + epiphany_LDFLAGS = -dlopen self + + epiphany_LDADD = \ + libephymain.la \ + $(top_builddir)/src/bookmarks/libephybookmarks.la \ +@@ -217,16 +228,17 @@ + $(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \ + $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ + $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \ + $(top_builddir)/embed/xulrunner/components/libephycomponents.la + endif + + if WITH_GECKO_ENGINE + epiphany_LDADD += \ ++ $(GECKO_LIBS) \ + $(top_builddir)/embed/mozilla/libephymozillaembed.la + endif + + if WITH_WEBKIT_ENGINE + epiphany_LDADD += \ + $(top_builddir)/embed/webkit/libephywebkitembed.la + endif + +@@ -237,30 +249,33 @@ + $(top_builddir)/lib/egg/libegg.la + + if WITH_XULRUNNER_ENGINE + epiphany_LDFLAGS += -R$(LIBXUL_LIBDIR) + epiphany_LDADD += $(LIBXUL_LIBS) -lxpcomglue + endif + + if WITH_GECKO_ENGINE ++if !HAVE_GECKO_XPCOM_GLUE + epiphany_LDFLAGS += -R$(GECKO_HOME) ++endif + + epiphany_LDADD += \ + $(GECKO_LIBS) \ + $(GECKO_EXTRA_LIBS) \ + $(GECKO_GLUE_LIBS) + endif + + if WITH_WEBKIT_ENGINE + epiphany_LDADD += \ + $(WEBKIT_LIBS) + endif + + epiphany_LDADD += \ ++ $(GECKO_LIBS) \ + $(DEPENDENCIES_LIBS) \ + $(DBUS_LIBS) \ + $(LIBINTL) + + if ENABLE_PYTHON + epiphany_LDADD += \ + libpyphany.la \ + $(PYTHON_LIB_LOC) $(PYTHON_LIBS) \ +Index: epiphany-browser-2.21.92/embed/mozilla/EphyUtils.cpp +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/mozilla/EphyUtils.cpp ++++ epiphany-browser-2.21.92/embed/mozilla/EphyUtils.cpp +@@ -159,16 +159,17 @@ + glong n_read = 0, n_written = 0; + char *converted = g_utf16_to_utf8 ((gunichar2*) aText, aMaxLength, + &n_read, &n_written, NULL); + /* FIXME loop from the end while !g_unichar_isspace (char)? */ + + return converted; + } + ++#if 0 + /* This isn't completely accurate: if you do window.prompt in one window, then + * call this in another window, it still returns TRUE ! Those are the wonders + * of recursive mainloops :-( + */ + PRBool + EphyJSUtils::IsCalledFromScript () + { + #if 1 +@@ -180,16 +181,17 @@ + + nsCOMPtr ncc; + rv = xpc->GetCurrentNativeCallContext (getter_AddRefs (ncc)); + NS_ENSURE_SUCCESS(rv, PR_FALSE); + + return nsnull != ncc; + #endif + } ++#endif + + /* NOTE: Only call this when we're SURE that we're called directly from JS! */ + nsIDOMWindow * + EphyJSUtils::GetDOMWindowFromCallContext () + { + /* TODO: We could do this on 1.8, but we'd need to use headers which include private string API + * so we'll have to move this to MozillaPrivate + */ +Index: epiphany-browser-2.21.92/embed/mozilla/EphyUtils.h +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/mozilla/EphyUtils.h ++++ epiphany-browser-2.21.92/embed/mozilla/EphyUtils.h +@@ -58,14 +58,16 @@ + + GtkWidget *FindGtkParent (nsIDOMWindow *aDOMWindow); + + char * ConvertUTF16toUTF8 (const PRUnichar*, PRInt32); + } + + namespace EphyJSUtils + { ++#if 0 + PRBool IsCalledFromScript (); ++#endif + + /* not addref'd! */ nsIDOMWindow* GetDOMWindowFromCallContext (); + } + + #endif +Index: epiphany-browser-2.21.92/embed/mozilla/mozilla-embed-single.cpp +=================================================================== +--- epiphany-browser-2.21.92.orig/embed/mozilla/mozilla-embed-single.cpp ++++ epiphany-browser-2.21.92/embed/mozilla/mozilla-embed-single.cpp +@@ -28,16 +28,21 @@ + #include + + #include + #include + #include + + #include + ++#ifdef XPCOM_GLUE ++#include ++#include ++#endif ++ + #include + #include + #include + #include + #include + #include + #include + #include +@@ -65,16 +70,19 @@ + #include + #include + #include + #endif /* ALLOW_PRIVATE_API */ + + #ifndef HAVE_GECKO_1_9 + #include + #include ++#else ++#include ++#include + #endif /* !HAVE_GECKO_1_9 */ + + #include "ephy-file-helpers.h" + #include "eel-gconf-extensions.h" + #include "ephy-certificate-manager.h" + #include "ephy-cookie-manager.h" + #include "ephy-debug.h" + #include "ephy-embed-prefs.h" +@@ -347,16 +355,17 @@ + + void + mozilla_init_profile (void) + { + char *profile_path; + profile_path = g_build_filename (ephy_dot_dir (), + MOZILLA_PROFILE_DIR, + (char *) NULL); ++ gtk_moz_embed_set_comp_path (profile_path); + gtk_moz_embed_set_profile_path (profile_path, MOZILLA_PROFILE_NAME); + g_free (profile_path); + } + + #if defined(MOZ_NSIXULCHROMEREGISTRY_SELECTSKIN) || defined(HAVE_CHROME_NSICHROMEREGISTRYSEA_H) + static nsresult + getUILang (nsAString& aUILang) + { +@@ -394,16 +403,29 @@ + if (NS_FAILED (rv)) + { + g_warning ("Failed to initialise EphySingle!\n"); + return; + } + } + + static void ++mozilla_init_login_manager (MozillaEmbedSingle *single) ++{ ++#ifdef HAVE_GECKO_1_9 ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ if (!loginManager) ++ g_warning ("Failed to instantiate LoginManager"); ++ else ++ g_debug ("LoginManager tapped"); ++#endif /* HAVE_GECKO_1_9 */ ++} ++ ++static void + user_css_register (MozillaEmbedSingle *single) + { + MozillaEmbedSinglePrivate *priv = single->priv; + + nsresult rv; + nsCOMPtr file; + rv = NS_NewNativeLocalFile (nsDependentCString (priv->user_css_file), + PR_TRUE, getter_AddRefs (file)); +@@ -588,34 +610,83 @@ + /* XPrint? No, thanks! */ + g_unsetenv ("XPSERVERLIST"); + #endif + + #ifdef HAVE_GECKO_1_9 + NS_LogInit (); + #endif + ++ nsresult rv; ++#ifdef XPCOM_GLUE ++ static const GREVersionRange greVersion = { ++ "1.9a", PR_TRUE, ++ "2", PR_TRUE ++ }; ++ char xpcomLocation[4096]; ++ rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not find a suitable GRE!\n"); ++ return FALSE; ++ } ++ ++ // Startup the XPCOM Glue that links us up with XPCOM. ++ rv = XPCOMGlueStartup(xpcomLocation); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup XPCOM glue!\n"); ++ return FALSE; ++ } ++ ++ rv = GTKEmbedGlueStartup(); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup embed glue!\n"); ++ return FALSE; ++ } ++ ++ rv = GTKEmbedGlueStartupInternal(); ++ if (NS_FAILED (rv)) ++ { ++ g_warning ("Could not startup internal glue!\n"); ++ return FALSE; ++ } ++ ++ char *lastSlash = strrchr(xpcomLocation, '/'); ++ if (lastSlash) ++ *lastSlash = '\0'; ++ ++ gtk_moz_embed_set_path(xpcomLocation); ++#else ++#ifdef HAVE_GECKO_1_9 ++ gtk_moz_embed_set_path (MOZILLA_HOME); ++#else ++ gtk_moz_embed_set_comp_path (MOZILLA_HOME); ++#endif ++#endif // XPCOM_GLUE ++ /* Fire up the beast */ ++ gtk_moz_embed_push_startup (); ++ + /* Pre initialization */ + mozilla_init_plugin_path (); + + mozilla_init_profile (); + + #ifdef HAVE_GECKO_1_9 + gtk_moz_embed_set_path (MOZILLA_HOME); + #endif + /* Set mozilla binary path */ + gtk_moz_embed_set_comp_path (MOZILLA_HOME); + + nsCOMPtr dp = new EphyDirectoryProvider (); + if (!dp) return FALSE; + + gtk_moz_embed_set_directory_service_provider (dp); + +- /* Fire up the beast */ +- gtk_moz_embed_push_startup (); + /* FIXME check that it succeeded! */ + + mozilla_register_components (); + + mozilla_init_single (single); + + if (!mozilla_set_default_prefs (single)) + { +@@ -623,17 +694,19 @@ + } + + START_PROFILER ("Mozilla prefs notifiers") + mozilla_notifiers_init (); + STOP_PROFILER ("Mozilla prefs notifiers") + + mozilla_init_observer (single); + +- mozilla_stylesheet_init (single); ++ mozilla_stylesheet_init (single); ++ ++ mozilla_init_login_manager (single); + + return TRUE; + } + + static void + prepare_close_cb (EphyEmbedShell *shell) + { + GValue value = { 0, }; +@@ -871,26 +944,103 @@ + cookieManager->RemoveAll (); + } + + static GList * + impl_list_passwords (EphyPasswordManager *manager) + { + GList *passwords = NULL; + +-#ifndef HAVE_GECKO_1_9 ++ nsCOMPtr idnService ++ (do_GetService ("@mozilla.org/network/idn-service;1")); ++ NS_ENSURE_TRUE (idnService, NULL); ++ ++#ifdef HAVE_GECKO_1_9 ++ nsILoginInfo **logins = nsnull; ++ PRUint32 count,i; ++ nsresult rv; ++ ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, NULL); ++ ++ loginManager -> GetAllLogins(&count, &logins); ++ ++ for (i=0; i < count; i++) { ++ nsString transfer; ++ nsString unicodeName; ++ rv = logins[i]->GetHostname (transfer); ++ if (NS_FAILED (rv)) continue; ++ ++ nsCString host; ++ idnService->ConvertACEtoUTF8 (NS_ConvertUTF16toUTF8(transfer), host); ++ if(transfer.IsVoid()) host.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetHttpRealm (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString httpRealm; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, httpRealm); ++ if(unicodeName.IsVoid()) httpRealm.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetUsername (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString userName; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, userName); ++ if(unicodeName.IsVoid()) userName.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetUsernameField (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString usernameField; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, usernameField); ++ if(unicodeName.IsVoid()) usernameField.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetPassword (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString userPassword; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, userPassword); ++ if(unicodeName.IsVoid()) userPassword.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetPasswordField (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString passwordField; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, passwordField); ++ if(unicodeName.IsVoid()) passwordField.SetIsVoid(PR_TRUE); ++ ++ rv = logins[i]->GetFormSubmitURL (unicodeName); ++ if (NS_FAILED (rv)) continue; ++ nsCString formSubmitURL; ++ NS_UTF16ToCString (unicodeName, ++ NS_CSTRING_ENCODING_UTF8, formSubmitURL); ++ if(unicodeName.IsVoid()) formSubmitURL.SetIsVoid(PR_TRUE); ++ ++ ++ EphyPasswordInfo *p = g_new0 (EphyPasswordInfo, 1); ++ p->host = !userName.IsVoid() ? g_strdup (host.get()) : nsnull; ++ p->username = !userName.IsVoid() ? g_strdup (userName.get()) : nsnull; ++ p->password = !userPassword.IsVoid() ? g_strdup (userPassword.get()) : nsnull; ++ p->httpRealm = !httpRealm.IsVoid() ? g_strdup(httpRealm.get()) : nsnull; ++ p->usernameField = !usernameField.IsVoid() ? g_strdup(usernameField.get()) : nsnull; ++ p->passwordField = !passwordField.IsVoid() ? g_strdup(passwordField.get()) : nsnull; ++ p->formSubmitURL = !formSubmitURL.IsVoid() ? g_strdup(formSubmitURL.get()) : nsnull; ++ ++ passwords = g_list_prepend (passwords, p); ++ } ++ ++#else // HAVE_GECKO_1_9 ++ + nsresult rv; + nsCOMPtr passwordManager = + do_GetService (NS_PASSWORDMANAGER_CONTRACTID); + if (!passwordManager) return NULL; + +- nsCOMPtr idnService +- (do_GetService ("@mozilla.org/network/idn-service;1")); +- NS_ENSURE_TRUE (idnService, NULL); +- + nsCOMPtr passwordEnumerator; + passwordManager->GetEnumerator (getter_AddRefs(passwordEnumerator)); + NS_ENSURE_TRUE (passwordEnumerator, NULL); + + PRBool enumResult; + for (passwordEnumerator->HasMoreElements(&enumResult) ; + enumResult == PR_TRUE ; + passwordEnumerator->HasMoreElements(&enumResult)) +@@ -933,41 +1083,97 @@ + + return passwords; + } + + static void + impl_remove_password (EphyPasswordManager *manager, + EphyPasswordInfo *info) + { +-#ifndef HAVE_GECKO_1_9 +- nsCOMPtr pm = +- do_GetService (NS_PASSWORDMANAGER_CONTRACTID); +- if (!pm) return; ++ nsresult rv; ++ nsString host; ++ nsString userName; ++ nsString userNameField; ++ nsString password; ++ nsString passwordField; ++ nsString httpRealm; ++ nsString formSubmitURL; + + nsCOMPtr idnService + (do_GetService ("@mozilla.org/network/idn-service;1")); + NS_ENSURE_TRUE (idnService, ); + +- nsresult rv; +- nsCString host; +- rv = idnService->ConvertUTF8toACE (nsCString(info->host), host); +- NS_ENSURE_SUCCESS (rv, ); ++ if(info->formSubmitURL != nsnull) ++ g_debug("form submit url: %s", info->formSubmitURL); ++ else ++ g_debug("form submit url is NULL"); + +- nsString userName; + NS_CStringToUTF16 (nsCString(info->username), + NS_CSTRING_ENCODING_UTF8, userName); +- pm->RemoveUser (host, userName); ++ NS_CStringToUTF16 (nsCString(info->usernameField), ++ NS_CSTRING_ENCODING_UTF8, userNameField); ++ NS_CStringToUTF16 (nsCString(info->host), ++ NS_CSTRING_ENCODING_UTF8, host); ++ NS_CStringToUTF16 (nsCString(info->httpRealm), ++ NS_CSTRING_ENCODING_UTF8, httpRealm); ++ NS_CStringToUTF16 (nsCString(info->password), ++ NS_CSTRING_ENCODING_UTF8, password); ++ NS_CStringToUTF16 (nsCString(info->passwordField), ++ NS_CSTRING_ENCODING_UTF8, passwordField); ++ NS_CStringToUTF16 (nsCString(info->formSubmitURL), ++ NS_CSTRING_ENCODING_UTF8, formSubmitURL); ++ ++#ifdef HAVE_GECKO_1_9 ++ if(!info->username) userName.SetIsVoid(PR_TRUE); ++ if(!info->usernameField) userNameField.SetIsVoid(PR_TRUE); ++ if(!info->host) host.SetIsVoid(PR_TRUE); ++ if(!info->httpRealm) httpRealm.SetIsVoid(PR_TRUE); ++ if(!info->password) password.SetIsVoid(PR_TRUE); ++ if(!info->passwordField) passwordField.SetIsVoid(PR_TRUE); ++ if(!info->formSubmitURL) formSubmitURL.SetIsVoid(PR_TRUE); ++ ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, ); ++ ++ nsCOMPtr login ++ (do_CreateInstance(NS_LOGININFO_CONTRACTID)); ++ ++ login->SetUsername(userName); ++ login->SetUsernameField(userNameField); ++ login->SetHostname(host); ++ login->SetHttpRealm(httpRealm); ++ login->SetFormSubmitURL(formSubmitURL); ++ login->SetPassword(password); ++ login->SetPasswordField(passwordField); ++ ++ rv = loginManager->RemoveLogin(login); ++ ++#else /* HAVE_GECKO_1_9 */ ++ nsCOMPtr pm = ++ do_GetService (NS_PASSWORDMANAGER_CONTRACTID); ++ if (!pm) return; ++ ++ pm->RemoveUser (nsCString(info->host), userName); + #endif /* !HAVE_GECKO_1_9 */ + } + + static void + impl_remove_all_passwords (EphyPasswordManager *manager) + { +-#ifndef HAVE_GECKO_1_9 ++#ifdef HAVE_GECKO_1_9 ++ nsCOMPtr loginManager = ++ do_GetService (NS_LOGINMANAGER_CONTRACTID); ++ NS_ENSURE_TRUE (loginManager, ); ++ ++ nsresult rv = loginManager->RemoveAllLogins(); ++ if(NS_FAILED(rv)) ++ g_warning("couldn't remove all logins"); ++ ++#else /* HAVE_GECKO_1_9 */ + nsresult rv; + nsCOMPtr passwordManager = + do_GetService (NS_PASSWORDMANAGER_CONTRACTID); + if (!passwordManager) return; + + nsCOMPtr idnService + (do_GetService ("@mozilla.org/network/idn-service;1")); + NS_ENSURE_TRUE (idnService, ); +Index: embed/ephy-password-manager.c +=================================================================== +--- a/embed/ephy-password-manager.c (revision 7988) ++++ b/embed/ephy-password-manager.c (working copy) +@@ -80,6 +80,10 @@ + copy->host = g_strdup (info->host); + copy->username = g_strdup (info->username); + copy->password = g_strdup (info->password); ++ copy->httpRealm = g_strdup (info->httpRealm); ++ copy->passwordField = g_strdup (info->passwordField); ++ copy->usernameField = g_strdup (info->usernameField); ++ copy->formSubmitURL = g_strdup (info->formSubmitURL); + + return copy; + } +Index: embed/ephy-password-manager.h +=================================================================== +--- a/embed/ephy-password-manager.h (revision 7988) ++++ b/embed/ephy-password-manager.h (working copy) +@@ -44,6 +44,11 @@ + char *host; + char *username; + char *password; ++ ++ char *httpRealm; ++ char *formSubmitURL; ++ char *usernameField; ++ char *passwordField; + } EphyPasswordInfo; + + struct _EphyPasswordManagerIface --- epiphany-browser-2.22.0.orig/debian/patches/07_bookmarks.patch +++ epiphany-browser-2.22.0/debian/patches/07_bookmarks.patch @@ -0,0 +1,15 @@ +Index: epiphany-browser-2.18.0/src/bookmarks/ephy-bookmarks.c +=================================================================== +--- epiphany-browser-2.18.0.orig/src/bookmarks/ephy-bookmarks.c 2007-03-06 12:31:26.000000000 +0000 ++++ epiphany-browser-2.18.0/src/bookmarks/ephy-bookmarks.c 2007-03-11 21:01:42.000000000 +0000 +@@ -102,6 +102,10 @@ + * For instance in .nl these should be + * "http://www.google.nl" and "http://www.google.nl/search?q=%s" + */ ++ { N_("Debian"), N_("http://www.debian.org/") }, ++ { N_("GNOME"), N_("http://www.gnome.org/") }, ++ { N_("Planet Debian"), N_("http://planet.debian.org/") }, ++ { N_("Debian Bug Tracking System"), N_("http://bugs.debian.org/%s") }, + { N_("Search the web"), N_("http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8") } + }; + --- epiphany-browser-2.22.0.orig/debian/patches/09_download_dialog.patch +++ epiphany-browser-2.22.0/debian/patches/09_download_dialog.patch @@ -0,0 +1,147 @@ +Index: embed/mozilla/ContentHandler.cpp +=================================================================== +--- embed/mozilla/ContentHandler.cpp.orig 2007-08-27 22:19:02.000000000 +0200 ++++ embed/mozilla/ContentHandler.cpp 2007-09-21 14:30:06.194859590 +0200 +@@ -336,8 +336,11 @@ + + gtk_dialog_add_button (GTK_DIALOG (dialog), + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); +- gtk_dialog_add_button (GTK_DIALOG (dialog), +- action_label, mAction); ++ if (mAction != CONTENT_ACTION_NONE) ++ { ++ gtk_dialog_add_button (GTK_DIALOG (dialog), ++ action_label, mAction); ++ } + + gtk_window_set_icon_name (GTK_WINDOW (dialog), EPHY_STOCK_EPHY); + +@@ -385,20 +388,16 @@ + } + + if (auto_downloads) +- { +- mAction = CONTENT_ACTION_OPEN; +- } ++ mAction = mHelperApp ? CONTENT_ACTION_OPEN : CONTENT_ACTION_DOWNLOAD; + else +- { +- mAction = CONTENT_ACTION_OPEN_TMP; +- } ++ mAction = mHelperApp ? CONTENT_ACTION_OPEN_TMP : CONTENT_ACTION_SAVEAS; + +- if (!mHelperApp || mPermission != EPHY_MIME_PERMISSION_SAFE) ++ if (mPermission != EPHY_MIME_PERMISSION_SAFE) + { +- mAction = CONTENT_ACTION_DOWNLOAD; ++ mAction = auto_downloads ? CONTENT_ACTION_DOWNLOAD : CONTENT_ACTION_NONE; ++ MIMEConfirmAction (); + } +- +- if (!auto_downloads || mAction == CONTENT_ACTION_DOWNLOAD) ++ else if (mAction == CONTENT_ACTION_OPEN_TMP) + { + MIMEConfirmAction (); + } +Index: data/glade/prefs-dialog.glade +=================================================================== +--- data/glade/prefs-dialog.glade.orig 2007-08-27 22:19:01.000000000 +0200 ++++ data/glade/prefs-dialog.glade 2007-09-21 14:30:06.198859818 +0200 +@@ -303,6 +303,25 @@ + 6 + + ++ ++ True ++ True ++ A_utomatically download and open files ++ True ++ GTK_RELIEF_NORMAL ++ True ++ False ++ False ++ True ++ ++ ++ 0 ++ False ++ False ++ ++ ++ ++ + + True + False +@@ -343,25 +362,6 @@ + True + + +- +- +- +- True +- True +- A_utomatically download and open files +- True +- GTK_RELIEF_NORMAL +- True +- False +- False +- True +- +- +- 0 +- False +- False +- +- + + + +Index: src/prefs-dialog.c +=================================================================== +--- src/prefs-dialog.c.orig 2007-08-27 22:18:55.000000000 +0200 ++++ src/prefs-dialog.c 2007-09-21 14:30:06.198859818 +0200 +@@ -391,6 +391,13 @@ + } + + static void ++automatic_downloads_toggled (GtkToggleButton *button, ++ GtkWidget *widget) ++{ ++ g_object_set (widget, "sensitive", gtk_toggle_button_get_active (button), NULL); ++} ++ ++static void + setup_font_combo (EphyDialog *dialog, + const char *type, + const char *code, +@@ -1525,6 +1532,7 @@ + EphyDialog *dialog = EPHY_DIALOG (pd); + EphyEncodings *encodings; + GtkWidget *window, *curr_button, *blank_button; ++ GtkWidget *automatic_downloads_checkbutton, *download_button_hbox; + GtkWidget *clear_cache_button, *font_prefs_button; + GtkWidget *css_checkbox, *css_edit_box, *css_edit_button, *css_container; + gboolean sensitive; +@@ -1545,6 +1553,8 @@ + properties[WINDOW_PROP].id, &window, + properties[HOMEPAGE_CURRENT_PROP].id, &curr_button, + properties[HOMEPAGE_BLANK_PROP].id, &blank_button, ++ properties[AUTO_OPEN_PROP].id, &automatic_downloads_checkbutton, ++ properties[DOWNLOAD_PATH_HBOX_PROP].id, &download_button_hbox, + properties[FONT_PREFS_BUTTON_PROP].id, &font_prefs_button, + properties[CSS_CHECKBOX_PROP].id, &css_checkbox, + properties[CSS_EDIT_BOX_PROP].id, &css_edit_box, +@@ -1568,6 +1578,10 @@ + gtk_widget_set_sensitive (curr_button, sensitive); + gtk_widget_set_sensitive (blank_button, sensitive); + ++ automatic_downloads_toggled (GTK_TOGGLE_BUTTON (automatic_downloads_checkbutton), download_button_hbox); ++ g_signal_connect (automatic_downloads_checkbutton, "toggled", ++ G_CALLBACK (automatic_downloads_toggled), download_button_hbox); ++ + g_signal_connect (font_prefs_button, "clicked", + G_CALLBACK (font_prefs_button_clicked_cb), dialog); + --- epiphany-browser-2.22.0.orig/debian/epiphany-gecko.menu +++ epiphany-browser-2.22.0/debian/epiphany-gecko.menu @@ -0,0 +1,6 @@ +?package(epiphany-gecko):needs="x11" \ + section="Applications/Network/Web Browsing" \ + title="Epiphany web browser (Gecko)" \ + longtitle="Epiphany web browser with Gecko backend" \ + command="/usr/bin/epiphany-gecko" \ + hints="Web browsers" --- epiphany-browser-2.22.0.orig/debian/epiphany-browser-dev.dirs +++ epiphany-browser-2.22.0/debian/epiphany-browser-dev.dirs @@ -0,0 +1,2 @@ +/usr/lib +/usr/share --- epiphany-browser-2.22.0.orig/debian/epiphany-browser.install +++ epiphany-browser-2.22.0/debian/epiphany-browser.install @@ -0,0 +1,2 @@ +debian/epiphany.sh /usr/bin/ +debian/bug/control /usr/share/bug/epiphany-browser/ --- epiphany-browser-2.22.0.orig/debian/epiphany-gecko.prerm +++ epiphany-browser-2.22.0/debian/epiphany-gecko.prerm @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then + for alt in epiphany-browser x-www-browser gnome-www-browser; do + update-alternatives --remove $alt /usr/bin/epiphany-gecko + done +fi + +#DEBHELPER# + +exit 0 --- epiphany-browser-2.22.0.orig/debian/watch +++ epiphany-browser-2.22.0/debian/watch @@ -0,0 +1,4 @@ +version=2 +http://download.gnome.org/sources/epiphany/([\d\.]+)[02468]/ \ + epiphany-(.*)\.tar\.gz \ + debian uupdate --- epiphany-browser-2.22.0.orig/debian/epiphany-browser-data.gconf-defaults +++ epiphany-browser-2.22.0/debian/epiphany-browser-data.gconf-defaults @@ -0,0 +1,2 @@ +/apps/epiphany/general/homepage file:///usr/share/ubuntu-artwork/home/locales/index-%l.html +/apps/epiphany/web/language [system] --- epiphany-browser-2.22.0.orig/debian/copyright +++ epiphany-browser-2.22.0/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Edd Dumbill on 14 Feb 2003. + +It was downloaded from + +Upstream authors: + Marco Pesenti Gritti + Xan Lopez + Christian Persch + Adam Hooper + Jean-François Rameau + Crispin Flowerday + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2003-2007, the Debian GNOME team + and +is licensed under the GPL, see above. --- epiphany-browser-2.22.0.orig/debian/epiphany-gecko.postinst +++ epiphany-browser-2.22.0/debian/epiphany-gecko.postinst @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +for alt in epiphany-browser x-www-browser gnome-www-browser; do + update-alternatives --install \ + /usr/bin/$alt $alt /usr/bin/epiphany-gecko 85 \ + --slave /usr/share/man/man1/$alt.1.gz $alt.1.gz /usr/share/man/man1/epiphany-gecko.1.gz +done + +#DEBHELPER# + +exit 0 --- epiphany-browser-2.22.0.orig/debian/rules +++ epiphany-browser-2.22.0/debian/rules @@ -0,0 +1,176 @@ +#!/usr/bin/make -f + +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +DEB_VERSION := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') +include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +GNOME_MODULE := epiphany + +STAMP_DIR := debian/stamp +BUILD_DIR := debian/build +PATCH_DIR := debian/patches + +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) + +CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) + +FLAVORS := gecko + +common_configure_flags := \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-dbus \ + --disable-scrollkeeper \ + --enable-zeroconf \ + --enable-python \ + --enable-network-manager + +ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + common_configure_flags += --build=$(DEB_BUILD_GNU_TYPE) +else + common_configure_flags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) +endif + +gecko_configure_flags := $(common_configure_flags) \ + --libexecdir=\$${prefix}/lib/epiphany-gecko \ + --with-engine=mozilla \ + --with-gecko=libxul-embedding \ + --enable-gtk-doc \ + --enable-spell-checker + +webkit_configure_flags := $(common_configure_flags) \ + --libexecdir=\$${prefix}/lib/epiphany-webkit \ + --with-engine=webkit + +patch: $(STAMP_DIR)/patch-stamp +$(STAMP_DIR)/patch-stamp: + dh_testdir + mkdir -p $(STAMP_DIR) + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null push -a || test $$? = 2 + touch $@ + +builddir = $(BUILD_DIR)/$* + +configure: $(addprefix $(STAMP_DIR)/configure-stamp-, $(FLAVORS)) +$(STAMP_DIR)/configure-stamp-%: $(STAMP_DIR)/patch-stamp + dh_testdir + mkdir -p $(builddir) + cd $(builddir) && \ + CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \ + $(CURDIR)/configure $($*_configure_flags) + touch $@ + +build: $(addprefix $(STAMP_DIR)/build-stamp-, $(FLAVORS)) +$(STAMP_DIR)/build-stamp-%: $(STAMP_DIR)/configure-stamp-% + dh_testdir + $(MAKE) -C $(builddir) + touch $@ + +installdir = $(CURDIR)/debian/epiphany-$* + +install-clean: + dh_testdir + dh_testroot + dh_clean -k + +install-%: $(STAMP_DIR)/build-stamp-% + $(MAKE) -C $(builddir) install DESTDIR=$(installdir) + cd $(installdir)/usr/bin && mv epiphany epiphany-$* + rm -f $(installdir)/usr/lib/epiphany*/*/*/*a + echo gnome:Version=$(DEB_GNOME_VERSION) >> debian/epiphany-$*.substvars + echo gnome:NextVersion=$(DEB_GNOME_NEXTVERSION) >> debian/epiphany-$*.substvars + +install: install-clean $(addprefix install-, $(FLAVORS)) + dh_installdirs + mv debian/epiphany-gecko/usr/include debian/epiphany-browser-dev/usr/ + mv debian/epiphany-gecko/usr/lib/pkgconfig debian/epiphany-browser-dev/usr/lib/ + cd debian/epiphany-gecko/usr/share && \ + mv aclocal pygtk gtk-doc $(CURDIR)/debian/epiphany-browser-dev/usr/share/ + mv debian/epiphany-gecko/etc/* debian/epiphany-browser-data/etc + rmdir debian/epiphany-gecko/etc + mv debian/epiphany-gecko/usr/share debian/epiphany-browser-data/usr/ +# cd debian/epiphany-webkit && rm -rf etc usr/share usr/lib/pkgconfig usr/include + cd debian/epiphany-browser-data/usr/share/epiphany-browser && \ + mv mime-types-permissions.xml default-prefs.js $(CURDIR)/debian/epiphany-browser-data/etc/gnome/epiphany/ + cd debian/epiphany-browser-data/usr/share/man/man1 && \ + mv epiphany.1 epiphany-browser.1 +# Correct help file paths + cd debian/epiphany-browser-data/usr/share/omf && mv epiphany epiphany-browser + cd debian/epiphany-browser-data/usr/share/gnome/help && mv epiphany epiphany-browser + find debian/epiphany-browser-data/usr/share/omf/epiphany-browser/ \ + -name "*.omf" -exec perl -pi -e 's#/usr/share/gnome/help/epiphany/#/usr/share/gnome/help/epiphany-browser/#' {} \; + +# Make both epiphanies installable together + for f in $(FLAVORS); do \ + F=`echo $$f | sed -r 's/^([a-z])/\U\1/'` ; \ + mkdir -p debian/epiphany-$$f/usr/share/applications ; \ + ( sed -r "s/^Name(.*)$$/Name\1 ($$F)/" \ + debian/epiphany-browser-data/usr/share/applications/epiphany.desktop \ + | sed "s,epiphany-browser,epiphany-$$f," \ + | grep -v ^TryExec | grep -v ^MimeType ; \ + echo NoDisplay=true ) \ + > debian/epiphany-$$f/usr/share/applications/epiphany-$$f.desktop ; \ + done + dh_install + cd debian/epiphany-browser/usr/bin && \ + mv epiphany.sh epiphany + +clean:: + dh_testdir + dh_testroot + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null pop -a -R || test $$? = 2 + rm -rf .pc + rm -f po/.intltool-merge-cache + rm -f intltool-extract intltool-update intltool-merge + rm -rf $(INSTALL_DIR) $(BUILD_DIR) $(STAMP_DIR) + dh_clean + +binary: binary-arch binary-indep + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs -i ChangeLog ChangeLog-* + dh_installdocs -i + dh_installman -i + dh_installmenu -i + dh_link -i + dh_scrollkeeper -i + dh_gconf -i + dh_desktop -i + dh_icons -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs -a ChangeLog ChangeLog-* + dh_installdocs -a + dh_installman -a + dh_installmenu -a + dh_link -a + dh_scrollkeeper -a + dh_gconf -a + dh_desktop -a + dh_icons -a + dh_strip -a --dbg-package=epiphany-browser-dbg + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +.PHONY: patch configure build install clean install-clean binary-indep binary-arch binary --- epiphany-browser-2.22.0.orig/debian/control +++ epiphany-browser-2.22.0/debian/control @@ -0,0 +1,114 @@ +Source: epiphany-browser +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Josselin Mouette +Uploaders: Debian GNOME Maintainers +Build-Depends: debhelper (>= 5), + pkg-config, + libglib2.0-dev (>= 2.13.4), + libgtk2.0-dev (>= 2.11.6), + libxml2-dev (>= 2.6.12), + libxslt1-dev (>= 1.1.7), + libglade2-dev (>= 2.3.1), + libgnome2-dev (>= 2.14.0), + libgnomeui-dev (>= 2.16.0-2), + libgconf2-dev, + libgnome-desktop-dev (>= 2.9.91), + libstartup-notification0-dev (>= 0.5), + libdbus-glib-1-dev (>= 0.60), + scrollkeeper, + gnome-pkg-tools (>= 0.10), + libxml-parser-perl, + xulrunner-1.9-dev (>= 1.9~b3), + iso-codes (>= 0.35), + python-dev (>= 2.3), + python-gtk2-dev (>= 2.7.1), + python-gnome2-dev (>= 2.6.0), + gnome-doc-utils (>= 0.3.2), + intltool (>= 0.35.0), + x11proto-core-dev, + network-manager-dev, + quilt, + libenchant-dev (>= 1.0), + gtk-doc-tools (>= 1.0), + liblaunchpad-integration-dev, + libavahi-gobject-dev +Standards-Version: 3.7.2 + +Package: epiphany-browser +Architecture: all +Depends: epiphany-gecko | epiphany-webkit +Description: Intuitive web browser - dummy package + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This dummy package installs Epiphany with the Gecko backend by default. + +Package: epiphany-gecko +Architecture: any +Depends: epiphany-browser-data (>= ${gnome:Version}), + epiphany-browser-data (<< ${gnome:NextVersion}), + ${shlibs:Depends}, + gnome-icon-theme (>= 2.9.90), + dbus, + iso-codes, + xulrunner-1.9 (>= 1.9~b3~), + ${misc:Depends} +Conflicts: epiphany-browser (<< 2.20.1-2ubuntu1) +Recommends: yelp, epiphany-extensions +Breaks: epiphany-extensions (<< 2.20.1-2ubuntu3) +Suggests: mozplugger +Provides: www-browser, gnome-www-browser +Description: Intuitive GNOME web browser - Gecko version + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. Simplicity is achieved by a well designed user interface and + reliance on external applications for performing external tasks (such as + reading email). Simplicity should not mean less powerful. Standards + compliance is achieved on the HTML side by using the Gecko + rendering engine, as developed for the Mozilla and Firefox browsers; and + on the user interface side by closely following the GNOME Human Interface + Guidelines (HIG) and by close integration with the GNOME desktop. + . + This version uses the Gecko backend to render web pages. + . + Homepage: http://www.gnome.org/projects/epiphany/ + +Package: epiphany-browser-data +Architecture: all +Depends: ${misc:Depends} +Recommends: epiphany-browser +Conflicts: epiphany-browser (<< 2.20.1-2ubuntu1) +Replaces: epiphany-browser (<< 2.20.1-2ubuntu1) +Description: Data files for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package contains the common files, artwork and translations for + Epiphany. + +Package: epiphany-browser-dev +Architecture: all +Section: devel +Depends: epiphany-gecko (>= ${binary:Version}), libgnomeui-dev (>= 2.16.0-2) +Description: Development files for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package is required to develop extensions for Epiphany. + +Package: epiphany-browser-dbg +Architecture: any +Section: gnome +Priority: extra +Depends: epiphany-gecko (= ${binary:Version}) | epiphany-webkit (= ${binary:Version}) +Description: Debugging symbols for the GNOME web browser + Epiphany is a simple yet powerful GNOME web browser targeted at + non-technical users. Its principles are simplicity and standards + compliance. + . + This package contains detached debugging symbols. --- epiphany-browser-2.22.0.orig/debian/changelog +++ epiphany-browser-2.22.0/debian/changelog @@ -0,0 +1,1454 @@ +epiphany-browser (2.22.0-0ubuntu1) hardy; urgency=low + + * new upstream release (v. 2.22.0) + + -- Alexander Sack Mon, 10 Mar 2008 11:09:28 +0100 + +epiphany-browser (2.21.92-0ubuntu1) hardy; urgency=low + + * new upstream tarball 2.21.92 + * with 98_xulrunner1.9.configure.patch preapplied and autoreconf2.50 in + diff.gz + - add (not applied) 98_xulrunner1.9.configure.patch + * drop gcc 43 patch (applied upstream) + - delete debian/patches/12_gxx43.patch + - update debian/patches/series + * update 98_xulrunner1.9.patch to match new epiphany upstream version + - update debian/patches/98_xulrunner1.9.patch + * fix personal data manager (LP: #180205) and login auto form-fill + - update debian/patches/98_xulrunner1.9.patch + + -- Alexander Sack Mon, 03 Mar 2008 13:32:10 +0000 + +epiphany-browser (2.21.90-0ubuntu4) hardy; urgency=low + + * fix epiphany build for latest xulrunner-1.9 (beta3) + * don't use non-frozen nsIXPCNativeCallContext symbol anymore; it + wasn't used in an active code-path anyway and just caused runtime + link problems; to achieve this, we just #if 0 IsCalledFromScript + in EphyUtils.{h,cpp} + - update debian/patches/98_xulrunner1.9.patch + * explicitly boot internal glue part in + embed/mozilla/mozilla-embed-single.cpp using GTKEmbedGlueStartupInternal + - update debian/patches/98_xulrunner1.9.patch + * bump build depend to xulrunner-1.9-dev (>= 1.9~b3) + - update debian/control.in + - update debian/control + + -- Alexander Sack Thu, 14 Feb 2008 10:27:18 +0100 + +epiphany-browser (2.21.90-0ubuntu3) hardy; urgency=low + + * debian/patches/98_ephy-boot-xul-early.patch: + - change from Alexander Sack, load xulrunner earlier + + -- Sebastien Bacher Mon, 11 Feb 2008 14:07:32 +0100 + +epiphany-browser (2.21.90-0ubuntu2) hardy; urgency=low + + * debian/rules: + - use dh_icons so the icon is correctly available after installation + (LP: #188468) + + -- Sebastien Bacher Tue, 05 Feb 2008 15:19:04 +0100 + +epiphany-browser (2.21.90-0ubuntu1) hardy; urgency=low + + * 2.21.90 upstream tarball. + * add avahi-gobject-dev to Build-Depends + - update debian/control + * gnomevfs has been replaced by gio. drop gnomevfs dev package build dep + accordingly + - update debian/control + * disable patch fixed upstream (98b_gtk_nss_dialog_missing_symbol.patch) + - update debian/patches/series + + -- Alexander Sack Tue, 29 Jan 2008 12:59:23 +0100 + +epiphany-browser (2.21.4-0ubuntu5) hardy; urgency=low + + * Revert the 12_gxx43 patch before upload. + + -- Matthias Klose Fri, 25 Jan 2008 13:10:58 +0000 + +epiphany-browser (2.21.4-0ubuntu4) hardy; urgency=low + + * Fix build failures with g++-4.3. + + -- Matthias Klose Thu, 24 Jan 2008 15:03:42 +0000 + +epiphany-browser (2.21.4-0ubuntu3) hardy; urgency=low + + * respin against updated xulrunner-1.9 (>= 1.9~b3~) that uses system-nspr + nss,cairo: + - update debian/control + * fix http authentication by implementing nsIPromptService2 as a workaround + until xulrunner implements a proper adaptor to nsIPromptService + - add debian/patches/98a_nsipromptservice2_workaround.patch + - update debian/patches/series + * implement missing symbol |DisplayProtectedAuth| recently added to xulrunner + trunk + - add debian/patches/98b_gtk_nss_dialog_missing_symbol.patch + - update debian/patches/series + + -- Alexander Sack Wed, 02 Jan 2008 12:54:28 +0100 + +epiphany-browser (2.21.4-0ubuntu2) hardy; urgency=low + + * debian/control.in, debian/rules: + - build using xulrunner + * debian/patches/98_xulrunner1.9_build_changes.patch: + - changes from Alexander Sack to build using xulrunner1.9 + * debian/patches/99_autoreconf.patch: + - updated + + -- Sebastien Bacher Tue, 18 Dec 2007 15:22:07 +0100 + +epiphany-browser (2.21.4-0ubuntu1) hardy; urgency=low + + * New upstream version + A big refactoring of the Epiphany internals was done in order to achieve + better cross-engine support. It can be roughly separated in two chunks: + - EphyTab and its usage of GtkMozEmbed specific signals was transformed + into generic code under EphyBaseEmbed with backend-agnostic + gobject-properties. Backends are now encouraged to subclass EphyBaseEmbed + and update its properties to keep them in sync with the engine state. + In turn, the browser chrome will connect to the notify:: signals + for the properties to update its UI to reflect those changes. + - In some situations the embed/ code will need to know some specific + details of the fronted (for example, the active child among all the + embed instances in the popup management code). Instead of directly + accessing the fronted, an generic EphyEmbedContainer interface + has been created, offering all the needed methods.In Epiphany, + this interface is implemented by EphyWindow. + Bug fixes: + - Add saved files to the GtkRecent list. Fixes Bug #148401. + - Make cursor be at the end of the URL when selecting entries from the + completion popup. Fixes bug #466344. + - Fix multihead problems in toolbar editor. + - Fix download-icon toolip updates. Fixes bug #343238. + - Default to Cancel on Cert dialogues. Fixes bug #163379. + - Remove "Add bookmark" and "Save as" from the document context menu. + Part of bug #332968. + - Fix completion model to show icons for history items too, + history/bookmarks/favicon_cache service objects are now stored in the + completion priv. Fixes bug #459811. + - Sets page header and footer margins to a reasonable value when printing. + Workaround for bug #346110. + - Adds a check for NULL pointer in ephy-session.c, fixing wrong behaviour + when restoring Epiphany in some cases. Fix for bug #488718. + - Updates to new NetworkManager API signals for status monitoring. + - Take the page orientation from the page setup, not from + the print settings. Bug #485670 (see also gtk+ bug #485685). + - Makes the Go button behaviour consistent with the "Enter" behaviour. Both + actions search for keywords or load the url. Fixes #484178. + - EphyContentPolicy::ShouldLoad: use the same content policy for + http and https, allowing adblock to work on https. Fixes bug #471583. + - Make Epiphany properly remember the last saved location + in the FileChooser. Fix for bug #336251. + - Make session recovery focus work properly and remember the active tab. + Fixes bug #317272. + - Fix disable_toolbar_editing lockdown not respected for Remove and Move + actions on toolbar buttons. Fixes bug #475641. + - Change the hint of the bookmarking properties dialog to DIALOG, instead + of NORMAL. Make bookmarking work in fullscreen mode and does not put + bookmark properties windows in the taskbar. Fixes bug #478928. + - Find toolbar now remembers last pattern searched also when opened with + slash or apostrophe. Fixes bug #343337. + - Add a somewhat tricky fix for url titles not visible on the completion + popup of the location entry when using a dark theme (like Darkilouche). + Fixes bug #446898. + - Private instances of Epiphany now remove the profile dir on exit. + Note that the profile dir won't be deleted if it's a custom path. + Fixes bug #329680. + - Make "Up" button dropdown menu show titles instead of URLs for already + visited pages. Fix for bug #323764. + - Remove ellipsis from View -> Page Security Information, as it does not + require further user interaction to complete. Fix for bug #483312. + - Hide Back/Forward buttons when disable_history lockdown key is enabled. + Fixes bug #394795. + - Add explanation label to "Only from sites you visit" radio button. + Fixes bug 493422. + Changes: + - Add accessibility theme icons for our apps icon. + - Enable printing to PDF file on gecko 1.9, now that moz#367907 is fixed. + - Make 'Not found' on find toolbar temporarily bold and sounds the bell + signal when searching on a page and no results are found. + Fixes bug #363004. + - Makes tooltips for Back and Forward buttons display the titles of + relative pages. Fixes bug #341400. + - Add drag-and-drop of URLs onto "New Tab" and "New Window" buttons in + the toolbar. Fixes bug #382383. + - Add a broom icon in the search entry of the History window, + like in Bookmarks Editor. Fixes bug #476179. + - Use friendly display for mailto: links; shows a nice text in status bar + when hovering a mailto: link. Fixes bug #339161. + - Fix the build of the custom GTK+ filepicker. Add a preview for the + FileChooser. The default size is 150x150. Fixes bug #440859. + - Make the location entry completion cells smarter, now bookmarks take the + full width of the popup. Also make titles of history entries align + to the left so it's easier to browse a lot of entries with similar + titles. Almost-fixes bug #419475. + - Change the "Powered by" name in the About dialog according to the used + backend. Fix for bug #478196. + - Display "Execute script " string as tooltip for bookmark action + instead of the whole javascript code when bookmarking a scriptlet. + Fix bug #492695. + - Update to latest EggToolbarEditor code. + This supports changing the editor's model during runtime and + tries to avoid some possibly leaking signal handlers. Fixes bug #493149. + - Adds a column in the history window showing the date and the time of the + visit, substitutes radiobuttons with checkboxes in the View menu of the + window. Fix bug #380156. + - Enable a --with-distributor-name configure option, defaulting to Epiphany. + Use it on an error page to designate the distributors/developers to + contact. Fixes bug #433796. + - Add a "Remove all" button to the Personal Data Manager for both the + cookies and the passwords. Addresses bug #148314. + - Fix a bug in EphyNodeView which caused problems when setting columns + as resizable; thanks to Kristian Rietveld for finding out the cause. + Make history window columns resizable and bookmarks editor columns + resizable and sortable. Fixes bug #132808. + * debian/control.in: + - use Breaks on epiphany-extensions due to version change + * debian/patches/02_ac_init.patch: + - updated + * debian/patches/08_localized_startup_page.patch: + - updated + * debian/patches/13_powered-by.patch, + debian/patches/14_webkit-scrollbars.patch, + debian/patches/15_webkit-gtk-api.patch, + debian/patches/16_webkit-missing-methods.patch, + debian/patches/17_webkit-signal-emission.patch: + - removed, fixed with the new version + * debian/patches/99_autoreconf.patch: + - updated + + -- Sebastien Bacher <seb128@canonical.com> Mon, 17 Dec 2007 10:32:26 +0100 + +epiphany-browser (2.20.2-1ubuntu2) hardy; urgency=low + + * debian/control.in: + - epiphany-browser-dbg recommends firefox-dbg (LP: #174445) + * debian/patches/07_use_correct_program_name.patch: + - dropped, not required since there is an epiphany-browser alternative now, + and fixes the help directory (LP: #175157) + * debian/rules: + - use the same gecko directory naming than debian + + -- Sebastien Bacher <seb128@canonical.com> Tue, 11 Dec 2007 12:55:51 +0100 + +epiphany-browser (2.20.2-1ubuntu1) hardy; urgency=low + + * The webkit variant is not built for now since it's not juged good enough + to compete with the gecko one yet and not worth promoting webkit. + The package could be maintained to universe as a different source for now. + * Sync with Debian + * debian/control.in: + - Build-Depends on firefox-dev (>= 1.5), liblaunchpad-integration-dev + - Depends on firefox (>= 1.5) and not xulrunner-gnome-support + - don't build the webkit variant + - don't Build-Depends on libxul-dev + - don't Recommends xulrunner debug packages + - mention Firefox rather than Iceweasel + - package maintained by the Ubuntu Desktop Team + - update transition version + * debian/epiphany-browser-data.gconf-defaults: + - change startup page + * debian/patches/03_dbus.patch: + - don't use hack from Debian to start a private instance when it can't + connect to the dbus, changes made while running that mode are not stored + (Ubuntu: #74725) + * debian/patches/06_lpi.patch: + - launchpad integration + * debian/patches/07_use_correct_program_name.patch: + - use "epiphany" instead of PACKAGE to work with the epiphany-browser name + change, fix session storing (Ubuntu: #43130) + * debian/patches/08_localized_startup_page.patch: + - use the startup page corresponding to the locale used + * debian/patches/11_useragent-weasel.patch: + - don't use, the change is Debian specific + * debian/patches/99_autoreconf.patch: + - updated + * debian/rules: + - build with firefox, not xulrunner + - don't build the webkit variant + - don't change the gecko build directory + + -- Sebastien Bacher <seb128@canonical.com> Wed, 05 Dec 2007 14:17:00 +0100 + +epiphany-browser (2.20.2-1) unstable; urgency=low + + [ Josselin Mouette ] + * debian/bug/control: ship a bug control file in epiphany-browser to + correctly report dependencies of epiphany-{gecko,webkit}. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/18_ephy-session_crash.patch: + - Dropped, merged upstream. + + debian/patches/02_ac_init.patch: + - Updated for the new version. + + debian/patches/99_autoreconf.patch: + - Regenerated. + + -- Sebastian Dröge <slomo@debian.org> Sat, 01 Dec 2007 17:45:45 +0100 + +epiphany-browser (2.20.1-2) unstable; urgency=low + + * 18_ephy-session_crash.patch: stolen from upstream SVN. Fixes crash + when loading a session. Closes: #449003. + + -- Josselin Mouette <joss@debian.org> Thu, 15 Nov 2007 21:14:29 +0100 + +epiphany-browser (2.20.1-1) unstable; urgency=low + + [ Nelson A. de Oliveira ] + * Fix menu files for epiphany-webkit and epiphany-gecko (Closes: #444066). + + [ Josselin Mouette ] + * 13_powered-by.patch: stolen from SVN. Don't display "powered by + Gecko" in the webkit version's about dialog. Also fix translations + accordingly. Closes: #444999. + * 14_webkit-scrollbars.patch: stolen from SVN. Implement size_request + for EphyTab, getting scrollbars to work for the webkit engine. + Closes: #444044. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/02_ac_init.patch: + - Updated for the new version. + + debian/patches/12_contentmanager_block_https.patch: + - Dropped, merged upstream. + * debian/patches/15_webkit-gtk-api.patch: + + Update to the latest WebKit/Gtk API. Patch taken from upstream SVN. + Closes: #447371. + * debian/patches/16_webkit-missing-methods.patch: + + Implement some missing methods and add some workarounds for WebKit + bugs. Patch taken from upstream SVN. There are more patches in SVN + that make the WebKit backened more useful but can't easily be backported + because of API changes in epiphany. + * debian/patches/17_webkit-signal-emission.patch: + + Don't emit signal that we don't have. Patch taken from upstream SVN. + * debian/patches/99_autoreconf.patch: + + Regenerate autotools stuff for the new version. + + -- Sebastian Dröge <slomo@debian.org> Thu, 01 Nov 2007 06:37:43 +0100 + +epiphany-browser (2.20.0-2) unstable; urgency=low + + [ Josselin Mouette ] + * Fix typo that lead NoDisplay to be ignored. + * Remove MimeType entries from the additional .desktop files. + * 12_contentmanager_block_https.patch: use the same content policy for + http and https, allowing adblock to work on https. Closes: #439772. + + [ Loic Minier ] + * Cleanup whitespaces in control. + + -- Josselin Mouette <joss@debian.org> Sat, 29 Sep 2007 01:28:11 +0200 + +epiphany-browser (2.20.0-1) unstable; urgency=low + + * epiphany.sh: ship epiphany as a wrapper script for epiphany-browser + instead of a symbolic link the other way round. This way all + processes should be named epiphany-browser which is recognized by + bug-buddy. Closes: #433443. + * New upstream release. + * Bump required build-dependencies. + * Build two flavors of epiphany, one with webkit and one with gecko. + * Separate them in two packages installable simultaneously. + * 00_browser_wrapper_path.patch: add a TryExec key as the desktop + entry is moved to the data package. + * Refresh other patches. + * 05_libexecdir.patch: use libexecdir for the plugin directory, so + that it can be different for both backends. + * Introduce a new alternative, epiphany-browser, and register both + versions for it. + * epiphany-browser.menu: update to the new menu policy. + * Enable build of documentation; build-depend on gtk-doc-tools. + + -- Josselin Mouette <joss@debian.org> Fri, 21 Sep 2007 17:10:27 +0200 + +epiphany-browser (2.18.3-1) unstable; urgency=low + + * Fix copyright (closes: #428099). + * New upstream bugfix release. + + Refresh patches. + * 11_useragent-weasel.patch: comment out the UA breakage that upstream + introduces for xulrunner users and explain why we do it. + + -- Josselin Mouette <joss@debian.org> Wed, 04 Jul 2007 22:23:31 +0200 + +epiphany-browser (2.18.2-1) unstable; urgency=low + + [ Sam Morris ] + * Drop 11_spell-checker-for-1.8.0.patch now that xulrunner 1.8.1 is + available. Also bump build-depends appropriately. Closes: #414558. + + [ Josselin Mouette ] + * Fix watch file. + * Split translations and data files in a separate + epiphany-browser-data package. + + Include gnome-version.mk for ${gnome:Version}. + * Ship debugging symbols in epiphany-browser-dbg (closes: #425290). + + debian/compat: use debhelper mode 5. + + Build-depend on debhelper 5. + * Wrap depends and build-depends. + * Improve descriptions a bit. + * Use ${binary:Version}. + * Replace some file moves in debian/rules by correct .install files. + * README: removed, obsolete. + * New upstream translation and bugfix release. + * 02_ac_init.patch: updated. + * 04_move_tabs.patch: disabled for the moment, it doesn't work. + * 08_load_on_new_tab.patch: ditto. + * 99_configure.patch: refreshed. + + -- Josselin Mouette <joss@debian.org> Sat, 02 Jun 2007 11:56:53 +0200 + +epiphany-browser (2.18.1-3) unstable; urgency=low + + * 09_download_dialog.patch: still kill the download dialog, but + reinstate the distinction between download and save for security + reasons (closes: #424765). Also improve the preferences dialog to + make insensitive the download folder selection when necessary. + + -- Josselin Mouette <joss@debian.org> Sat, 19 May 2007 00:03:32 +0200 + +epiphany-browser (2.18.1-2) unstable; urgency=low + + [ Josselin Mouette ] + * epiphany-browser.gconf-defaults: set the default language to + "system" so that epiphany uses content negociation by default. + Thanks Roland Mas for noticing. + + [ Sebastian Dröge ] + * Upload to unstable, drop check-dist include. + * Disable 11_spell-checker-for-1.8.0 and update 99_configure. spellchecking + support is disabled again in xulrunner for now. + + -- Sebastian Dröge <slomo@debian.org> Wed, 25 Apr 2007 01:08:24 +0200 + +epiphany-browser (2.18.1-1) experimental; urgency=low + + * Fix changelog and version the libenchant-dev build-dep. + * New upstream release + - Rename patch 100_spell-checker-for-1.8.0 to 11_spell-checker-for-1.8.0 + and only patch configure.ac; refresh. + - Update patch 99_configure. + - Update patch 02_ac_init. + + -- Loic Minier <lool@dooz.org> Mon, 09 Apr 2007 16:05:07 +0200 + +epiphany-browser (2.18.0-3) experimental; urgency=low + + [ Loic Minier ] + * Add a pre-build:: target to workaround a missing nspr.pc in libxul-dev + 1.8.0.11-3: symlink xulrunner-nspr.pc as nspr.pc in debian/pkg-config and + list debian/pkg-config in PKG_CONFIG_PATH; thanks Sam Morris and + Mike Hommey. + + [ Josselin Mouette ] + * 10_url_double-click.patch: patch from Sam Hocevar to make the + behavior when double-clicking in the URL bar conform to the rest of + the desktop (closes: #417836). + + [ Loic Minier ] + * Spell checking support: + - Build-dep against libxul-dev 1.8.0.11-3 and libenchant-dev. + - Pass --enable-spell-checker to configure. + - New patch, 100_spell-checker-for-1.8.0, allows using the spell checker + with Xulrunner <= 1.8.1. + + -- Loic Minier <lool@dooz.org> Mon, 09 Apr 2007 12:01:07 +0200 + +epiphany-browser (2.18.0-2) experimental; urgency=low + + [ Josselin Mouette ] + * Re-introduce 00_browser_wrapper_path.patch to avoid any issue with + the epiphany game package. + + Call epiphany-browser explicitly instead of hardcoding the path. + * Bump back conflict on epiphany-extensions to << 2.16, as the 2.16 + series have correct dependencies. + + [ Loic Minier ] + * Merge 2.14.3-2 up to 2.14.3-6; SVN r7118:9090. + * Drop patch 06_dbus_connection_close, merged upstream. + * Drop patch 30_bookmark-editor-crash, merged upstream. + + -- Loic Minier <lool@dooz.org> Sun, 18 Mar 2007 19:01:57 +0100 + +epiphany-browser (2.18.0-1) experimental; urgency=low + + [ Sam Morris ] + * New upstream release. + * Refresh patches. + * Bump conflict on epiphany-extensions to << 2.18 + * Drop 00_browser_wrapper_path.patch; seems useless + + [ Loic Minier ] + * Drop patch 05_xulrunner; merged upstream. + * Include CDBS's utils. + + -- Loic Minier <lool@dooz.org> Mon, 12 Mar 2007 14:21:50 +0100 + +epiphany-browser (2.16.3-1) experimental; urgency=low + + * New upstream release. + * Refresh patches. + + -- Josselin Mouette <joss@debian.org> Thu, 1 Mar 2007 22:12:53 +0100 + +epiphany-browser (2.16.2-4) experimental; urgency=low + + * Bump the epiphany-browser-dev dep on libgnomeui-dev to 2.16.0-2 as well. + + -- Loic Minier <lool@dooz.org> Sun, 4 Feb 2007 12:30:05 +0100 + +epiphany-browser (2.16.2-3) experimental; urgency=low + + [ Loic Minier ] + * Set GNOME_MODULE to epiphany for get-orig-source. + + [ Josselin Mouette ] + * 09_download_dialog.patch: remove the annoying dialog that lets the + user choose between "download" and "save as". Also remove the + distinction between the gconf keys. Closes: #280280. + + [ Loic Minier ] + * Include the new check-dist Makefile to prevent accidental uploads to + unstable; bump build-dep on gnome-pkg-tools to >= 0.10. + * Bump up libgnomeui-dev build-dep to >= 2.16.0-2 as Gtk 2.10 requires it + anyway. + + -- Loic Minier <lool@dooz.org> Mon, 22 Jan 2007 11:09:05 +0100 + +epiphany-browser (2.16.2-2) experimental; urgency=low + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + + [ Josselin Mouette ] + * Depend on xulrunner-gnome-support (closes: #404755). + * 06_ssl_weak_ciphers.patch: enable SSL weak ciphers, as epiphany + warns about their use anyway, thanks Mike Hommey (closes: #368259). + * epiphany-browser.dirs: create /etc/gnome/epiphany. + * rules: move default-prefs.js mime-types-permissions.xml to this + directory to make them conffiles (closes: #195406). + * 07_bookmarks.patch: provide some Debian-related bookmarks by default + (closes: #175014). + * epiphany-browser.gconf-defaults: set the homepage to the Debian + website. + * epiphany-browser.links: add a /usr/bin/epiphany-browser link to make + session saving work, thanks Håvard Moen (closes: #375003). + + Also add a link for the manual page. + * 08_load_on_new_tab.patch: patch from Cyril Brulebois to add a gconf + key allowing to emulate the mozilla behavior when loading new tabs + (closes: #402177). + + -- Josselin Mouette <joss@debian.org> Fri, 12 Jan 2007 12:59:27 +0100 + +epiphany-browser (2.16.2-1) experimental; urgency=low + + [ Loic Minier ] + * Update description to use Iceweasel instead of Firefox. + + [ Josselin Mouette ] + * New upstream release. + * Refresh patches. + + -- Josselin Mouette <joss@debian.org> Sun, 26 Nov 2006 22:16:38 +0100 + +epiphany-browser (2.16.1-1) experimental; urgency=low + + * New upstream release. + * rules: switch to quilt for patch handling. + * Build-depend on quilt. + * Update patches for the new version. + + -- Josselin Mouette <joss@debian.org> Sun, 19 Nov 2006 18:08:37 +0100 + +epiphany-browser (2.16.0-1) experimental; urgency=low + + * New upstream release. + * 04_move_tabs.patch: re-enable the ability to move tabs between + windows now the bug is fixed in xulrunner (closes: #317724). + * 00_browser_wrapper_path.patch: cleanup. + * Please Jordi by taking over maintainership of the package. + * 01_bookmarks_menu.patch: updated. + * 02_ac_init.patch: updated. + * 99_configure.patch: updated accordingly. + * NEWS: removed, its content is no more relevant. + * Update watch file for 2.16. + * Build-depend on intltool 0.35.0 and x11proto-core-dev. + * Remove useless build-dependencies on liborbit, perl and gnome-print. + * Bump requirements on glib, gtk, iso-codes, libgnome and libgnomeui. + * Enable network manager by passing --enable-network-manager. + + Build-depend on network-manager-dev. + * epiphany-browser-dev.install: add /usr/share/pygtk and + /use/share/aclocal. + * epiphany-browser.install: add /usr/share/dbus-1 and replace + /usr/share/pixmaps by /usr/share/icons. + * Conflict with epiphany-extensions << 2.16. + + -- Josselin Mouette <joss@debian.org> Sat, 9 Sep 2006 21:49:22 +0200 + +epiphany-browser (2.14.3-6) unstable; urgency=medium + + * Add a get-orig-source target to retrieve the upstream tarball. + * New patch, 30_bookmark-editor-crash, workaround for a crash in the + bookmark-editor; GNOME #351814. + + -- Loic Minier <lool@dooz.org> Mon, 26 Feb 2007 11:24:28 +0100 + +epiphany-browser (2.14.3-5) unstable; urgency=medium + + * 07_bookmarks.patch: provide some Debian-related bookmarks by default + (closes: #175014). + * epiphany-browser.gconf-defaults: set the homepage to the Debian + website. + * epiphany-browser.links: add a /usr/bin/epiphany-browser link to make + session saving work, thanks Håvard Moen (closes: #375003). + * Urgency is medium to get the session fix and the branding changes to + etch. + + -- Josselin Mouette <joss@debian.org> Fri, 12 Jan 2007 13:25:07 +0100 + +epiphany-browser (2.14.3-4) unstable; urgency=medium + + * debian/control.in: depend on xulrunner-gnome-support (closes: #404755). + + -- Jordi Mallach <jordi@debian.org> Thu, 28 Dec 2006 23:54:04 +0100 + +epiphany-browser (2.14.3-3) unstable; urgency=low + + [ Loic Minier ] + * Provide gnome-www-browser. + * Suggest mozplugger instead of mozilla-bonobo; thanks Adam C Powell IV; + closes: #393981. + + [ Jordi Mallach ] + * 06_dbus_connection_close.patch: don't call dbus_connection_close(); + unref'ing it should be enough. Suggested by Sjoerd. + + -- Jordi Mallach <jordi@debian.org> Wed, 25 Oct 2006 11:22:28 +0200 + +epiphany-browser (2.14.3-2) unstable; urgency=low + + * 04_move_tabs.patch: re-enable the ability to move tabs between + windows now the bug is fixed in xulrunner (closes: #317724). + * Conflict with epiphany-extensions << 2.14. + + -- Josselin Mouette <joss@debian.org> Wed, 27 Sep 2006 15:38:53 +0200 + +epiphany-browser (2.14.3-1) unstable; urgency=low + + * New upstream release. + - Update the 02_ac_init and 99_configure patches. + + -- Loic Minier <lool@dooz.org> Mon, 7 Aug 2006 22:28:46 +0200 + +epiphany-browser (2.14.2.1-3) unstable; urgency=low + + * 03_dbus.patch: add a warning dialog when the dbus session isn't + found (closes: #373798). + + -- Josselin Mouette <joss@debian.org> Sun, 18 Jun 2006 12:54:32 +0200 + +epiphany-browser (2.14.2.1-2) unstable; urgency=low + + * Generate the configure patch with autoconf 2.59a-9 as newer versions + require another level of shell expansion to resolve datadir, and hence + cause the AM_GLIB_DEFINE_LOCALEDIR macro to fail miserably. + [debian/patches/99_configure.patch] + + -- Loic Minier <lool@dooz.org> Sun, 4 Jun 2006 16:22:30 +0200 + +epiphany-browser (2.14.2.1-1) unstable; urgency=low + + [ Josselin Mouette ] + * 03_dbus.patch: fall back on being a private instance when there is no + session bus (closes: #361072). + + [ Loic Minier ] + * New upstream release. + - Update patches. + [debian/patches/00_browser_wrapper_path.patch, + debian/patches/02_ac_init.patch, debian/patches/03_dbus.patch, + debian/patches/99_configure.patch] + * Make package binNMU-able by changing the ${Source-Version} dependency of + epiphany-browser-dev on epiphany from "=" to ">=". + [debian/control, debian/control.in] + + -- Loic Minier <lool@dooz.org> Thu, 1 Jun 2006 11:22:48 +0200 + +epiphany-browser (2.14.1-3) unstable; urgency=low + + * Brown paper bag release. + * Turn the build-dependency on dbus into a dependency. + + -- Guilherme de S. Pastore <gpastore@debian.org> Fri, 12 May 2006 20:46:05 -0300 + +epiphany-browser (2.14.1-2) unstable; urgency=low + + [ Guilherme de S. Pastore ] + * debian/control.in: + - added build-dependency on dbus (Closes: #360836). + - updated Standards-Version to 3.7.2. + + [ Jordi Mallach ] + * debian/control.in: epiphany-browser-dev depends on libgnomeui-dev. + + -- Guilherme de S. Pastore <gpastore@debian.org> Fri, 12 May 2006 19:16:30 -0300 + +epiphany-browser (2.14.1-1) unstable; urgency=low + + * New upstream release. + - debian/patches/{02_ac_init,99_configure}.patch: updated. + * Sourceful upload makes it installable again (Closes: #364267). + + -- Guilherme de S. Pastore <gpastore@debian.org> Sat, 22 Apr 2006 15:23:30 -0300 + +epiphany-browser (2.14.0-1) unstable; urgency=low + + * New upstream release. + - no more annoying HOWL compatibility warning (closes: #354761). + - fixes slowness of 1.8.x when using xulrunner (closes: #354822). + * debian/control.in: Updated build-deps as per configure.ac. + * debian/epiphany-browser.install: remove uneeded entries. + * debian/watch: updated for 2.14. + * debian/patches/00_browser_wrapper_path.patch: update filenames. + * debian/patches/01_bookmarks_menu.patch: update to Ubuntu's version. + * debian/patches/02_server_path.patch: removed, obsolete. + * debian/patches/03_ac_init.patch: updated. + * debian/patches/03_ac_init.patch: moved... + * debian/patches/02_ac_init.patch: here. Now contains configure.ac changes + only. + * debian/patches/04_debian_user_agent.patch: removed, xulrunner advertises + already. + * debian/patches/05_xulrunner.patch: updated. + * debian/patches/99_configure.patch: generated with `autoconf && rm -rf + autom4te.cache`. + + -- Jordi Mallach <jordi@debian.org> Wed, 29 Mar 2006 23:54:28 +0200 + +epiphany-browser (1.8.5-2) unstable; urgency=low + + * Remove dependency on xulrunner, it is unuseful now xulrunner is + fixed. + + -- Josselin Mouette <joss@debian.org> Tue, 21 Feb 2006 20:36:31 +0100 + +epiphany-browser (1.8.5-1) unstable; urgency=low + + * New upstream release. + * Apply patch from Mike Hommey to enable building against the new libxul + packages (closes: #351976). + - debian/control.in: + + Changed Build-deps from mozilla-browser to libxul-dev. + + Changed epiphany-browser's dependencies and conflicts accordingly. + - debian/rules: Add --with-mozilla=xulrunner to the configure line. + - debian/patches/05_xulrunner.patch: Correctly detect libmozjs location. + * The above removes epiphany's much hated dependency on mozilla-browser, + and closes: #271582). + * debian/rules: don't overwrite DEB_CONFIGURE_EXTRA_FLAGS. + * debian/control.in: + - conflict with epiphany-extensions (<< 1.8.2-5) to ensure we get + a xulrunner-enabled build. + - temporarily depend on xulrunner, to workaround a bug. + + -- Jordi Mallach <jordi@debian.org> Mon, 20 Feb 2006 20:39:59 +0100 + +epiphany-browser (1.8.3-4) unstable; urgency=low + + * debian/control.in: Build-Depend on python-dev. + * debian/rules: add --enable-python to configure flags (closes: #352236). + + -- Jordi Mallach <jordi@debian.org> Fri, 10 Feb 2006 20:32:28 +0100 + +epiphany-browser (1.8.3-3) unstable; urgency=low + + * Upload to unstable + + Loic Minier <lool@dooz.org>: + * Register and unregister a new gnome-www-browser alternative. + [debian/epiphany-browser.postinst, debian/epiphany-browser.prerm] + + Gustavo Noronha: + * debian/control.in: + - bumped Standards-Version to 3.6.2 with no changes + + -- Gustavo Noronha Silva <kov@debian.org> Sat, 7 Jan 2006 19:06:16 -0200 + +epiphany-browser (1.8.3-2) experimental; urgency=low + + * Build against dbus >= 0.60 + + -- Sjoerd Simons <sjoerd@debian.org> Sun, 18 Dec 2005 22:50:26 +0100 + +epiphany-browser (1.8.3-1) experimental; urgency=low + + [ Jordi Mallach ] + * New upstream release. + * 03_ac_init.patch: updated. + + [ Loic Minier ] + * Menu transition, part 1 and 2: move from #!/usr/sbin/install-menu to + #!/usr/bin/install-menu. [debian/epiphany-browser.install] + + [ Sjoerd Simons ] + * Enable zeroconf for bookmarks + + -- Jordi Mallach <jordi@debian.org> Thu, 1 Dec 2005 19:17:12 +0100 + +epiphany-browser (1.8.2-1) experimental; urgency=low + + * New upstream release. + * Don't build-depend on gcc-3.4 for amd64 anymore. + * 03_ac_init.patch: updated. + * Add watch file. + * Require orbit2 2.12.4 for ORBIT2_MAYBE_CONST. + * Cleanup dependencies. + * epiphany-browser.prerm: remove bashism. + + -- Josselin Mouette <joss@debian.org> Sun, 9 Oct 2005 20:09:58 +0200 + +epiphany-browser (1.8.0-1) experimental; urgency=low + + * New upstream release + * Don't build with gcc-3.4 for amd64 anymore + * Build with the experimental dbus packages + * debian/patches/04_debian_user_agent.patch + + Updated + * Sync with ubuntu + - Also rename omf files from epiphany to epiphany-browser + - debian/patches/02_server_path.patch + + Updated + - debian/patches/03_ac_init.patch + + Updated + + -- Sjoerd Simons <sjoerd@debian.org> Thu, 8 Sep 2005 11:29:47 +0200 + +epiphany-browser (1.6.5-1) experimental; urgency=low + + * New upstream version. + * Ondřej Surý: + - debian/paches/03_ac_init.patch: updated. + * Jordi Mallach: + - debian/control: build-depend on mozilla-dev (>= 1.7.10) for C++ + transition. + + -- Jordi Mallach <jordi@debian.org> Wed, 31 Aug 2005 17:26:26 +0200 + +epiphany-browser (1.6.4-1) unstable; urgency=low + + * New upstream release. + * debian/paches/03_ac_init.patch: updated. + + -- Jordi Mallach <jordi@debian.org> Tue, 5 Jul 2005 14:59:54 +0200 + +epiphany-browser (1.6.3-2) unstable; urgency=low + + * The "helix, use this cool Desktop and become a real GNOME Woman!" + release. + * Upload to unstable. + * debian/control.in: update Build-Depends (closes: #309195). + * The blurry icon for bookmarks editor is gone (closes: #287951). + * Ephy no longer shows the "Exit Fullscreen" button on all workspaces + (closes: #229622). + + -- Jordi Mallach <jordi@debian.org> Wed, 8 Jun 2005 01:03:16 +0200 + +epiphany-browser (1.6.3-1) experimental; urgency=low + + * New upstream release. + * debian/paches/03_ac_init.patch: updated. + + -- Jordi Mallach <jordi@debian.org> Wed, 27 Apr 2005 16:09:39 +0200 + +epiphany-browser (1.6.2-1) experimental; urgency=low + + * New upstream version. + * debian/patches/03_ac_init.patch: + - updated. + * debian/patches/05_toolbar_activation.patch: + - fixed with the new version. + + -- Sebastien Bacher <seb128@debian.org> Thu, 14 Apr 2005 15:40:31 +0200 + +epiphany-browser (1.6.1-1) experimental; urgency=low + + * New upstream release. + * debian/control.in: + - update build-depends and add dbus. + - depend on gnome-icon-theme and iso-codes. + * debian/rules: + - enable dbus support. + - build with gcc/g++ 3.4 for amd64 (closes: #287642). + * debian/patches/03_ac_init.patch: updated. + * debian/patches/01_bookmarks_menu.patch: stolen from Hoary; hide the + bookmarks manager menu item. + * debian/patches/04_debian_user_agent.patch: just identify as "Debian", + don't give the full source version. + * debian/05_toolbar_activation.patch: patch from CVS to fix toolbar + activation. + + -- Jordi Mallach <jordi@debian.org> Sat, 9 Apr 2005 12:33:49 +0200 + +epiphany-browser (1.4.8-2) unstable; urgency=low + + * debian/control.in: bump mozilla requirements to >= 1.7.6 to fix the + IDN domain spoofing security issue (CAN-2005-0238, closes: #294270). + + -- Jordi Mallach <jordi@debian.org> Thu, 24 Mar 2005 17:54:16 +0100 + +epiphany-browser (1.4.8-1) unstable; urgency=low + + * New upstream release. + + -- Jordi Mallach <jordi@debian.org> Sun, 27 Feb 2005 17:31:10 +0100 + +epiphany-browser (1.4.7-3) unstable; urgency=low + + * debian/patches/04_debian_user_agent.patch: add Debian package version to + the User-Agent string (thanks Loïc Minier; closes: #268655). + * debian/rules: add a define to CXXFLAGS with the Debian source version. + * debian/control.in: + - add a suggestion on mozilla-bonobo to epiphany-browser + (closes: #276492). + - recommend epiphany-extensions. + + -- Jordi Mallach <jordi@debian.org> Thu, 10 Feb 2005 23:24:41 +0100 + +epiphany-browser (1.4.7-2) unstable; urgency=medium + + * Rebuild against mozilla 1.7.5 to fix mouse buttons breakage. + * debian/control.in: build-depend and depend on + mozilla-browser (>= 2:1.7.5). + + -- Jordi Mallach <jordi@debian.org> Fri, 7 Jan 2005 17:05:05 +0100 + +epiphany-browser (1.4.7-1) unstable; urgency=low + + * New upstream release. + * debian/patches/03_ac_init.patch: update. + + -- Jordi Mallach <jordi@debian.org> Sun, 26 Dec 2004 01:15:41 +0100 + +epiphany-browser (1.4.6-1) unstable; urgency=low + + * New upstream release. + - fix tabs menu ordering when using the tab groups extension + (closes: #276916). + * debian/patches/03_ac_init.patch: update. + + -- Jordi Mallach <jordi@debian.org> Thu, 2 Dec 2004 00:16:32 +0100 + +epiphany-browser (1.4.5-2) unstable; urgency=low + + * Upload to unstable. + * debian/control.in: + - put myself as Maintainer. *shiver*. + - remove Mark Howard from uploaders, as he's trying to get galeon + adopted. + - remove build-dep on libc6-dev. + - bump to debhelper (>= 4.2.23). + + -- Jordi Mallach <jordi@debian.org> Fri, 19 Nov 2004 18:34:26 +0100 + +epiphany-browser (1.4.5-1) experimental; urgency=low + + * GNOME team upload. + * New upstream release. + * debian/{epiphany.1,epiphany-browser.mapages}: removed, included upstream. + * debian/patches/03_ac_init.patch: update. + + -- Jordi Mallach <jordi@debian.org> Tue, 16 Nov 2004 02:35:22 +0100 + +epiphany-browser (1.4.4-2) experimental; urgency=low + + * debian/control.in: + - bump cdbs and debhelper requirements, to register epiphany in the + MIME database. + - drop libtool build dependency. + * debian/postrm: remove, handled by debhelper. + * debian/rules: don't relibtoolize on pre-build. + + -- Jordi Mallach <jordi@debian.org> Tue, 9 Nov 2004 20:38:48 +0100 + +epiphany-browser (1.4.4-1) experimental; urgency=low + + * GNOME team upload. + * New upstream release. + * debian/rules: + + remove extra configure flags which aren't needed anymore. + + remove empty /usr/lib/epiphany. + * debian/patches/03_ac_init.patch: update. + + -- Jordi Mallach <jordi@debian.org> Wed, 13 Oct 2004 00:23:27 +0200 + +epiphany-browser (1.4.0-2) experimental; urgency=low + + * GNOME team upload. + * debian/rules: + + don't install /usr/bin/epiphany as a wrapper anymore, according + to Crispin it's not needed anymore (closes: #271986). + + configure with --with-mozilla-snapshot=1.7.2 to workaround a build + failure. + * debian/control.in: tighten mozilla dependencies to 1.7.3. + + -- Jordi Mallach <jordi@debian.org> Fri, 24 Sep 2004 19:28:26 +0200 + +epiphany-browser (1.4.0-1) experimental; urgency=low + + * GNOME team upload. + * New upstream release. + * debian/control.in: update build-depends as per configure.in. + * debian/patches/03_ac_init.patch: update. + * debian/rules: epiphany's binary is now epiphany, not epiphany-bin. + + -- Jordi Mallach <jordi@debian.org> Wed, 15 Sep 2004 23:30:24 +0200 + +epiphany-browser (1.2.9-2) unstable; urgency=low + + * GNOME team upload. + * debian/rules: configure using --with-mozilla-snapshot=1.7.2. + + -- Jordi Mallach <jordi@debian.org> Thu, 21 Oct 2004 11:29:46 +0200 + +epiphany-browser (1.2.9-1) unstable; urgency=low + + * GNOME team upload, by request of Edd. + * New upstream release. + * debian/patches/03_ac_init.patch: updated. + * debian/epiphany.1: apply patch from Andrew Sobala to remove + obsolete/unuseful options from the manpage, thanks! (Closes: #256504) + * debian/rules: don't libtoolize the package automatically in pre-build. + * debian/control.in: drop build-dependency on libtool. + + -- Jordi Mallach <jordi@debian.org> Thu, 21 Oct 2004 00:13:39 +0200 + +epiphany-browser (1.2.8-1) unstable; urgency=high + + * New upstream release. + * Really build against Mozilla 1.7.2. (Closes: #266265) + * High urgency to ensure that middle- and right-mouse clicks + work in the version that ships with sarge. + * Retire 01_package_name.patch, add 03_ac_init.patch to adjust + package name to epiphany-browser. + + -- Edd Dumbill <ejad@debian.org> Mon, 23 Aug 2004 19:19:25 +0100 + +epiphany-browser (1.2.7-2) unstable; urgency=low + + * Force compile against mozilla 1.7.2, fixes mouse button problems + (Closes: #264467) + + -- Edd Dumbill <ejad@debian.org> Mon, 9 Aug 2004 09:43:04 +0100 + +epiphany-browser (1.2.7-1) unstable; urgency=low + + * New upstream release + - build fine with mozilla 1.7.1. + * debian/epiphany-browser.postinst: + - removed the gconf and scrollkeeper parts, CDBS handles this. + * debian/epiphany-browser.postrm: + - removed, CDBS handles this too. + * debian/patches/01_package_name.patch: + - updated. + * debian/rules: + - changed the rules order to get dh_gconf used. + * All the above from Sebastien Bacher <seb128@debian.org>, thanks! + (Closes: #263841) + * Removed mozilla-xft from Recommends, this now included in + mozilla-browser. + + -- Edd Dumbill <ejad@debian.org> Fri, 7 Aug 2004 00:47:03 +0100 + +epiphany-browser (1.2.6-3) unstable; urgency=low + + * Add note to README.Debian to explain about the printing snafu. + * Move gtk-doc output into -dev package. + + -- Edd Dumbill <ejad@debian.org> Fri, 25 Jun 2004 10:17:53 +0100 + +epiphany-browser (1.2.6-2) unstable; urgency=low + + * Build against Mozilla 1.7. + + -- Edd Dumbill <ejad@debian.org> Thu, 24 Jun 2004 01:04:15 +0100 + +epiphany-browser (1.2.6-1) unstable; urgency=low + + * New upstream release. + - Fixes LD_LIBRARY_PATH setting (Closes: #253443) + + -- Edd Dumbill <ejad@debian.org> Mon, 14 Jun 2004 15:14:48 +0100 + +epiphany-browser (1.2.5-2) unstable; urgency=low + + * Upload to unstable. + - Download behavior fixed (Closes: #223591) + - Upload path remembered (Closes: #207829) + - Bookmark searches now case insensitive (Closes: #192929) + - Toolbars options in fullscreen not an issue now (Closes: #203018) + - Import bookmarks dialog offers arbitrary file import (Closes: #209224) + - Spinner no longer part of toolbar (Closes: #229548) + - Closing windows asks for confirmation if they have unsubmitted form + data (Closes: #229588) + * Don't break x-www-browser alternative on uninstall (Closes: #241535) + + -- Edd Dumbill <ejad@debian.org> Fri, 28 May 2004 07:55:32 +0100 + +epiphany-browser (1.2.5-1) experimental; urgency=low + + * New upstream release. + * Added Section: devel to control file for the -dev package. + + -- Edd Dumbill <ejad@debian.org> Wed, 5 May 2004 19:58:54 +0100 + +epiphany-browser (1.2.3-1) experimental; urgency=low + + * New upstream release. + * Add missing libxml-parser-perl builddep. + + -- Edd Dumbill <ejad@debian.org> Fri, 23 Apr 2004 18:24:54 +0100 + +epiphany-browser (1.2.2-3) experimental; urgency=low + + * Add missing gnome-pkg-tools builddep (Closes: #244053) + * Tighten up libtool builddep. + + -- Edd Dumbill <ejad@debian.org> Tue, 13 Apr 2004 10:11:52 +0100 + +epiphany-browser (1.2.2-2) experimental; urgency=low + + * Rebuild against gcc-3.3 not 3.4! + + -- Edd Dumbill <ejad@debian.org> Tue, 13 Apr 2004 09:07:02 +0100 + +epiphany-browser (1.2.2-1) experimental; urgency=low + + * New upstream release. + * Split into epiphany and epiphany-dev. + * Remove alternative in prerm. + + -- Edd Dumbill <ejad@debian.org> Mon, 12 Apr 2004 21:23:52 +0100 + +epiphany-browser (1.2.1-1) experimental; urgency=low + + * New upstream release. + * Updated patches for executable path, removed 04_scrollkeeper_omf patch. + * Remove libnautilus2-dev dependency for now, disable nautilus view + building. + + -- Edd Dumbill <ejad@debian.org> Wed, 24 Mar 2004 15:16:27 +0000 + +epiphany-browser (1.0.8-1) unstable; urgency=low + + * New upstream release. + * Get path right for translated docs (Closes: #231731) + * Make x-www-browser alternative greater than that of Mozilla's + (Closes: #233607) + * Drop yelp to a recommendation (Closes: #229061) + + -- Edd Dumbill <ejad@debian.org> Thu, 18 Mar 2004 13:54:23 +0000 + +epiphany-browser (1.0.7-3) unstable; urgency=low + + * Add libxml2-dev build-dep (Closes: #222453). Tighten the libbonoboui-dev + dependency as well. + * Add simple manpage (Closes: #206702, #221710) + + -- Edd Dumbill <ejad@debian.org> Sun, 25 Jan 2004 18:42:59 +0000 + +epiphany-browser (1.0.7-2) unstable; urgency=low + + * Add libxml-parser-perl as build-dep. Oops. + + -- Edd Dumbill <ejad@debian.org> Fri, 23 Jan 2004 11:52:12 +0000 + +epiphany-browser (1.0.7-1) unstable; urgency=low + + * New upstream release. + * Compile against Mozilla 1.6 (Closes: #229139) + + -- Edd Dumbill <ejad@debian.org> Fri, 23 Jan 2004 09:59:47 +0000 + +epiphany-browser (1.0.6-2) unstable; urgency=low + + * Add GNOME team maintainership stuff. + + -- Edd Dumbill <ejad@debian.org> Tue, 18 Nov 2003 12:26:28 +0000 + +epiphany-browser (1.0.6-1) unstable; urgency=low + + * New upstream release. + * Retire 05_file_uri_security.patch. + + -- Edd Dumbill <ejad@debian.org> Mon, 17 Nov 2003 15:04:01 +0000 + +epiphany-browser (1.0.3-3) unstable; urgency=low + + * Added Conflicts: mozilla-browser >= 1.6 to avoid future snafus + with Mozilla upgrades. + + -- Edd Dumbill <ejad@debian.org> Wed, 22 Oct 2003 09:54:52 +0100 + +epiphany-browser (1.0.3-2) unstable; urgency=low + + * Re-libtoolize to get round breakage with Mozilla 1.5. (Thanks + to Matt Biddulph for helping chase this down.) + + -- Edd Dumbill <ejad@debian.org> Wed, 22 Oct 2003 00:36:52 +0100 + +epiphany-browser (1.0.3-1) unstable; urgency=low + + * New upstream release. + + -- Edd Dumbill <ejad@debian.org> Sat, 18 Oct 2003 12:47:51 +0100 + +epiphany-browser (1.0.1-1) unstable; urgency=low + + * New upstream release. + + -- Edd Dumbill <ejad@debian.org> Mon, 13 Oct 2003 23:10:00 +0100 + +epiphany-browser (1.0-1) unstable; urgency=low + + * New upstream release. Epiphany goes 1.0! + * Add missing libgnome-desktop-dev build-dep (Closes: #211447) + * Use perl instead of sed in debian/rules (Closes: #207735) + * Remove glib2 autotools workaround, set specific libglib2.0-dev + dependency. + * Add in security fix from CVS so file:/// URIs can't be loaded + by pages retrieved from the network (05_file_uri_security.patch). + + -- Edd Dumbill <ejad@debian.org> Thu, 18 Sep 2003 15:41:56 +0100 + +epiphany-browser (0.9.2-2) unstable; urgency=low + + * Added Recommends: for mozilla-xft. + * Added note about mozilla-xft in README.Debian. + + -- Edd Dumbill <ejad@debian.org> Wed, 17 Sep 2003 09:33:52 +0100 + +epiphany-browser (0.9.2-1) unstable; urgency=low + + * New upstream release. + * Depend on gnome-icon-theme >= 1.0.6 now it's released. Thanks Kitame. + (Closes: #207368, #206297) + * Ensure locale location bugfix won't break when glib 2.0 bug which is the + root cause gets fixed. + + -- Edd Dumbill <ejad@debian.org> Thu, 28 Aug 2003 14:45:03 +0100 + +epiphany-browser (0.8.4-2) unstable; urgency=low + + * Move locale .mo files to the right place (Closes: #205304) + + -- Edd Dumbill <ejad@debian.org> Thu, 14 Aug 2003 08:51:06 +0100 + +epiphany-browser (0.8.4-1) unstable; urgency=low + + * New upstream release. + - New tab doesn't grab focus (Closes: #204829) + * Retire patches/05_sign_compile.patch. + * Retire gcc-3.2 dependency, compiles OK with 3.3 now. + + -- Edd Dumbill <ejad@debian.org> Wed, 13 Aug 2003 13:49:35 +0100 + +epiphany-browser (0.8.0-2) unstable; urgency=low + + * Depend on Mozilla 1.4 (Closes: #202069) + + -- Edd Dumbill <ejad@debian.org> Sat, 19 Jul 2003 15:40:03 +0100 + +epiphany-browser (0.8.0-1) unstable; urgency=low + + * New upstream release. + - No more "feeling lucky" + * Move debconf notice into NEWS.Debian (Closes: #201477). Updated + corresponding debhelper dependency to >= 4.1.51. + * Tweak wrapper script to change arguments to simply "$@". + + -- Edd Dumbill <ejad@debian.org> Fri, 18 Jul 2003 17:20:35 +0100 + +epiphany-browser (0.7.3-1) unstable; urgency=low + + * New upstream release. + - Fixes segfault on Mozilla bookmark import (Closes: #198556) + * Build against Mozilla 1.4 (Closes: #190763) + + -- Edd Dumbill <ejad@debian.org> Mon, 14 Jul 2003 21:52:03 +0100 + +epiphany-browser (0.7.1-1) unstable; urgency=low + + * New upstream release. (Closes: #198818) + - Don't crash on adding bookmark without topics (Closes: #197493) + - Search now works after smart bookmark use (Closes: #194208) + - Adding bookmark topic now works properly (Closes: #197869) + - Copy function works properly (Closes: #195357) + - Middle-click paste of keyword now shows proper new URL in + location bar (Closes: #195427) + - Creating new tab now doesn't destroy X selection (Closes: #197227) + * Download directory now remembered (Closes: #196927) + * Retire 02_help_dtd_patch as cdbs makes these corrections now + (Closes: #198181) + * Compile with gcc-3.2, remove -Wno-strict-aliasing (Closes: #197102) + I know this isn't the best-ever solution to this problem. Working + on sorting it out more permanently. + * Retire 05_valist_patch_from_bugzilla.patch, now in upstream + * Added debconf note: upstream have reorganized prefs schema, some of your + preferences will need resetting. + * Depend on gnome-icon-theme >= 1.0.4 (Closes: #197183). If you're still + have trouble with the throbber missing, file a bug on the theme, as + this seems to be theme dependent. + + -- Edd Dumbill <ejad@debian.org> Fri, 27 Jun 2003 16:05:49 +0100 + +epiphany-browser (0.7.0-1) unstable; urgency=low + + * New upstream release. + - Fixes crash on pause download (Closes: #193672) + - Fix smart bookmark non-ASCII problem (Closes: #193981) + * Incorporate 05_valist_patch_from_bugzilla.patch, which fixes + valist usage problems on several platforms. + + -- Edd Dumbill <ejad@debian.org> Sat, 7 Jun 2003 11:15:12 +0100 + +epiphany-browser (0.6.1-1) unstable; urgency=low + + * New upstream (Closes: #194423) + - adds 'remove toolbar' context menu (Closes: #190817) + * Get correct Mozilla dependency (Closes: #193999) + * Change menu hint to "Web browsers" (Closes: #193451) + * Update standards version to 3.5.9 + * Retire CVS Colin's Build System in favour of cdbs + + -- Edd Dumbill <ejad@debian.org> Sun, 25 May 2003 16:49:06 +0100 + +epiphany-browser (0.6.0-3) unstable; urgency=low + + * 05_eel_gconf_ptrsize.patch, add another ia64 fix. Hopefully + this is the final one. + + -- Edd Dumbill <ejad@debian.org> Wed, 14 May 2003 16:12:50 +0100 + +epiphany-browser (0.6.0-2) unstable; urgency=low + + * Moved mozilla-xft dependency to Recommends (Closes: #192895) + * Distribute NEWS file (Closes: #192836) + * Add 05_eel_gconf_ptrsize.patch from CVS to fix ia64 build error. + + -- Edd Dumbill <ejad@debian.org> Tue, 13 May 2003 09:54:14 +0100 + +epiphany-browser (0.6.0-1) unstable; urgency=low + + * New upstream release. + + Remote tab open raises window (Closes: #187663) + * Removed 03_guint_fix_from_cvs.patch, obsoleted by new release. + + -- Edd Dumbill <ejad@debian.org> Fri, 9 May 2003 14:53:25 +0100 + +epiphany-browser (0.5.0-rel-4) unstable; urgency=low + + * Really fix path of help docs in .omf file (Closes: #191282) + + -- Edd Dumbill <ejad@debian.org> Sat, 3 May 2003 16:11:28 +0100 + +epiphany-browser (0.5.0-rel-3) unstable; urgency=low + + * 04_scrollkeeper_omf_path.patch: try to fix path of help file in .omf + file + * debian/rules: update to latest version of Colin's Build System + * debian/rocks: add -fshort-wchar to CXXFLAGS, fixes problem with + context menus on images. + + -- Edd Dumbill <ejad@debian.org> Tue, 29 Apr 2003 20:44:06 +0100 + +epiphany-browser (0.5.0-rel-2) unstable; urgency=low + + * Fix missing bookmark editor icon problem. + + -- Edd Dumbill <ejad@debian.org> Thu, 24 Apr 2003 16:53:58 +0100 + +epiphany-browser (0.5.0-rel-1) unstable; urgency=low + + * New upstream release. I won't be tracking CVS snapshots any + more. (Closes: #189413) + * Compile against mozilla rather than mozilla-snapshot. (Closes: #182199) + * Changed section to 'gnome'. + * Adjusted alternatives priority for x-www-browser to 75. + * 64-bit arch compile patch from CVS (Closes: #190011) + + -- Edd Dumbill <ejad@debian.org> Tue, 22 Apr 2003 19:23:57 +0100 + +epiphany-browser (0.5.0+0.4.99.20030304-1) unstable; urgency=low + + * New CVS export. + + -- Edd Dumbill <ejad@debian.org> Tue, 4 Mar 2003 23:38:46 +0000 + +epiphany-browser (0.5.0+0.4.99.20030220-3) unstable; urgency=low + + * Exchanged faulty gconf dependency for gconf2. + + -- Edd Dumbill <ejad@debian.org> Fri, 21 Feb 2003 23:05:02 +0000 + +epiphany-browser (0.5.0+0.4.99.20030220-2) unstable; urgency=low + + * Added debian menu entry. + + -- Edd Dumbill <ejad@debian.org> Fri, 21 Feb 2003 10:36:03 +0000 + +epiphany-browser (0.5.0+0.4.99.20030220-1) unstable; urgency=low + + * New CVS export. + + -- Edd Dumbill <ejad@debian.org> Thu, 20 Feb 2003 15:28:02 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-6) unstable; urgency=low + + * Added www-browser to Provides: + * Added to the x-www-browser alternatives selection. + + -- Edd Dumbill <ejad@debian.org> Wed, 19 Feb 2003 13:07:26 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-5) unstable; urgency=low + + * Upload to Debian, co-maintained with Mark Howard (Closes: #173427) + + -- Edd Dumbill <ejad@debian.org> Sun, 16 Feb 2003 21:40:49 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-4) unstable; urgency=low + + * Versioned various dependencies. + * Added gconf dependency. + * Moved epiphany binary to /usr/lib/epiphany/ + * Revert binary name to 'epiphany' + * Clean up after intltool: -extract, -merge, -update + * Added in location of CVS source into debian/copyright + + -- Edd Dumbill <ejad@debian.org> Sun, 16 Feb 2003 14:19:01 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-3) unstable; urgency=low + + * Added mozilla-psm-snapshot as a dependency. + + -- Edd Dumbill <ejad@debian.org> Sat, 15 Feb 2003 03:41:56 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-2) unstable; urgency=low + + * Changed package name to epiphany-browser in the configure + script. + + -- Edd Dumbill <ejad@debian.org> Sat, 15 Feb 2003 03:41:56 +0000 + +epiphany-browser (0.5.0+0.4.99.20030214-1) unstable; urgency=low + + * Initial packaging from CVS. + + -- Edd Dumbill <ejad@debian.org> Fri, 14 Feb 2003 23:05:40 +0000 + --- epiphany-browser-2.22.0.orig/debian/epiphany-webkit.prerm +++ epiphany-browser-2.22.0/debian/epiphany-webkit.prerm @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then + for alt in epiphany-browser x-www-browser gnome-www-browser; do + update-alternatives --remove $alt /usr/bin/epiphany-webkit + done +fi + +#DEBHELPER# + +exit 0 --- epiphany-browser-2.22.0.orig/compile +++ epiphany-browser-2.22.0/compile @@ -0,0 +1,142 @@ +#! /bin/sh +# Wrapper for compilers which do not understand `-c -o'. + +scriptversion=2005-05-14.22 + +# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. +# Written by Tom Tromey <tromey@cygnus.com>. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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. + +# This file is maintained in Automake, please report +# bugs to <bug-automake@gnu.org> or send patches to +# <automake-patches@gnu.org>. + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: compile [--help] [--version] PROGRAM [ARGS] + +Wrapper for compilers which do not understand `-c -o'. +Remove `-o dest.o' from ARGS, run PROGRAM with the remaining +arguments, and rename the output as expected. + +If you are trying to build a whole package this is not the +right script to run: please start by reading the file `INSTALL'. + +Report bugs to <bug-automake@gnu.org>. +EOF + exit $? + ;; + -v | --v*) + echo "compile $scriptversion" + exit $? + ;; +esac + +ofile= +cfile= +eat= + +for arg +do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as `compile cc -o foo foo.c'. + # So we strip `-o arg' only if arg is an object. + eat=1 + case $2 in + *.o | *.obj) + ofile=$2 + ;; + *) + set x "$@" -o "$2" + shift + ;; + esac + ;; + *.c) + cfile=$1 + set x "$@" "$1" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift +done + +if test -z "$ofile" || test -z "$cfile"; then + # If no `-o' option was seen then we might have been invoked from a + # pattern rule where we don't need one. That is ok -- this is a + # normal compilation that the losing compiler can handle. If no + # `.c' file was seen then we are probably linking. That is also + # ok. + exec "$@" +fi + +# Name of file we expect compiler to create. +cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` + +# Create the lock directory. +# Note: use `[/.-]' here to ensure that we don't use the same name +# that we are using for the .o file. Also, base the name on the expected +# object file name, since that is what matters with a parallel build. +lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d +while true; do + if mkdir "$lockdir" >/dev/null 2>&1; then + break + fi + sleep 1 +done +# FIXME: race condition here if user kills between mkdir and trap. +trap "rmdir '$lockdir'; exit 1" 1 2 15 + +# Run the compile. +"$@" +ret=$? + +if test -f "$cofile"; then + mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + mv "${cofile}bj" "$ofile" +fi + +rmdir "$lockdir" +exit $ret + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: --- epiphany-browser-2.22.0.orig/help/Makefile.in +++ epiphany-browser-2.22.0/help/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -37,11 +37,15 @@ # the same distribution terms that you use for the rest of that program. ################################################################################ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -75,6 +79,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -118,6 +124,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -129,6 +151,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -147,9 +171,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -196,8 +247,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -250,14 +302,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -269,7 +327,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -301,11 +358,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ _clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header) _DOC_REAL_FORMATS = $(if $(DOC_USER_FORMATS),$(DOC_USER_FORMATS),$(DOC_FORMATS)) @@ -455,6 +509,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -463,21 +521,23 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + $(mkdir_p) $(distdir)/.. + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -525,7 +585,8 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-local +distclean-am: clean-am distclean-generic distclean-libtool \ + distclean-local dvi: dvi-am @@ -539,20 +600,12 @@ install-data-am: install-data-local -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -573,22 +626,19 @@ ps-am: -uninstall-am: uninstall-local - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am check check-am clean clean-generic clean-libtool \ clean-local dist-hook distclean distclean-generic \ distclean-libtool distclean-local distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ - pdf-am ps ps-am uninstall uninstall-am uninstall-local + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am uninstall-local DOC_H_FILE ?= --- epiphany-browser-2.22.0.orig/configure +++ epiphany-browser-2.22.0/configure @@ -817,7 +817,6 @@ INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA -am__isrc CYGPATH_W PACKAGE VERSION @@ -929,6 +928,10 @@ GCONF_SCHEMAS_INSTALL_FALSE GCONFTOOL with_engine +HAVE_GECKO_DEBUG_TRUE +HAVE_GECKO_DEBUG_FALSE +HAVE_GECKO_XPCOM_GLUE_TRUE +HAVE_GECKO_XPCOM_GLUE_FALSE GECKO GECKO_FLAVOUR GECKO_INCLUDE_ROOT @@ -941,8 +944,6 @@ WEASEL_UA_VERSION HAVE_MOZILLA_TOOLKIT_TRUE HAVE_MOZILLA_TOOLKIT_FALSE -HAVE_GECKO_DEBUG_TRUE -HAVE_GECKO_DEBUG_FALSE HAVE_GECKO_1_7_TRUE HAVE_GECKO_1_7_FALSE HAVE_GECKO_1_8_TRUE @@ -951,6 +952,8 @@ HAVE_GECKO_1_8_1_FALSE HAVE_GECKO_1_9_TRUE HAVE_GECKO_1_9_FALSE +HAVE_GECKO_HOME_TRUE +HAVE_GECKO_HOME_FALSE WITH_GECKO_ENGINE_TRUE WITH_GECKO_ENGINE_FALSE HAVE_XULRUNNER_TRUE @@ -1710,9 +1713,11 @@ --with-gconf-schema-file-dir=dir Directory for installing schema files. --with-engine[=mozilla|webkit|xulrunner] Which engine to build against [mozilla] - --with-gecko[=mozilla|firefox|seamonkey|xulrunner] + --with-gecko[=mozilla|firefox|seamonkey|xulrunner|libxul-embedding|libxul] Which gecko engine to use (autodetected by default) + --with-gecko-home[=path] + Manually set MOZILLA_FIVE_HOME --with-distributor-name=name Set the distributor name --with-help-dir=DIR path to help docs @@ -2237,8 +2242,7 @@ BUILDID="$(TZ=UTC0 date +'%Y%m%d')" -am__api_version='1.10' - +am__api_version="1.9" ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then @@ -2421,53 +2425,38 @@ echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi -{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 -echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } -if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done -done -IFS=$as_save_IFS - -fi - - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" +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 - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - test -d ./--version && rmdir ./--version - MKDIR_P="$ac_install_sh -d" + mkdir_p='$(install_sh) -d' fi fi -{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 -echo "${ECHO_T}$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac for ac_prog in gawk mawk nawk awk do @@ -2550,16 +2539,12 @@ fi rmdir .tst 2>/dev/null -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +# 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 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } - fi fi # test whether we have cygpath @@ -2602,7 +2587,7 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right @@ -2706,7 +2691,7 @@ fi fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. @@ -2813,7 +2798,9 @@ { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } - if test $USE_MAINTAINER_MODE = yes; then + + +if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else @@ -3036,7 +3023,9 @@ am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi - if test "x$enable_dependency_tracking" != xno; then + + +if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else @@ -3045,6 +3034,7 @@ fi + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -4031,7 +4021,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -4061,7 +4050,9 @@ echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - if + + +if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= @@ -4725,7 +4716,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 4728 "configure"' > conftest.$ac_ext + echo '#line 4719 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -5965,7 +5956,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -5995,7 +5985,9 @@ echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - if + + +if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= @@ -7782,11 +7774,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7785: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7777: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7789: \$? = $ac_status" >&5 + echo "$as_me:7781: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -8072,11 +8064,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8075: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8067: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:8079: \$? = $ac_status" >&5 + echo "$as_me:8071: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -8176,11 +8168,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8179: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8171: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8183: \$? = $ac_status" >&5 + echo "$as_me:8175: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -10553,7 +10545,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 10556 "configure" +#line 10548 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10653,7 +10645,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 10656 "configure" +#line 10648 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -13054,11 +13046,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13057: $lt_compile\"" >&5) + (eval echo "\"\$as_me:13049: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:13061: \$? = $ac_status" >&5 + echo "$as_me:13053: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -13158,11 +13150,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13161: $lt_compile\"" >&5) + (eval echo "\"\$as_me:13153: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:13165: \$? = $ac_status" >&5 + echo "$as_me:13157: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -14756,11 +14748,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14759: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14751: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:14763: \$? = $ac_status" >&5 + echo "$as_me:14755: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -14860,11 +14852,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14863: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14855: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:14867: \$? = $ac_status" >&5 + echo "$as_me:14859: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -17080,11 +17072,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:17083: $lt_compile\"" >&5) + (eval echo "\"\$as_me:17075: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:17087: \$? = $ac_status" >&5 + echo "$as_me:17079: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -17370,11 +17362,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:17373: $lt_compile\"" >&5) + (eval echo "\"\$as_me:17365: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:17377: \$? = $ac_status" >&5 + echo "$as_me:17369: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -17474,11 +17466,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:17477: $lt_compile\"" >&5) + (eval echo "\"\$as_me:17469: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:17481: \$? = $ac_status" >&5 + echo "$as_me:17473: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -20991,7 +20983,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -21021,7 +21012,9 @@ echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - if + + +if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= @@ -21775,7 +21768,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -21805,7 +21797,9 @@ echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - if + + +if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= @@ -22425,7 +22419,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -22455,7 +22448,9 @@ echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - if + + +if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= @@ -23902,7 +23897,9 @@ esac fi - if test "$enable_schemas_install" != no; then + + +if test "$enable_schemas_install" != no; then GCONF_SCHEMAS_INSTALL_TRUE= GCONF_SCHEMAS_INSTALL_FALSE='#' else @@ -24370,12 +24367,15 @@ gecko_cv_gecko=$with_gecko # Autodetect gecko -_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla" +_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla libxul-embedding libxul" if test -z "$gecko_cv_gecko"; then for lizard in $_geckos; do if $PKG_CONFIG --exists $lizard-xpcom; then gecko_cv_gecko=$lizard break; + elif $PKG_CONFIG --exists $lizard-unstable; then + gecko_cv_gecko=$lizard + break; fi done fi @@ -24397,6 +24397,18 @@ gecko_cv_have_gecko=yes fi +{ echo "$as_me:$LINENO: checking manual gecko home set" >&5 +echo $ECHO_N "checking manual gecko home set... $ECHO_C" >&6; } + + +# Check whether --with-gecko-home was given. +if test "${with_gecko_home+set}" = set; then + withval=$with_gecko_home; +fi + + +gecko_cv_gecko_home=$with_gecko_home + # **************** # Define variables # **************** @@ -24408,13 +24420,24 @@ seamonkey) gecko_cv_gecko_flavour=mozilla ;; *firefox) gecko_cv_gecko_flavour=toolkit ;; xulrunner) gecko_cv_gecko_flavour=toolkit ;; +libxul*) gecko_cv_gecko_flavour=toolkit ;; esac -_GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" -_GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" -_GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" -_GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" - +if $PKG_CONFIG --exists ${gecko_cv_gecko}-xpcom; then + _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" + _GECKO_CFLAGS="-I$_GECKO_INCLUDE_ROOT" + _GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" + _GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" + _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" + _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test +else + _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}`/unstable" + _GECKO_CFLAGS="`$PKG_CONFIG --cflags ${gecko_cv_gecko}` `$PKG_CONFIG --cflags ${gecko_cv_gecko}-unstable`" + _GECKO_LIBDIR="`$PKG_CONFIG --variable=sdkdir ${gecko_cv_gecko}`/bin" + _GECKO_HOME=$with_gecko_home + _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}`" + _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test +fi fi # if gecko_cv_have_gecko if test "$gecko_cv_gecko_flavour" = "toolkit"; then @@ -24428,9 +24451,11 @@ GECKO=$gecko_cv_gecko GECKO_FLAVOUR=$gecko_cv_gecko_flavour GECKO_INCLUDE_ROOT=$_GECKO_INCLUDE_ROOT +GECKO_CFLAGS=$_GECKO_CFLAGS GECKO_LIBDIR=$_GECKO_LIBDIR GECKO_HOME=$_GECKO_HOME GECKO_PREFIX=$_GECKO_PREFIX +GECKO_NSPR=$_GECKO_NSPR # ************************************************************** # This is really gcc-only @@ -24567,7 +24592,7 @@ _SAVE_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT" +CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS" { echo "$as_me:$LINENO: checking whether we have a gtk 2 gecko build" >&5 echo $ECHO_N "checking whether we have a gtk 2 gecko build... $ECHO_C" >&6; } @@ -24673,6 +24698,49 @@ { echo "$as_me:$LINENO: result: $gecko_cv_have_debug" >&5 echo "${ECHO_T}$gecko_cv_have_debug" >&6; } +{ echo "$as_me:$LINENO: checking whether we have a xpcom glue" >&5 +echo $ECHO_N "checking whether we have a xpcom glue... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + + #ifndef XPCOM_GLUE + #error "no xpcom glue found" + #endif + +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + gecko_cv_have_xpcom_glue=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + gecko_cv_have_xpcom_glue=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $gecko_cv_have_xpcom_glue" >&5 +echo "${ECHO_T}$gecko_cv_have_xpcom_glue" >&6; } + CPPFLAGS="$_SAVE_CPPFLAGS" ac_ext=c @@ -24693,9 +24761,37 @@ fi +if test "$gecko_cv_have_xpcom_glue" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_GECKO_XPCOM_GLUE 1 +_ACEOF + +fi + fi # if gecko_cv_have_gecko + +if test "$gecko_cv_have_debug" = "yes"; then + HAVE_GECKO_DEBUG_TRUE= + HAVE_GECKO_DEBUG_FALSE='#' +else + HAVE_GECKO_DEBUG_TRUE='#' + HAVE_GECKO_DEBUG_FALSE= +fi + + + +if test "$gecko_cv_have_xpcom_glue" = "yes"; then + HAVE_GECKO_XPCOM_GLUE_TRUE= + HAVE_GECKO_XPCOM_GLUE_FALSE='#' +else + HAVE_GECKO_XPCOM_GLUE_TRUE='#' + HAVE_GECKO_XPCOM_GLUE_FALSE= +fi + + # *********************** # Check for gecko version # *********************** @@ -24710,7 +24806,7 @@ _SAVE_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT" +CPPFLAGS="$CPPFLAGS $_GECKO_CFLAGS" { echo "$as_me:$LINENO: checking for gecko version" >&5 echo $ECHO_N "checking for gecko version... $ECHO_C" >&6; } @@ -24871,8 +24967,11 @@ gecko_cv_extra_pkg_dependencies= if test "$gecko_cv_gecko_version_int" -ge "1009000"; then - gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" - gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue_s" + if ! test "$gecko_cv_have_xpcom_glue" = "yes"; then + gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" + else + gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue" + fi else gecko_cv_extra_pkg_dependencies="${gecko_cv_gecko}-gtkmozembed" fi @@ -24911,6 +25010,7 @@ case "$gecko_cv_gecko" in xulrunner) min_version=1.8 ;; +libxul*) min_version=1.9 ;; *firefox) min_version=1.5 ;; *) { { echo "$as_me:$LINENO: error: Unsupported gecko \"$gecko_cv_gecko\"" >&5 echo "$as_me: error: Unsupported gecko \"$gecko_cv_gecko\"" >&2;} @@ -24918,6 +25018,7 @@ esac # Added $gecko_cv_gecko-js for debian xulrunner brokenness +if test $gecko_cv_gecko != "libxul-embedding" -a $gecko_cv_gecko != "libxul"; then pkg_failed=no { echo "$as_me:$LINENO: checking for GECKO" >&5 @@ -24928,12 +25029,12 @@ pkg_cv_GECKO_CFLAGS="$GECKO_CFLAGS" else if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\${gecko_cv_gecko}-xpcom >= \$min_version \${gecko_cv_gecko}-js \$gecko_cv_extra_pkg_dependencies\"") >&5 - ($PKG_CONFIG --exists --print-errors "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies") 2>&5 + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \${gecko_cv_gecko}-xpcom >= \$min_version \${gecko_cv_gecko}-js \$gecko_cv_extra_pkg_dependencies\"") >&5 + ($PKG_CONFIG --exists --print-errors " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GECKO_CFLAGS=`$PKG_CONFIG --cflags "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies" 2>/dev/null` + pkg_cv_GECKO_CFLAGS=`$PKG_CONFIG --cflags " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies" 2>/dev/null` else pkg_failed=yes fi @@ -24946,12 +25047,12 @@ pkg_cv_GECKO_LIBS="$GECKO_LIBS" else if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\${gecko_cv_gecko}-xpcom >= \$min_version \${gecko_cv_gecko}-js \$gecko_cv_extra_pkg_dependencies\"") >&5 - ($PKG_CONFIG --exists --print-errors "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies") 2>&5 + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \${gecko_cv_gecko}-xpcom >= \$min_version \${gecko_cv_gecko}-js \$gecko_cv_extra_pkg_dependencies\"") >&5 + ($PKG_CONFIG --exists --print-errors " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GECKO_LIBS=`$PKG_CONFIG --libs "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies" 2>/dev/null` + pkg_cv_GECKO_LIBS=`$PKG_CONFIG --libs " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies" 2>/dev/null` else pkg_failed=yes fi @@ -24970,14 +25071,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GECKO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies"` + GECKO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies"` else - GECKO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies"` + GECKO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors " ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies"` fi # Put the nasty error message in config.log where it belongs echo "$GECKO_PKG_ERRORS" >&5 - { { echo "$as_me:$LINENO: error: Package requirements (${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies) were not met: + { { echo "$as_me:$LINENO: error: Package requirements ( ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies) were not met: $GECKO_PKG_ERRORS @@ -24988,7 +25089,7 @@ and GECKO_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 (${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies) were not met: +echo "$as_me: error: Package requirements ( ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies) were not met: $GECKO_PKG_ERRORS @@ -25029,6 +25130,43 @@ echo "${ECHO_T}yes" >&6; } : fi +else + GECKO_CFLAGS="$GECKO_CFLAGS -UDEBUG" + GECKO_LIBS="$GECKO_LIBS `pkg-config --libs ${gecko_cv_gecko}`" +fi + +{ echo "$as_me:$LINENO: checking nspr in gecko" >&5 +echo $ECHO_N "checking nspr in gecko... $ECHO_C" >&6; } +if test "$GECKO_NSPR" != yes; then + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + { echo "$as_me:$LINENO: checking nspr in system" >&5 +echo $ECHO_N "checking nspr in system... $ECHO_C" >&6; } + gecko_nspr= + if $PKG_CONFIG --exists mozilla-nspr; then + gecko_nspr=mozilla-nspr + elif $PKG_CONFIG --exists ${gecko_cv_gecko}-nspr; then + gecko_nspr=${gecko_cv_gecko}-nspr + fi + if $PKG_CONFIG --exists nspr; then + gecko_nspr=nspr + fi + if test -z "$gecko_nspr"; then + { { echo "$as_me:$LINENO: error: no nspr available" >&5 +echo "$as_me: error: no nspr available" >&2;} + { (exit 1); exit 1; }; } + fi + + GECKO_CFLAGS="$GECKO_CFLAGS `$PKG_CONFIG --cflags ${gecko_nspr}`" + GECKO_LIBS="$GECKO_LIBS `$PKG_CONFIG --libs ${gecko_nspr}`" + _GECKO_CFLAGS="$GECKO_CFLAGS" + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +else + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +fi + @@ -25085,10 +25223,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="" @@ -25097,9 +25245,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done if test "$cross_compiling" = yes; then @@ -25115,11 +25265,17 @@ #include <mozilla-config.h> #include <stdlib.h> #include <stdio.h> + +#ifdef XPCOM_GLUE +#include <nsXPCOMGlue.h> +#else #include <nsXPCOM.h> +#endif // XPCOM_GLUE + #include <nsCOMPtr.h> #include <nsILocalFile.h> #include <nsIServiceManager.h> -#ifdef HAVE_GECKO_1_8 +#if defined(HAVE_GECKO_1_8) || defined(HAVE_GECKO_1_9) #include <nsStringAPI.h> #else #include <nsString.h> @@ -25130,16 +25286,37 @@ main () { + +nsresult rv; +#ifdef XPCOM_GLUE + static const GREVersionRange greVersion = { + "1.8", PR_TRUE, + "1.9.*", PR_TRUE + }; + char xpcomLocation[4096]; + rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); + if (NS_FAILED(rv)) { + exit(123); + } + + // Startup the XPCOM Glue that links us up with XPCOM. + XPCOMGlueStartup(xpcomLocation); + if (NS_FAILED(rv)) { + exit(124); + } +#endif // XPCOM_GLUE + // redirect unwanted mozilla debug output to the bit bucket freopen ("/dev/null", "w", stdout); -nsresult rv; -nsCOMPtr<nsILocalFile> directory; +nsCOMPtr<nsILocalFile> directory = nsnull; +#ifndef XPCOM_GLUE rv = NS_NewNativeLocalFile (NS_LITERAL_CSTRING("$_GECKO_HOME"), PR_FALSE, getter_AddRefs (directory)); if (NS_FAILED (rv) || !directory) { exit (126); } +#endif rv = NS_InitXPCOM2 (nsnull, directory, nsnull); if (NS_FAILED (rv)) { @@ -25252,10 +25429,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="pipnss" @@ -25264,9 +25451,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -25508,10 +25697,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="windowwatcher" @@ -25520,9 +25719,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -25709,10 +25910,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="docshell" @@ -25721,9 +25932,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -25910,10 +26123,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="necko" @@ -25922,9 +26145,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -26111,10 +26336,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="xpcom" @@ -26123,9 +26358,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -26311,10 +26548,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="spellchecker" @@ -26323,9 +26570,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done @@ -26534,10 +26783,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="" @@ -26546,9 +26805,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done if test "$cross_compiling" = yes; then @@ -26564,11 +26825,17 @@ #include <mozilla-config.h> #include <stdlib.h> #include <stdio.h> + +#ifdef XPCOM_GLUE +#include <nsXPCOMGlue.h> +#else #include <nsXPCOM.h> +#endif // XPCOM_GLUE + #include <nsCOMPtr.h> #include <nsILocalFile.h> #include <nsIServiceManager.h> -#ifdef HAVE_GECKO_1_8 +#if defined(HAVE_GECKO_1_8) || defined(HAVE_GECKO_1_9) #include <nsStringAPI.h> #else #include <nsString.h> @@ -26581,16 +26848,37 @@ main () { + +nsresult rv; +#ifdef XPCOM_GLUE + static const GREVersionRange greVersion = { + "1.8", PR_TRUE, + "1.9.*", PR_TRUE + }; + char xpcomLocation[4096]; + rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); + if (NS_FAILED(rv)) { + exit(123); + } + + // Startup the XPCOM Glue that links us up with XPCOM. + XPCOMGlueStartup(xpcomLocation); + if (NS_FAILED(rv)) { + exit(124); + } +#endif // XPCOM_GLUE + // redirect unwanted mozilla debug output to the bit bucket freopen ("/dev/null", "w", stdout); -nsresult rv; -nsCOMPtr<nsILocalFile> directory; +nsCOMPtr<nsILocalFile> directory = nsnull; +#ifndef XPCOM_GLUE rv = NS_NewNativeLocalFile (NS_LITERAL_CSTRING("$_GECKO_HOME"), PR_FALSE, getter_AddRefs (directory)); if (NS_FAILED (rv) || !directory) { exit (126); } +#endif rv = NS_InitXPCOM2 (nsnull, directory, nsnull); if (NS_FAILED (rv)) { @@ -26710,7 +26998,9 @@ if test -z "$gecko_cv_gecko_version_int"; then gecko_cv_gecko_version_int=0 fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_flavour" = "toolkit"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_flavour" = "toolkit"; then HAVE_MOZILLA_TOOLKIT_TRUE= HAVE_MOZILLA_TOOLKIT_FALSE='#' else @@ -26718,7 +27008,9 @@ HAVE_MOZILLA_TOOLKIT_FALSE= fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_have_debug" = "yes"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_have_debug" = "yes"; then HAVE_GECKO_DEBUG_TRUE= HAVE_GECKO_DEBUG_FALSE='#' else @@ -26726,7 +27018,9 @@ HAVE_GECKO_DEBUG_FALSE= fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1007000"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1007000"; then HAVE_GECKO_1_7_TRUE= HAVE_GECKO_1_7_FALSE='#' else @@ -26734,7 +27028,9 @@ HAVE_GECKO_1_7_FALSE= fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008000"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008000"; then HAVE_GECKO_1_8_TRUE= HAVE_GECKO_1_8_FALSE='#' else @@ -26742,7 +27038,9 @@ HAVE_GECKO_1_8_FALSE= fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008001"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008001"; then HAVE_GECKO_1_8_1_TRUE= HAVE_GECKO_1_8_1_FALSE='#' else @@ -26750,7 +27048,9 @@ HAVE_GECKO_1_8_1_FALSE= fi - if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1009000"; then + + +if test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1009000"; then HAVE_GECKO_1_9_TRUE= HAVE_GECKO_1_9_FALSE='#' else @@ -26759,7 +27059,19 @@ fi - if test "$with_engine" = "mozilla"; then + +if test "x$_GECKO_HOME" != "x"; then + HAVE_GECKO_HOME_TRUE= + HAVE_GECKO_HOME_FALSE='#' +else + HAVE_GECKO_HOME_TRUE='#' + HAVE_GECKO_HOME_FALSE= +fi + + + + +if test "$with_engine" = "mozilla"; then WITH_GECKO_ENGINE_TRUE= WITH_GECKO_ENGINE_FALSE='#' else @@ -26767,7 +27079,9 @@ WITH_GECKO_ENGINE_FALSE= fi - if test "$gecko_cv_gecko" = "xulrunner"; then + + +if test "$gecko_cv_gecko" = "xulrunner"; then HAVE_XULRUNNER_TRUE= HAVE_XULRUNNER_FALSE='#' else @@ -26775,7 +27089,9 @@ HAVE_XULRUNNER_FALSE= fi - if test "$enable_psm" = "yes" -a "$have_psm" = "yes"; then + + +if test "$enable_psm" = "yes" -a "$have_psm" = "yes"; then HAVE_MOZILLA_PSM_TRUE= HAVE_MOZILLA_PSM_FALSE='#' else @@ -26783,7 +27099,9 @@ HAVE_MOZILLA_PSM_FALSE= fi - if test "$enable_filepicker" = "yes"; then + + +if test "$enable_filepicker" = "yes"; then ENABLE_FILEPICKER_TRUE= ENABLE_FILEPICKER_FALSE='#' else @@ -27248,7 +27566,9 @@ - if test "$libxul_cv_have_libxul" = "yes"; then + + +if test "$libxul_cv_have_libxul" = "yes"; then HAVE_LIBXUL_TRUE= HAVE_LIBXUL_FALSE='#' else @@ -27256,7 +27576,9 @@ HAVE_LIBXUL_FALSE= fi - if test "$libxul_cv_have_debug" = "yes"; then + + +if test "$libxul_cv_have_debug" = "yes"; then HAVE_LIBXUL_DEBUG_TRUE= HAVE_LIBXUL_DEBUG_FALSE='#' else @@ -27267,7 +27589,9 @@ - if test "$with_engine" = "xulrunner"; then + + +if test "$with_engine" = "xulrunner"; then WITH_XULRUNNER_ENGINE_TRUE= WITH_XULRUNNER_ENGINE_FALSE='#' else @@ -27401,7 +27725,9 @@ fi # with_engine = webkit - if test "$with_engine" = "webkit"; then + + +if test "$with_engine" = "webkit"; then WITH_WEBKIT_ENGINE_TRUE= WITH_WEBKIT_ENGINE_FALSE='#' else @@ -28048,7 +28374,9 @@ EPIPHANY_FEATURES="$EPIPHANY_FEATURES python" fi - if test "$enable_python" = "yes"; then + + +if test "$enable_python" = "yes"; then ENABLE_PYTHON_TRUE= ENABLE_PYTHON_FALSE='#' else @@ -28081,6 +28409,119 @@ echo "${ECHO_T}$enable_desktop_file_plugin" >&6; } if test "$enable_desktop_file_plugin" = "yes"; then + if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + +pkg_failed=no +{ echo "$as_me:$LINENO: checking for DESKTOP_FILE_PLUGIN_DEP" >&5 +echo $ECHO_N "checking for DESKTOP_FILE_PLUGIN_DEP... $ECHO_C" >&6; } + +if test -n "$PKG_CONFIG"; then + if test -n "$DESKTOP_FILE_PLUGIN_DEP_CFLAGS"; then + pkg_cv_DESKTOP_FILE_PLUGIN_DEP_CFLAGS="$DESKTOP_FILE_PLUGIN_DEP_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_DESKTOP_FILE_PLUGIN_DEP_CFLAGS=`$PKG_CONFIG --cflags "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$DESKTOP_FILE_PLUGIN_DEP_LIBS"; then + pkg_cv_DESKTOP_FILE_PLUGIN_DEP_LIBS="$DESKTOP_FILE_PLUGIN_DEP_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_DESKTOP_FILE_PLUGIN_DEP_LIBS=`$PKG_CONFIG --libs "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + DESKTOP_FILE_PLUGIN_DEP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0"` + else + DESKTOP_FILE_PLUGIN_DEP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0"` + fi + # Put the nasty error message in config.log where it belongs + echo "$DESKTOP_FILE_PLUGIN_DEP_PKG_ERRORS" >&5 + + { { echo "$as_me:$LINENO: error: Package requirements (${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0) were not met: + +$DESKTOP_FILE_PLUGIN_DEP_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 DESKTOP_FILE_PLUGIN_DEP_CFLAGS +and DESKTOP_FILE_PLUGIN_DEP_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 (${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0) were not met: + +$DESKTOP_FILE_PLUGIN_DEP_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 DESKTOP_FILE_PLUGIN_DEP_CFLAGS +and DESKTOP_FILE_PLUGIN_DEP_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 DESKTOP_FILE_PLUGIN_DEP_CFLAGS +and DESKTOP_FILE_PLUGIN_DEP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see <http://pkg-config.freedesktop.org/>. +See \`config.log' for more details." >&5 +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 DESKTOP_FILE_PLUGIN_DEP_CFLAGS +and DESKTOP_FILE_PLUGIN_DEP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see <http://pkg-config.freedesktop.org/>. +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +else + DESKTOP_FILE_PLUGIN_DEP_CFLAGS=$pkg_cv_DESKTOP_FILE_PLUGIN_DEP_CFLAGS + DESKTOP_FILE_PLUGIN_DEP_LIBS=$pkg_cv_DESKTOP_FILE_PLUGIN_DEP_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + : +fi + else pkg_failed=no { echo "$as_me:$LINENO: checking for DESKTOP_FILE_PLUGIN_DEP" >&5 @@ -28192,6 +28633,7 @@ echo "${ECHO_T}yes" >&6; } : fi + fi fi @@ -28208,7 +28650,9 @@ enable_desktop_file_plugin=no fi # with_engine != mozilla - if test "$enable_desktop_file_plugin" = "yes"; then + + +if test "$enable_desktop_file_plugin" = "yes"; then ENABLE_DESKTOP_FILE_PLUGIN_TRUE= ENABLE_DESKTOP_FILE_PLUGIN_FALSE='#' else @@ -28332,7 +28776,9 @@ fi - if test "$enable_zeroconf" = "yes"; then + + +if test "$enable_zeroconf" = "yes"; then ENABLE_ZEROCONF_TRUE= ENABLE_ZEROCONF_FALSE='#' else @@ -28522,7 +28968,9 @@ fi - if test "$enable_network_manager" = "yes"; then + + +if test "$enable_network_manager" = "yes"; then ENABLE_NETWORK_MANAGER_TRUE= ENABLE_NETWORK_MANAGER_FALSE='#' else @@ -28690,7 +29138,9 @@ fi # with_engine != mozilla - if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" = "yes"; then + + +if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" = "yes"; then ENABLE_SPELLCHECKER_TRUE= ENABLE_SPELLCHECKER_FALSE='#' else @@ -30447,7 +30897,9 @@ enable_scrollkeeper=yes fi - if test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"; then + + +if test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"; then ENABLE_SK_TRUE= ENABLE_SK_FALSE='#' else @@ -30456,7 +30908,9 @@ fi - if test "$gdu_cv_have_gdu" = "yes"; then + + +if test "$gdu_cv_have_gdu" = "yes"; then HAVE_GNOME_DOC_UTILS_TRUE= HAVE_GNOME_DOC_UTILS_FALSE='#' else @@ -30552,7 +31006,9 @@ done - if test x$enable_gtk_doc = xyes; then + + +if test x$enable_gtk_doc = xyes; then ENABLE_GTK_DOC_TRUE= ENABLE_GTK_DOC_FALSE='#' else @@ -30560,7 +31016,9 @@ ENABLE_GTK_DOC_FALSE= fi - if test -n "$LIBTOOL"; then + + +if test -n "$LIBTOOL"; then GTK_DOC_USE_LIBTOOL_TRUE= GTK_DOC_USE_LIBTOOL_FALSE='#' else @@ -30744,6 +31202,20 @@ Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi +if test -z "${HAVE_GECKO_DEBUG_TRUE}" && test -z "${HAVE_GECKO_DEBUG_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"HAVE_GECKO_DEBUG\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"HAVE_GECKO_DEBUG\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${HAVE_GECKO_XPCOM_GLUE_TRUE}" && test -z "${HAVE_GECKO_XPCOM_GLUE_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"HAVE_GECKO_XPCOM_GLUE\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"HAVE_GECKO_XPCOM_GLUE\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi if test -z "${HAVE_MOZILLA_TOOLKIT_TRUE}" && test -z "${HAVE_MOZILLA_TOOLKIT_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_MOZILLA_TOOLKIT\" was never defined. Usually this means the macro was only invoked conditionally." >&5 @@ -30786,6 +31258,13 @@ Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi +if test -z "${HAVE_GECKO_HOME_TRUE}" && test -z "${HAVE_GECKO_HOME_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"HAVE_GECKO_HOME\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"HAVE_GECKO_HOME\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi if test -z "${WITH_GECKO_ENGINE_TRUE}" && test -z "${WITH_GECKO_ENGINE_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"WITH_GECKO_ENGINE\" was never defined. Usually this means the macro was only invoked conditionally." >&5 @@ -31269,7 +31748,6 @@ ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF @@ -31520,7 +31998,6 @@ INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim -am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim @@ -31569,6 +32046,7 @@ SED!$SED$ac_delim GREP!$GREP$ac_delim EGREP!$EGREP$ac_delim +LN_S!$LN_S$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then @@ -31610,7 +32088,6 @@ ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF -LN_S!$LN_S$ac_delim ECHO!$ECHO$ac_delim AR!$AR$ac_delim RANLIB!$RANLIB$ac_delim @@ -31673,6 +32150,10 @@ GCONF_SCHEMAS_INSTALL_FALSE!$GCONF_SCHEMAS_INSTALL_FALSE$ac_delim GCONFTOOL!$GCONFTOOL$ac_delim with_engine!$with_engine$ac_delim +HAVE_GECKO_DEBUG_TRUE!$HAVE_GECKO_DEBUG_TRUE$ac_delim +HAVE_GECKO_DEBUG_FALSE!$HAVE_GECKO_DEBUG_FALSE$ac_delim +HAVE_GECKO_XPCOM_GLUE_TRUE!$HAVE_GECKO_XPCOM_GLUE_TRUE$ac_delim +HAVE_GECKO_XPCOM_GLUE_FALSE!$HAVE_GECKO_XPCOM_GLUE_FALSE$ac_delim GECKO!$GECKO$ac_delim GECKO_FLAVOUR!$GECKO_FLAVOUR$ac_delim GECKO_INCLUDE_ROOT!$GECKO_INCLUDE_ROOT$ac_delim @@ -31685,8 +32166,6 @@ WEASEL_UA_VERSION!$WEASEL_UA_VERSION$ac_delim HAVE_MOZILLA_TOOLKIT_TRUE!$HAVE_MOZILLA_TOOLKIT_TRUE$ac_delim HAVE_MOZILLA_TOOLKIT_FALSE!$HAVE_MOZILLA_TOOLKIT_FALSE$ac_delim -HAVE_GECKO_DEBUG_TRUE!$HAVE_GECKO_DEBUG_TRUE$ac_delim -HAVE_GECKO_DEBUG_FALSE!$HAVE_GECKO_DEBUG_FALSE$ac_delim HAVE_GECKO_1_7_TRUE!$HAVE_GECKO_1_7_TRUE$ac_delim HAVE_GECKO_1_7_FALSE!$HAVE_GECKO_1_7_FALSE$ac_delim HAVE_GECKO_1_8_TRUE!$HAVE_GECKO_1_8_TRUE$ac_delim @@ -31695,6 +32174,8 @@ HAVE_GECKO_1_8_1_FALSE!$HAVE_GECKO_1_8_1_FALSE$ac_delim HAVE_GECKO_1_9_TRUE!$HAVE_GECKO_1_9_TRUE$ac_delim HAVE_GECKO_1_9_FALSE!$HAVE_GECKO_1_9_FALSE$ac_delim +HAVE_GECKO_HOME_TRUE!$HAVE_GECKO_HOME_TRUE$ac_delim +HAVE_GECKO_HOME_FALSE!$HAVE_GECKO_HOME_FALSE$ac_delim WITH_GECKO_ENGINE_TRUE!$WITH_GECKO_ENGINE_TRUE$ac_delim WITH_GECKO_ENGINE_FALSE!$WITH_GECKO_ENGINE_FALSE$ac_delim HAVE_XULRUNNER_TRUE!$HAVE_XULRUNNER_TRUE$ac_delim @@ -31704,9 +32185,6 @@ ENABLE_FILEPICKER_TRUE!$ENABLE_FILEPICKER_TRUE$ac_delim ENABLE_FILEPICKER_FALSE!$ENABLE_FILEPICKER_FALSE$ac_delim LIBXUL_VERSION!$LIBXUL_VERSION$ac_delim -LIBXUL_PREFIX!$LIBXUL_PREFIX$ac_delim -LIBXUL_INCLUDE_ROOT!$LIBXUL_INCLUDE_ROOT$ac_delim -LIBXUL_INCLUDES!$LIBXUL_INCLUDES$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then @@ -31748,6 +32226,9 @@ ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF +LIBXUL_PREFIX!$LIBXUL_PREFIX$ac_delim +LIBXUL_INCLUDE_ROOT!$LIBXUL_INCLUDE_ROOT$ac_delim +LIBXUL_INCLUDES!$LIBXUL_INCLUDES$ac_delim LIBXUL_LIBDIR!$LIBXUL_LIBDIR$ac_delim LIBXUL_CXXCPPFLAGS!$LIBXUL_CXXCPPFLAGS$ac_delim LIBXUL_CXXFLAGS!$LIBXUL_CXXFLAGS$ac_delim @@ -31839,7 +32320,7 @@ LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 89; then + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 92; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 @@ -32066,11 +32547,6 @@ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF @@ -32124,7 +32600,6 @@ s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out @@ -32240,22 +32715,21 @@ fi rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. -_am_arg=$ac_file _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in - $_am_arg | $_am_arg:* ) + $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -echo X"$_am_arg" | +echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || +$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X$ac_file : 'X\(//\)[^/]' \| \ + X$ac_file : 'X\(//\)$' \| \ + X$ac_file : 'X\(/\)' \| . 2>/dev/null || +echo X$ac_file | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -32290,9 +32764,8 @@ # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + # So let's grep whole file. + if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ --- epiphany-browser-2.22.0.orig/data/icons/Makefile.in +++ epiphany-browser-2.22.0/data/icons/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -52,6 +56,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -95,6 +101,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -106,6 +128,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -124,9 +148,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -173,8 +224,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -227,14 +279,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -246,7 +304,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -278,11 +335,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ NULL = public_icons_themes = \ @@ -406,6 +460,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -414,21 +472,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -473,7 +532,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -487,20 +546,12 @@ install-data-am: install-data-local -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -519,21 +570,17 @@ ps-am: -uninstall-am: uninstall-local - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-data-local install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install-data install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-local + uninstall uninstall-am uninstall-info-am uninstall-local update-icon-cache: --- epiphany-browser-2.22.0.orig/data/glade/Makefile.in +++ epiphany-browser-2.22.0/data/glade/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -60,6 +64,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -103,6 +109,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -114,6 +136,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -132,9 +156,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -181,8 +232,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -235,14 +287,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -254,7 +312,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -286,11 +343,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ gladedir = $(pkgdatadir)/glade glade_DATA = \ @@ -339,9 +393,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-gladeDATA: $(glade_DATA) @$(NORMAL_INSTALL) - test -z "$(gladedir)" || $(MKDIR_P) "$(DESTDIR)$(gladedir)" + test -z "$(gladedir)" || $(mkdir_p) "$(DESTDIR)$(gladedir)" @list='$(glade_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -364,21 +422,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -394,7 +453,7 @@ all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(gladedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am @@ -426,7 +485,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -440,20 +499,12 @@ install-data-am: install-gladeDATA -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -472,21 +523,17 @@ ps-am: -uninstall-am: uninstall-gladeDATA - -.MAKE: install-am install-strip +uninstall-am: uninstall-gladeDATA uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-gladeDATA install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install-data install-data-am install-exec install-exec-am \ + install-gladeDATA install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-gladeDATA + uninstall uninstall-am uninstall-gladeDATA 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. --- epiphany-browser-2.22.0.orig/data/art/Makefile.in +++ epiphany-browser-2.22.0/data/art/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -61,6 +65,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -104,6 +110,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -115,6 +137,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -133,9 +157,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -182,8 +233,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -236,14 +288,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -255,7 +313,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -287,11 +344,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ art_DATA = appicon_DATA = epiphany-bookmarks.png @@ -337,9 +391,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-appiconDATA: $(appicon_DATA) @$(NORMAL_INSTALL) - test -z "$(appicondir)" || $(MKDIR_P) "$(DESTDIR)$(appicondir)" + test -z "$(appicondir)" || $(mkdir_p) "$(DESTDIR)$(appicondir)" @list='$(appicon_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -356,7 +414,7 @@ done install-artDATA: $(art_DATA) @$(NORMAL_INSTALL) - test -z "$(artdir)" || $(MKDIR_P) "$(DESTDIR)$(artdir)" + test -z "$(artdir)" || $(mkdir_p) "$(DESTDIR)$(artdir)" @list='$(art_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -379,21 +437,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -409,7 +468,7 @@ all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(appicondir)" "$(DESTDIR)$(artdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am @@ -441,7 +500,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -457,20 +516,12 @@ @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -489,22 +540,19 @@ ps-am: -uninstall-am: uninstall-appiconDATA uninstall-artDATA - -.MAKE: install-am install-data-am install-strip +uninstall-am: uninstall-appiconDATA uninstall-artDATA \ + uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-appiconDATA install-artDATA install-data \ - install-data-am install-data-hook install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ + install-data-am install-data-hook install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-appiconDATA uninstall-artDATA + uninstall-appiconDATA uninstall-artDATA uninstall-info-am install-data-hook: --- epiphany-browser-2.22.0.orig/data/chrome/Makefile.in +++ epiphany-browser-2.22.0/data/chrome/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -64,6 +68,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -107,6 +113,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -118,6 +140,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -136,9 +160,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -185,8 +236,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -239,14 +291,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -258,7 +316,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -290,11 +347,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ manifestdir = $(pkgdatadir)/chrome manifest_in_files = epiphany.manifest.in @@ -361,9 +415,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-brandingDATA: $(branding_DATA) @$(NORMAL_INSTALL) - test -z "$(brandingdir)" || $(MKDIR_P) "$(DESTDIR)$(brandingdir)" + test -z "$(brandingdir)" || $(mkdir_p) "$(DESTDIR)$(brandingdir)" @list='$(branding_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -380,7 +438,7 @@ done install-globalchromeDATA: $(globalchrome_DATA) @$(NORMAL_INSTALL) - test -z "$(globalchromedir)" || $(MKDIR_P) "$(DESTDIR)$(globalchromedir)" + test -z "$(globalchromedir)" || $(mkdir_p) "$(DESTDIR)$(globalchromedir)" @list='$(globalchrome_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -397,7 +455,7 @@ done install-manifestDATA: $(manifest_DATA) @$(NORMAL_INSTALL) - test -z "$(manifestdir)" || $(MKDIR_P) "$(DESTDIR)$(manifestdir)" + test -z "$(manifestdir)" || $(mkdir_p) "$(DESTDIR)$(manifestdir)" @list='$(manifest_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -420,21 +478,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -450,7 +509,7 @@ all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(brandingdir)" "$(DESTDIR)$(globalchromedir)" "$(DESTDIR)$(manifestdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am @@ -484,7 +543,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -499,20 +558,12 @@ install-data-am: install-brandingDATA install-globalchromeDATA \ install-manifestDATA -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -532,23 +583,19 @@ ps-am: uninstall-am: uninstall-brandingDATA uninstall-globalchromeDATA \ - uninstall-manifestDATA - -.MAKE: install-am install-strip + uninstall-info-am uninstall-manifestDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ - install-brandingDATA install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am \ - install-globalchromeDATA install-html install-html-am \ - install-info install-info-am install-man install-manifestDATA \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-brandingDATA \ - uninstall-globalchromeDATA uninstall-manifestDATA + install-brandingDATA install-data install-data-am install-exec \ + install-exec-am install-globalchromeDATA install-info \ + install-info-am install-man install-manifestDATA install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-brandingDATA uninstall-globalchromeDATA \ + uninstall-info-am uninstall-manifestDATA %.manifest: %.manifest.in --- epiphany-browser-2.22.0.orig/data/ui/Makefile.in +++ epiphany-browser-2.22.0/data/ui/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -60,6 +64,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -103,6 +109,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -114,6 +136,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -132,9 +156,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -181,8 +232,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -235,14 +287,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -254,7 +312,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -286,11 +343,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ xmldir = $(pkgdatadir) xml_DATA = \ @@ -340,9 +394,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-xmlDATA: $(xml_DATA) @$(NORMAL_INSTALL) - test -z "$(xmldir)" || $(MKDIR_P) "$(DESTDIR)$(xmldir)" + test -z "$(xmldir)" || $(mkdir_p) "$(DESTDIR)$(xmldir)" @list='$(xml_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -365,21 +423,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -395,7 +454,7 @@ all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(xmldir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am @@ -427,7 +486,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -441,20 +500,12 @@ install-data-am: install-xmlDATA -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -473,21 +524,17 @@ ps-am: -uninstall-am: uninstall-xmlDATA - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am uninstall-xmlDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ install-xmlDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-xmlDATA + uninstall uninstall-am uninstall-info-am uninstall-xmlDATA # 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. --- epiphany-browser-2.22.0.orig/data/Makefile.in +++ epiphany-browser-2.22.0/data/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -53,11 +57,10 @@ DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -83,8 +86,6 @@ DATA = $(about_DATA) $(aboutdialog_DATA) $(default_prefs_DATA) \ $(desktop_DATA) $(m4data_DATA) $(mimepermission_DATA) \ $(pkgconfig_DATA) $(schema_DATA) $(service_DATA) $(xsl_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -92,6 +93,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -135,6 +138,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -146,6 +165,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -164,9 +185,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -213,8 +261,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -267,14 +316,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -286,7 +341,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -318,11 +372,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = art chrome glade icons ui default_prefs_in_FILES = \ @@ -428,9 +479,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-aboutDATA: $(about_DATA) @$(NORMAL_INSTALL) - test -z "$(aboutdir)" || $(MKDIR_P) "$(DESTDIR)$(aboutdir)" + test -z "$(aboutdir)" || $(mkdir_p) "$(DESTDIR)$(aboutdir)" @list='$(about_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -447,7 +502,7 @@ done install-aboutdialogDATA: $(aboutdialog_DATA) @$(NORMAL_INSTALL) - test -z "$(aboutdialogdir)" || $(MKDIR_P) "$(DESTDIR)$(aboutdialogdir)" + test -z "$(aboutdialogdir)" || $(mkdir_p) "$(DESTDIR)$(aboutdialogdir)" @list='$(aboutdialog_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -464,7 +519,7 @@ done install-default_prefsDATA: $(default_prefs_DATA) @$(NORMAL_INSTALL) - test -z "$(default_prefsdir)" || $(MKDIR_P) "$(DESTDIR)$(default_prefsdir)" + test -z "$(default_prefsdir)" || $(mkdir_p) "$(DESTDIR)$(default_prefsdir)" @list='$(default_prefs_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -481,7 +536,7 @@ done install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) - test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" + test -z "$(desktopdir)" || $(mkdir_p) "$(DESTDIR)$(desktopdir)" @list='$(desktop_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -498,7 +553,7 @@ done install-m4dataDATA: $(m4data_DATA) @$(NORMAL_INSTALL) - test -z "$(m4datadir)" || $(MKDIR_P) "$(DESTDIR)$(m4datadir)" + test -z "$(m4datadir)" || $(mkdir_p) "$(DESTDIR)$(m4datadir)" @list='$(m4data_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -515,7 +570,7 @@ done install-mimepermissionDATA: $(mimepermission_DATA) @$(NORMAL_INSTALL) - test -z "$(mimepermissiondir)" || $(MKDIR_P) "$(DESTDIR)$(mimepermissiondir)" + test -z "$(mimepermissiondir)" || $(mkdir_p) "$(DESTDIR)$(mimepermissiondir)" @list='$(mimepermission_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -532,7 +587,7 @@ done install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) - test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" + test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -549,7 +604,7 @@ done install-schemaDATA: $(schema_DATA) @$(NORMAL_INSTALL) - test -z "$(schemadir)" || $(MKDIR_P) "$(DESTDIR)$(schemadir)" + test -z "$(schemadir)" || $(mkdir_p) "$(DESTDIR)$(schemadir)" @list='$(schema_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -566,7 +621,7 @@ done install-serviceDATA: $(service_DATA) @$(NORMAL_INSTALL) - test -z "$(servicedir)" || $(MKDIR_P) "$(DESTDIR)$(servicedir)" + test -z "$(servicedir)" || $(mkdir_p) "$(DESTDIR)$(servicedir)" @list='$(service_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -583,7 +638,7 @@ done install-xslDATA: $(xsl_DATA) @$(NORMAL_INSTALL) - test -z "$(xsldir)" || $(MKDIR_P) "$(DESTDIR)$(xsldir)" + test -z "$(xsldir)" || $(mkdir_p) "$(DESTDIR)$(xsldir)" @list='$(xsl_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -630,7 +685,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -674,8 +730,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -700,8 +756,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -711,12 +767,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -730,21 +787,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -758,7 +816,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -766,8 +824,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -778,7 +834,7 @@ installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(aboutdir)" "$(DESTDIR)$(aboutdialogdir)" "$(DESTDIR)$(default_prefsdir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(mimepermissiondir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(xsldir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive @@ -811,7 +867,8 @@ distclean: distclean-recursive -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags +distclean-am: clean-am distclean-generic distclean-libtool \ + distclean-tags dvi: dvi-recursive @@ -829,20 +886,12 @@ install-mimepermissionDATA install-pkgconfigDATA \ install-schemaDATA install-serviceDATA install-xslDATA -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -863,35 +912,33 @@ uninstall-am: uninstall-aboutDATA uninstall-aboutdialogDATA \ uninstall-default_prefsDATA uninstall-desktopDATA \ - uninstall-m4dataDATA uninstall-mimepermissionDATA \ - uninstall-pkgconfigDATA uninstall-schemaDATA \ - uninstall-serviceDATA uninstall-xslDATA - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ + uninstall-info-am uninstall-m4dataDATA \ + uninstall-mimepermissionDATA uninstall-pkgconfigDATA \ + uninstall-schemaDATA uninstall-serviceDATA uninstall-xslDATA + +uninstall-info: uninstall-info-recursive + +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ + ctags-recursive distclean distclean-generic distclean-libtool \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-aboutDATA \ install-aboutdialogDATA install-am install-data \ install-data-am install-data-local install-default_prefsDATA \ - install-desktopDATA install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ + install-desktopDATA install-exec install-exec-am install-info \ install-info-am install-m4dataDATA install-man \ - install-mimepermissionDATA install-pdf install-pdf-am \ - install-pkgconfigDATA install-ps install-ps-am \ + install-mimepermissionDATA install-pkgconfigDATA \ install-schemaDATA install-serviceDATA install-strip \ install-xslDATA installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-recursive uninstall uninstall-aboutDATA \ + maintainer-clean-recursive mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-aboutDATA \ uninstall-aboutdialogDATA uninstall-am \ uninstall-default_prefsDATA uninstall-desktopDATA \ - uninstall-m4dataDATA uninstall-mimepermissionDATA \ - uninstall-pkgconfigDATA uninstall-schemaDATA \ - uninstall-serviceDATA uninstall-xslDATA + uninstall-info-am uninstall-m4dataDATA \ + uninstall-mimepermissionDATA uninstall-pkgconfigDATA \ + uninstall-schemaDATA uninstall-serviceDATA uninstall-xslDATA @INTLTOOL_SERVER_RULE@ --- epiphany-browser-2.22.0.orig/plugins/Makefile.in +++ epiphany-browser-2.22.0/plugins/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +13,15 @@ # PARTICULAR PURPOSE. @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -49,19 +53,18 @@ DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive + 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 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -105,6 +108,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -116,6 +135,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -134,9 +155,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -183,8 +231,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -237,14 +286,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -256,7 +311,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -288,11 +342,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = $(am__append_1) DIST_SUBDIRS = desktop-file @@ -335,6 +386,10 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, @@ -366,7 +421,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -410,8 +466,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -436,8 +492,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -447,12 +503,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -466,21 +523,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -494,7 +552,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -502,8 +560,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -543,7 +599,8 @@ distclean: distclean-recursive -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags +distclean-am: clean-am distclean-generic distclean-libtool \ + distclean-tags dvi: dvi-recursive @@ -557,20 +614,12 @@ install-data-am: -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -589,24 +638,22 @@ ps-am: -uninstall-am: +uninstall-am: uninstall-info-am -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ + ctags-recursive distclean distclean-generic distclean-libtool \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ + 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 mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-generic mostlyclean-libtool \ + 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. --- epiphany-browser-2.22.0.orig/plugins/desktop-file/Makefile.in +++ epiphany-browser-2.22.0/plugins/desktop-file/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -60,22 +64,17 @@ libdesktopfileplugin_la-plugin.lo libdesktopfileplugin_la_OBJECTS = \ $(am_libdesktopfileplugin_la_OBJECTS) -libdesktopfileplugin_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libdesktopfileplugin_la_CXXFLAGS) $(CXXFLAGS) \ - $(libdesktopfileplugin_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libdesktopfileplugin_la_SOURCES) DIST_SOURCES = $(libdesktopfileplugin_la_SOURCES) ETAGS = etags @@ -84,6 +83,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -127,6 +128,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -138,6 +155,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -156,9 +175,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -205,8 +251,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -259,14 +306,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -278,7 +331,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -310,11 +362,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ plugindir = $(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins plugin_LTLIBRARIES = libdesktopfileplugin.la @@ -383,21 +432,21 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) @$(NORMAL_INSTALL) - test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" + test -z "$(plugindir)" || $(mkdir_p) "$(DESTDIR)$(plugindir)" @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(plugindir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(plugindir)/$$f"; \ + echo " $(LIBTOOL) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(plugindir)/$$f'"; \ + $(LIBTOOL) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(plugindir)/$$f"; \ else :; fi; \ done uninstall-pluginLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ + @set -x; list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(plugindir)/$$p'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(plugindir)/$$p"; \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(plugindir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(plugindir)/$$p"; \ done clean-pluginLTLIBRARIES: @@ -409,7 +458,7 @@ rm -f "$${dir}/so_locations"; \ done libdesktopfileplugin.la: $(libdesktopfileplugin_la_OBJECTS) $(libdesktopfileplugin_la_DEPENDENCIES) - $(libdesktopfileplugin_la_LINK) -rpath $(plugindir) $(libdesktopfileplugin_la_OBJECTS) $(libdesktopfileplugin_la_LIBADD) $(LIBS) + $(CXXLINK) -rpath $(plugindir) $(libdesktopfileplugin_la_LDFLAGS) $(libdesktopfileplugin_la_OBJECTS) $(libdesktopfileplugin_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -420,32 +469,32 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdesktopfileplugin_la-plugin.Plo@am__quote@ .cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< libdesktopfileplugin_la-plugin.lo: plugin.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdesktopfileplugin_la_CPPFLAGS) $(CPPFLAGS) $(libdesktopfileplugin_la_CXXFLAGS) $(CXXFLAGS) -MT libdesktopfileplugin_la-plugin.lo -MD -MP -MF $(DEPDIR)/libdesktopfileplugin_la-plugin.Tpo -c -o libdesktopfileplugin_la-plugin.lo `test -f 'plugin.cpp' || echo '$(srcdir)/'`plugin.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libdesktopfileplugin_la-plugin.Tpo $(DEPDIR)/libdesktopfileplugin_la-plugin.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdesktopfileplugin_la_CPPFLAGS) $(CPPFLAGS) $(libdesktopfileplugin_la_CXXFLAGS) $(CXXFLAGS) -MT libdesktopfileplugin_la-plugin.lo -MD -MP -MF "$(DEPDIR)/libdesktopfileplugin_la-plugin.Tpo" -c -o libdesktopfileplugin_la-plugin.lo `test -f 'plugin.cpp' || echo '$(srcdir)/'`plugin.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libdesktopfileplugin_la-plugin.Tpo" "$(DEPDIR)/libdesktopfileplugin_la-plugin.Plo"; else rm -f "$(DEPDIR)/libdesktopfileplugin_la-plugin.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='plugin.cpp' object='libdesktopfileplugin_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdesktopfileplugin_la_CPPFLAGS) $(CPPFLAGS) $(libdesktopfileplugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libdesktopfileplugin_la-plugin.lo `test -f 'plugin.cpp' || echo '$(srcdir)/'`plugin.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdesktopfileplugin_la_CPPFLAGS) $(CPPFLAGS) $(libdesktopfileplugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libdesktopfileplugin_la-plugin.lo `test -f 'plugin.cpp' || echo '$(srcdir)/'`plugin.cpp mostlyclean-libtool: -rm -f *.lo @@ -453,13 +502,17 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -471,8 +524,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -482,12 +535,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -501,21 +555,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -531,7 +586,7 @@ all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(plugindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am @@ -566,7 +621,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -580,20 +635,12 @@ install-data-am: install-pluginLTLIBRARIES -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -614,23 +661,20 @@ ps-am: -uninstall-am: uninstall-pluginLTLIBRARIES - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am uninstall-pluginLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-pluginLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-pluginLTLIBRARIES \ - install-ps install-ps-am install-strip installcheck \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-pluginLTLIBRARIES install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-pluginLTLIBRARIES + tags uninstall uninstall-am uninstall-info-am \ + uninstall-pluginLTLIBRARIES # 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. --- epiphany-browser-2.22.0.orig/src/bookmarks/Makefile.in +++ epiphany-browser-2.22.0/src/bookmarks/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -15,11 +15,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -82,22 +86,17 @@ nodist_libephybookmarks_la_OBJECTS = $(am__objects_3) libephybookmarks_la_OBJECTS = $(am_libephybookmarks_la_OBJECTS) \ $(nodist_libephybookmarks_la_OBJECTS) -libephybookmarks_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(libephybookmarks_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephybookmarks_la_SOURCES) \ $(nodist_libephybookmarks_la_SOURCES) DIST_SOURCES = $(libephybookmarks_la_SOURCES) @@ -116,6 +115,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -159,6 +160,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -170,6 +187,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -188,9 +207,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -237,8 +283,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -291,14 +338,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -310,7 +363,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -342,11 +394,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ noinst_LTLIBRARIES = libephybookmarks.la headerdir = $(prefix)/include/epiphany/@EPIPHANY_MAJOR@/epiphany @@ -469,7 +518,7 @@ rm -f "$${dir}/so_locations"; \ done libephybookmarks.la: $(libephybookmarks_la_OBJECTS) $(libephybookmarks_la_DEPENDENCIES) - $(libephybookmarks_la_LINK) $(libephybookmarks_la_OBJECTS) $(libephybookmarks_la_LIBADD) $(LIBS) + $(LINK) $(libephybookmarks_la_LDFLAGS) $(libephybookmarks_la_OBJECTS) $(libephybookmarks_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -498,167 +547,171 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephybookmarks_la-ephy-bookmarks.lo: ephy-bookmarks.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Tpo -c -o libephybookmarks_la-ephy-bookmarks.lo `test -f 'ephy-bookmarks.c' || echo '$(srcdir)/'`ephy-bookmarks.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Tpo" -c -o libephybookmarks_la-ephy-bookmarks.lo `test -f 'ephy-bookmarks.c' || echo '$(srcdir)/'`ephy-bookmarks.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks.c' object='libephybookmarks_la-ephy-bookmarks.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks.lo `test -f 'ephy-bookmarks.c' || echo '$(srcdir)/'`ephy-bookmarks.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks.lo `test -f 'ephy-bookmarks.c' || echo '$(srcdir)/'`ephy-bookmarks.c libephybookmarks_la-ephy-bookmark-action.lo: ephy-bookmark-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Tpo -c -o libephybookmarks_la-ephy-bookmark-action.lo `test -f 'ephy-bookmark-action.c' || echo '$(srcdir)/'`ephy-bookmark-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Tpo" -c -o libephybookmarks_la-ephy-bookmark-action.lo `test -f 'ephy-bookmark-action.c' || echo '$(srcdir)/'`ephy-bookmark-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmark-action.c' object='libephybookmarks_la-ephy-bookmark-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-action.lo `test -f 'ephy-bookmark-action.c' || echo '$(srcdir)/'`ephy-bookmark-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-action.lo `test -f 'ephy-bookmark-action.c' || echo '$(srcdir)/'`ephy-bookmark-action.c libephybookmarks_la-ephy-bookmarks-editor.lo: ephy-bookmarks-editor.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-editor.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Tpo -c -o libephybookmarks_la-ephy-bookmarks-editor.lo `test -f 'ephy-bookmarks-editor.c' || echo '$(srcdir)/'`ephy-bookmarks-editor.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-editor.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-editor.lo `test -f 'ephy-bookmarks-editor.c' || echo '$(srcdir)/'`ephy-bookmarks-editor.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-editor.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-editor.c' object='libephybookmarks_la-ephy-bookmarks-editor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-editor.lo `test -f 'ephy-bookmarks-editor.c' || echo '$(srcdir)/'`ephy-bookmarks-editor.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-editor.lo `test -f 'ephy-bookmarks-editor.c' || echo '$(srcdir)/'`ephy-bookmarks-editor.c libephybookmarks_la-ephy-bookmarks-export.lo: ephy-bookmarks-export.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-export.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Tpo -c -o libephybookmarks_la-ephy-bookmarks-export.lo `test -f 'ephy-bookmarks-export.c' || echo '$(srcdir)/'`ephy-bookmarks-export.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-export.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-export.lo `test -f 'ephy-bookmarks-export.c' || echo '$(srcdir)/'`ephy-bookmarks-export.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-export.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-export.c' object='libephybookmarks_la-ephy-bookmarks-export.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-export.lo `test -f 'ephy-bookmarks-export.c' || echo '$(srcdir)/'`ephy-bookmarks-export.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-export.lo `test -f 'ephy-bookmarks-export.c' || echo '$(srcdir)/'`ephy-bookmarks-export.c libephybookmarks_la-ephy-bookmarks-import.lo: ephy-bookmarks-import.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-import.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Tpo -c -o libephybookmarks_la-ephy-bookmarks-import.lo `test -f 'ephy-bookmarks-import.c' || echo '$(srcdir)/'`ephy-bookmarks-import.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-import.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-import.lo `test -f 'ephy-bookmarks-import.c' || echo '$(srcdir)/'`ephy-bookmarks-import.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-import.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-import.c' object='libephybookmarks_la-ephy-bookmarks-import.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-import.lo `test -f 'ephy-bookmarks-import.c' || echo '$(srcdir)/'`ephy-bookmarks-import.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-import.lo `test -f 'ephy-bookmarks-import.c' || echo '$(srcdir)/'`ephy-bookmarks-import.c libephybookmarks_la-ephy-bookmarks-ui.lo: ephy-bookmarks-ui.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-ui.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Tpo -c -o libephybookmarks_la-ephy-bookmarks-ui.lo `test -f 'ephy-bookmarks-ui.c' || echo '$(srcdir)/'`ephy-bookmarks-ui.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-ui.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-ui.lo `test -f 'ephy-bookmarks-ui.c' || echo '$(srcdir)/'`ephy-bookmarks-ui.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-ui.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-ui.c' object='libephybookmarks_la-ephy-bookmarks-ui.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-ui.lo `test -f 'ephy-bookmarks-ui.c' || echo '$(srcdir)/'`ephy-bookmarks-ui.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-ui.lo `test -f 'ephy-bookmarks-ui.c' || echo '$(srcdir)/'`ephy-bookmarks-ui.c libephybookmarks_la-ephy-bookmarks-menu.lo: ephy-bookmarks-menu.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-menu.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Tpo -c -o libephybookmarks_la-ephy-bookmarks-menu.lo `test -f 'ephy-bookmarks-menu.c' || echo '$(srcdir)/'`ephy-bookmarks-menu.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-menu.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-menu.lo `test -f 'ephy-bookmarks-menu.c' || echo '$(srcdir)/'`ephy-bookmarks-menu.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-menu.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-menu.c' object='libephybookmarks_la-ephy-bookmarks-menu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-menu.lo `test -f 'ephy-bookmarks-menu.c' || echo '$(srcdir)/'`ephy-bookmarks-menu.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-menu.lo `test -f 'ephy-bookmarks-menu.c' || echo '$(srcdir)/'`ephy-bookmarks-menu.c libephybookmarks_la-ephy-bookmark-properties.lo: ephy-bookmark-properties.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-properties.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Tpo -c -o libephybookmarks_la-ephy-bookmark-properties.lo `test -f 'ephy-bookmark-properties.c' || echo '$(srcdir)/'`ephy-bookmark-properties.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-properties.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Tpo" -c -o libephybookmarks_la-ephy-bookmark-properties.lo `test -f 'ephy-bookmark-properties.c' || echo '$(srcdir)/'`ephy-bookmark-properties.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-properties.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmark-properties.c' object='libephybookmarks_la-ephy-bookmark-properties.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-properties.lo `test -f 'ephy-bookmark-properties.c' || echo '$(srcdir)/'`ephy-bookmark-properties.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-properties.lo `test -f 'ephy-bookmark-properties.c' || echo '$(srcdir)/'`ephy-bookmark-properties.c libephybookmarks_la-ephy-topic-action.lo: ephy-topic-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-topic-action.Tpo -c -o libephybookmarks_la-ephy-topic-action.lo `test -f 'ephy-topic-action.c' || echo '$(srcdir)/'`ephy-topic-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-topic-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-topic-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-topic-action.Tpo" -c -o libephybookmarks_la-ephy-topic-action.lo `test -f 'ephy-topic-action.c' || echo '$(srcdir)/'`ephy-topic-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-topic-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-topic-action.c' object='libephybookmarks_la-ephy-topic-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-action.lo `test -f 'ephy-topic-action.c' || echo '$(srcdir)/'`ephy-topic-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-action.lo `test -f 'ephy-topic-action.c' || echo '$(srcdir)/'`ephy-topic-action.c libephybookmarks_la-ephy-related-action.lo: ephy-related-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-related-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-related-action.Tpo -c -o libephybookmarks_la-ephy-related-action.lo `test -f 'ephy-related-action.c' || echo '$(srcdir)/'`ephy-related-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-related-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-related-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-related-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-related-action.Tpo" -c -o libephybookmarks_la-ephy-related-action.lo `test -f 'ephy-related-action.c' || echo '$(srcdir)/'`ephy-related-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-related-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-related-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-related-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-related-action.c' object='libephybookmarks_la-ephy-related-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-related-action.lo `test -f 'ephy-related-action.c' || echo '$(srcdir)/'`ephy-related-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-related-action.lo `test -f 'ephy-related-action.c' || echo '$(srcdir)/'`ephy-related-action.c libephybookmarks_la-ephy-open-tabs-action.lo: ephy-open-tabs-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-open-tabs-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Tpo -c -o libephybookmarks_la-ephy-open-tabs-action.lo `test -f 'ephy-open-tabs-action.c' || echo '$(srcdir)/'`ephy-open-tabs-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-open-tabs-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Tpo" -c -o libephybookmarks_la-ephy-open-tabs-action.lo `test -f 'ephy-open-tabs-action.c' || echo '$(srcdir)/'`ephy-open-tabs-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-open-tabs-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-open-tabs-action.c' object='libephybookmarks_la-ephy-open-tabs-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-open-tabs-action.lo `test -f 'ephy-open-tabs-action.c' || echo '$(srcdir)/'`ephy-open-tabs-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-open-tabs-action.lo `test -f 'ephy-open-tabs-action.c' || echo '$(srcdir)/'`ephy-open-tabs-action.c libephybookmarks_la-ephy-topic-factory-action.lo: ephy-topic-factory-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-factory-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Tpo -c -o libephybookmarks_la-ephy-topic-factory-action.lo `test -f 'ephy-topic-factory-action.c' || echo '$(srcdir)/'`ephy-topic-factory-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-factory-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Tpo" -c -o libephybookmarks_la-ephy-topic-factory-action.lo `test -f 'ephy-topic-factory-action.c' || echo '$(srcdir)/'`ephy-topic-factory-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-factory-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-topic-factory-action.c' object='libephybookmarks_la-ephy-topic-factory-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-factory-action.lo `test -f 'ephy-topic-factory-action.c' || echo '$(srcdir)/'`ephy-topic-factory-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-factory-action.lo `test -f 'ephy-topic-factory-action.c' || echo '$(srcdir)/'`ephy-topic-factory-action.c libephybookmarks_la-ephy-bookmark-factory-action.lo: ephy-bookmark-factory-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-factory-action.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Tpo -c -o libephybookmarks_la-ephy-bookmark-factory-action.lo `test -f 'ephy-bookmark-factory-action.c' || echo '$(srcdir)/'`ephy-bookmark-factory-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-factory-action.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Tpo" -c -o libephybookmarks_la-ephy-bookmark-factory-action.lo `test -f 'ephy-bookmark-factory-action.c' || echo '$(srcdir)/'`ephy-bookmark-factory-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-factory-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmark-factory-action.c' object='libephybookmarks_la-ephy-bookmark-factory-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-factory-action.lo `test -f 'ephy-bookmark-factory-action.c' || echo '$(srcdir)/'`ephy-bookmark-factory-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-factory-action.lo `test -f 'ephy-bookmark-factory-action.c' || echo '$(srcdir)/'`ephy-bookmark-factory-action.c libephybookmarks_la-ephy-topic-action-group.lo: ephy-topic-action-group.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-action-group.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Tpo -c -o libephybookmarks_la-ephy-topic-action-group.lo `test -f 'ephy-topic-action-group.c' || echo '$(srcdir)/'`ephy-topic-action-group.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Tpo $(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topic-action-group.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Tpo" -c -o libephybookmarks_la-ephy-topic-action-group.lo `test -f 'ephy-topic-action-group.c' || echo '$(srcdir)/'`ephy-topic-action-group.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-topic-action-group.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-topic-action-group.c' object='libephybookmarks_la-ephy-topic-action-group.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-action-group.lo `test -f 'ephy-topic-action-group.c' || echo '$(srcdir)/'`ephy-topic-action-group.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topic-action-group.lo `test -f 'ephy-topic-action-group.c' || echo '$(srcdir)/'`ephy-topic-action-group.c libephybookmarks_la-ephy-bookmark-action-group.lo: ephy-bookmark-action-group.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-action-group.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Tpo -c -o libephybookmarks_la-ephy-bookmark-action-group.lo `test -f 'ephy-bookmark-action-group.c' || echo '$(srcdir)/'`ephy-bookmark-action-group.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmark-action-group.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Tpo" -c -o libephybookmarks_la-ephy-bookmark-action-group.lo `test -f 'ephy-bookmark-action-group.c' || echo '$(srcdir)/'`ephy-bookmark-action-group.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmark-action-group.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmark-action-group.c' object='libephybookmarks_la-ephy-bookmark-action-group.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-action-group.lo `test -f 'ephy-bookmark-action-group.c' || echo '$(srcdir)/'`ephy-bookmark-action-group.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmark-action-group.lo `test -f 'ephy-bookmark-action-group.c' || echo '$(srcdir)/'`ephy-bookmark-action-group.c libephybookmarks_la-ephy-topics-entry.lo: ephy-topics-entry.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topics-entry.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Tpo -c -o libephybookmarks_la-ephy-topics-entry.lo `test -f 'ephy-topics-entry.c' || echo '$(srcdir)/'`ephy-topics-entry.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Tpo $(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topics-entry.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Tpo" -c -o libephybookmarks_la-ephy-topics-entry.lo `test -f 'ephy-topics-entry.c' || echo '$(srcdir)/'`ephy-topics-entry.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-topics-entry.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-topics-entry.c' object='libephybookmarks_la-ephy-topics-entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topics-entry.lo `test -f 'ephy-topics-entry.c' || echo '$(srcdir)/'`ephy-topics-entry.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topics-entry.lo `test -f 'ephy-topics-entry.c' || echo '$(srcdir)/'`ephy-topics-entry.c libephybookmarks_la-ephy-topics-palette.lo: ephy-topics-palette.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topics-palette.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Tpo -c -o libephybookmarks_la-ephy-topics-palette.lo `test -f 'ephy-topics-palette.c' || echo '$(srcdir)/'`ephy-topics-palette.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Tpo $(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-topics-palette.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Tpo" -c -o libephybookmarks_la-ephy-topics-palette.lo `test -f 'ephy-topics-palette.c' || echo '$(srcdir)/'`ephy-topics-palette.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-topics-palette.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-topics-palette.c' object='libephybookmarks_la-ephy-topics-palette.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topics-palette.lo `test -f 'ephy-topics-palette.c' || echo '$(srcdir)/'`ephy-topics-palette.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-topics-palette.lo `test -f 'ephy-topics-palette.c' || echo '$(srcdir)/'`ephy-topics-palette.c libephybookmarks_la-ephy-nodes-cover.lo: ephy-nodes-cover.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-nodes-cover.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Tpo -c -o libephybookmarks_la-ephy-nodes-cover.lo `test -f 'ephy-nodes-cover.c' || echo '$(srcdir)/'`ephy-nodes-cover.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Tpo $(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-nodes-cover.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Tpo" -c -o libephybookmarks_la-ephy-nodes-cover.lo `test -f 'ephy-nodes-cover.c' || echo '$(srcdir)/'`ephy-nodes-cover.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-nodes-cover.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-nodes-cover.c' object='libephybookmarks_la-ephy-nodes-cover.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-nodes-cover.lo `test -f 'ephy-nodes-cover.c' || echo '$(srcdir)/'`ephy-nodes-cover.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-nodes-cover.lo `test -f 'ephy-nodes-cover.c' || echo '$(srcdir)/'`ephy-nodes-cover.c libephybookmarks_la-ephy-bookmarks-type-builtins.lo: ephy-bookmarks-type-builtins.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-type-builtins.lo -MD -MP -MF $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Tpo -c -o libephybookmarks_la-ephy-bookmarks-type-builtins.lo `test -f 'ephy-bookmarks-type-builtins.c' || echo '$(srcdir)/'`ephy-bookmarks-type-builtins.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Tpo $(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -MT libephybookmarks_la-ephy-bookmarks-type-builtins.lo -MD -MP -MF "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Tpo" -c -o libephybookmarks_la-ephy-bookmarks-type-builtins.lo `test -f 'ephy-bookmarks-type-builtins.c' || echo '$(srcdir)/'`ephy-bookmarks-type-builtins.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Tpo" "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Plo"; else rm -f "$(DEPDIR)/libephybookmarks_la-ephy-bookmarks-type-builtins.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-bookmarks-type-builtins.c' object='libephybookmarks_la-ephy-bookmarks-type-builtins.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-type-builtins.lo `test -f 'ephy-bookmarks-type-builtins.c' || echo '$(srcdir)/'`ephy-bookmarks-type-builtins.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephybookmarks_la_CPPFLAGS) $(CPPFLAGS) $(libephybookmarks_la_CFLAGS) $(CFLAGS) -c -o libephybookmarks_la-ephy-bookmarks-type-builtins.lo `test -f 'ephy-bookmarks-type-builtins.c' || echo '$(srcdir)/'`ephy-bookmarks-type-builtins.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-headerDATA: $(header_DATA) @$(NORMAL_INSTALL) - test -z "$(headerdir)" || $(MKDIR_P) "$(DESTDIR)$(headerdir)" + test -z "$(headerdir)" || $(mkdir_p) "$(DESTDIR)$(headerdir)" @list='$(header_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -679,8 +732,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -692,8 +745,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -703,12 +756,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -722,21 +776,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -753,7 +808,7 @@ all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: for dir in "$(DESTDIR)$(headerdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am @@ -793,7 +848,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -807,20 +862,12 @@ install-data-am: install-headerDATA -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -841,23 +888,20 @@ ps-am: -uninstall-am: uninstall-headerDATA - -.MAKE: install-am install-strip +uninstall-am: uninstall-headerDATA uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-headerDATA \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-headerDATA + install install-am install-data install-data-am install-exec \ + install-exec-am install-headerDATA install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-headerDATA \ + uninstall-info-am ephy-bookmarks-type-builtins.c: stamp-ephy-bookmarks-type-builtins.c Makefile --- epiphany-browser-2.22.0.orig/src/Makefile.in +++ epiphany-browser-2.22.0/src/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -16,11 +16,15 @@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -156,9 +160,6 @@ nodist_libephymain_la_OBJECTS = $(am__objects_4) libephymain_la_OBJECTS = $(am_libephymain_la_OBJECTS) \ $(nodist_libephymain_la_OBJECTS) -libephymain_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libephymain_la_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ am__DEPENDENCIES_1 = @ENABLE_PYTHON_TRUE@libpyphany_la_DEPENDENCIES = \ @ENABLE_PYTHON_TRUE@ $(am__DEPENDENCIES_1) \ @@ -177,9 +178,6 @@ @ENABLE_PYTHON_TRUE@nodist_libpyphany_la_OBJECTS = $(am__objects_5) libpyphany_la_OBJECTS = $(am_libpyphany_la_OBJECTS) \ $(nodist_libpyphany_la_OBJECTS) -libpyphany_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libpyphany_la_CFLAGS) \ - $(CFLAGS) $(libpyphany_la_LDFLAGS) $(LDFLAGS) -o $@ @ENABLE_PYTHON_TRUE@am_libpyphany_la_rpath = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(headerdir)" \ "$(DESTDIR)$(pydefsdir)" @@ -187,43 +185,45 @@ PROGRAMS = $(bin_PROGRAMS) am_epiphany_OBJECTS = epiphany-ephy-main.$(OBJEXT) epiphany_OBJECTS = $(am_epiphany_OBJECTS) -@WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_2 = \ +@WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/embed/xulrunner/utils/libephyxulrunnerutils.la \ +@WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ +@WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la \ +@WITH_XULRUNNER_ENGINE_TRUE@ $(top_builddir)/embed/xulrunner/components/libephycomponents.la +@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_3 = $(top_builddir)/embed/mozilla/libephymozillaembed.la +@WITH_WEBKIT_ENGINE_TRUE@am__DEPENDENCIES_4 = $(top_builddir)/embed/webkit/libephywebkitembed.la +@WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_5 = \ @WITH_XULRUNNER_ENGINE_TRUE@ $(am__DEPENDENCIES_1) -@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) \ +@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_6 = $(am__DEPENDENCIES_1) \ @WITH_GECKO_ENGINE_TRUE@ $(am__DEPENDENCIES_1) \ @WITH_GECKO_ENGINE_TRUE@ $(am__DEPENDENCIES_1) -@WITH_WEBKIT_ENGINE_TRUE@am__DEPENDENCIES_4 = $(am__DEPENDENCIES_1) -@ENABLE_PYTHON_TRUE@am__DEPENDENCIES_5 = libpyphany.la \ +@WITH_WEBKIT_ENGINE_TRUE@am__DEPENDENCIES_7 = $(am__DEPENDENCIES_1) +@ENABLE_PYTHON_TRUE@am__DEPENDENCIES_8 = libpyphany.la \ @ENABLE_PYTHON_TRUE@ $(am__DEPENDENCIES_1) \ @ENABLE_PYTHON_TRUE@ $(am__DEPENDENCIES_1) \ @ENABLE_PYTHON_TRUE@ $(am__DEPENDENCIES_1) \ @ENABLE_PYTHON_TRUE@ $(am__DEPENDENCIES_1) epiphany_DEPENDENCIES = libephymain.la \ $(top_builddir)/src/bookmarks/libephybookmarks.la \ - $(top_builddir)/embed/libephyembedfactory.la $(am__append_4) \ - $(am__append_5) $(am__append_6) \ - $(top_builddir)/embed/libephyembed.la \ + $(top_builddir)/embed/libephyembedfactory.la \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(top_builddir)/embed/libephyembed.la \ $(top_builddir)/lib/widgets/libephywidgets.la \ $(top_builddir)/lib/libephymisc.la \ - $(top_builddir)/lib/egg/libegg.la $(am__DEPENDENCIES_2) \ - $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(top_builddir)/lib/egg/libegg.la $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_7) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_1) -epiphany_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(epiphany_CFLAGS) $(CFLAGS) \ - $(epiphany_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_1) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephymain_la_SOURCES) $(nodist_libephymain_la_SOURCES) \ $(libpyphany_la_SOURCES) $(nodist_libpyphany_la_SOURCES) \ $(epiphany_SOURCES) @@ -231,11 +231,10 @@ $(am__libpyphany_la_SOURCES_DIST) $(epiphany_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -245,8 +244,6 @@ headerDATA_INSTALL = $(INSTALL_DATA) pydefsDATA_INSTALL = $(INSTALL_DATA) DATA = $(header_DATA) $(pydefs_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -254,6 +251,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -297,6 +296,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -308,6 +323,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -326,9 +343,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -375,8 +419,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -429,14 +474,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -448,7 +499,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -480,11 +530,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = bookmarks NULL = @@ -849,20 +896,20 @@ rm -f "$${dir}/so_locations"; \ done libephymain.la: $(libephymain_la_OBJECTS) $(libephymain_la_DEPENDENCIES) - $(libephymain_la_LINK) $(libephymain_la_OBJECTS) $(libephymain_la_LIBADD) $(LIBS) + $(LINK) $(libephymain_la_LDFLAGS) $(libephymain_la_OBJECTS) $(libephymain_la_LIBADD) $(LIBS) libpyphany.la: $(libpyphany_la_OBJECTS) $(libpyphany_la_DEPENDENCIES) - $(libpyphany_la_LINK) $(am_libpyphany_la_rpath) $(libpyphany_la_OBJECTS) $(libpyphany_la_LIBADD) $(LIBS) + $(LINK) $(am_libpyphany_la_rpath) $(libpyphany_la_LDFLAGS) $(libpyphany_la_OBJECTS) $(libpyphany_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(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 \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -882,7 +929,7 @@ done epiphany$(EXEEXT): $(epiphany_OBJECTS) $(epiphany_DEPENDENCIES) @rm -f epiphany$(EXEEXT) - $(epiphany_LINK) $(epiphany_OBJECTS) $(epiphany_LDADD) $(LIBS) + $(LINK) $(epiphany_LDFLAGS) $(epiphany_OBJECTS) $(epiphany_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -931,302 +978,302 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpyphany_la-epiphany.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephymain_la-ephy-activation.lo: ephy-activation.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-activation.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-activation.Tpo -c -o libephymain_la-ephy-activation.lo `test -f 'ephy-activation.c' || echo '$(srcdir)/'`ephy-activation.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-activation.Tpo $(DEPDIR)/libephymain_la-ephy-activation.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-activation.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-activation.Tpo" -c -o libephymain_la-ephy-activation.lo `test -f 'ephy-activation.c' || echo '$(srcdir)/'`ephy-activation.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-activation.Tpo" "$(DEPDIR)/libephymain_la-ephy-activation.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-activation.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-activation.c' object='libephymain_la-ephy-activation.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-activation.lo `test -f 'ephy-activation.c' || echo '$(srcdir)/'`ephy-activation.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-activation.lo `test -f 'ephy-activation.c' || echo '$(srcdir)/'`ephy-activation.c libephymain_la-ephy-action-helper.lo: ephy-action-helper.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-action-helper.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-action-helper.Tpo -c -o libephymain_la-ephy-action-helper.lo `test -f 'ephy-action-helper.c' || echo '$(srcdir)/'`ephy-action-helper.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-action-helper.Tpo $(DEPDIR)/libephymain_la-ephy-action-helper.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-action-helper.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-action-helper.Tpo" -c -o libephymain_la-ephy-action-helper.lo `test -f 'ephy-action-helper.c' || echo '$(srcdir)/'`ephy-action-helper.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-action-helper.Tpo" "$(DEPDIR)/libephymain_la-ephy-action-helper.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-action-helper.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-action-helper.c' object='libephymain_la-ephy-action-helper.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-action-helper.lo `test -f 'ephy-action-helper.c' || echo '$(srcdir)/'`ephy-action-helper.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-action-helper.lo `test -f 'ephy-action-helper.c' || echo '$(srcdir)/'`ephy-action-helper.c libephymain_la-ephy-completion-model.lo: ephy-completion-model.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-completion-model.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-completion-model.Tpo -c -o libephymain_la-ephy-completion-model.lo `test -f 'ephy-completion-model.c' || echo '$(srcdir)/'`ephy-completion-model.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-completion-model.Tpo $(DEPDIR)/libephymain_la-ephy-completion-model.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-completion-model.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-completion-model.Tpo" -c -o libephymain_la-ephy-completion-model.lo `test -f 'ephy-completion-model.c' || echo '$(srcdir)/'`ephy-completion-model.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-completion-model.Tpo" "$(DEPDIR)/libephymain_la-ephy-completion-model.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-completion-model.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-completion-model.c' object='libephymain_la-ephy-completion-model.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-completion-model.lo `test -f 'ephy-completion-model.c' || echo '$(srcdir)/'`ephy-completion-model.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-completion-model.lo `test -f 'ephy-completion-model.c' || echo '$(srcdir)/'`ephy-completion-model.c libephymain_la-ephy-dbus.lo: ephy-dbus.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-dbus.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-dbus.Tpo -c -o libephymain_la-ephy-dbus.lo `test -f 'ephy-dbus.c' || echo '$(srcdir)/'`ephy-dbus.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-dbus.Tpo $(DEPDIR)/libephymain_la-ephy-dbus.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-dbus.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-dbus.Tpo" -c -o libephymain_la-ephy-dbus.lo `test -f 'ephy-dbus.c' || echo '$(srcdir)/'`ephy-dbus.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-dbus.Tpo" "$(DEPDIR)/libephymain_la-ephy-dbus.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-dbus.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-dbus.c' object='libephymain_la-ephy-dbus.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-dbus.lo `test -f 'ephy-dbus.c' || echo '$(srcdir)/'`ephy-dbus.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-dbus.lo `test -f 'ephy-dbus.c' || echo '$(srcdir)/'`ephy-dbus.c libephymain_la-ephy-encoding-dialog.lo: ephy-encoding-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-encoding-dialog.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-encoding-dialog.Tpo -c -o libephymain_la-ephy-encoding-dialog.lo `test -f 'ephy-encoding-dialog.c' || echo '$(srcdir)/'`ephy-encoding-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-encoding-dialog.Tpo $(DEPDIR)/libephymain_la-ephy-encoding-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-encoding-dialog.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-encoding-dialog.Tpo" -c -o libephymain_la-ephy-encoding-dialog.lo `test -f 'ephy-encoding-dialog.c' || echo '$(srcdir)/'`ephy-encoding-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-encoding-dialog.Tpo" "$(DEPDIR)/libephymain_la-ephy-encoding-dialog.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-encoding-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-encoding-dialog.c' object='libephymain_la-ephy-encoding-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-encoding-dialog.lo `test -f 'ephy-encoding-dialog.c' || echo '$(srcdir)/'`ephy-encoding-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-encoding-dialog.lo `test -f 'ephy-encoding-dialog.c' || echo '$(srcdir)/'`ephy-encoding-dialog.c libephymain_la-ephy-encoding-menu.lo: ephy-encoding-menu.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-encoding-menu.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-encoding-menu.Tpo -c -o libephymain_la-ephy-encoding-menu.lo `test -f 'ephy-encoding-menu.c' || echo '$(srcdir)/'`ephy-encoding-menu.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-encoding-menu.Tpo $(DEPDIR)/libephymain_la-ephy-encoding-menu.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-encoding-menu.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-encoding-menu.Tpo" -c -o libephymain_la-ephy-encoding-menu.lo `test -f 'ephy-encoding-menu.c' || echo '$(srcdir)/'`ephy-encoding-menu.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-encoding-menu.Tpo" "$(DEPDIR)/libephymain_la-ephy-encoding-menu.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-encoding-menu.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-encoding-menu.c' object='libephymain_la-ephy-encoding-menu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-encoding-menu.lo `test -f 'ephy-encoding-menu.c' || echo '$(srcdir)/'`ephy-encoding-menu.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-encoding-menu.lo `test -f 'ephy-encoding-menu.c' || echo '$(srcdir)/'`ephy-encoding-menu.c libephymain_la-ephy-extension.lo: ephy-extension.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-extension.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-extension.Tpo -c -o libephymain_la-ephy-extension.lo `test -f 'ephy-extension.c' || echo '$(srcdir)/'`ephy-extension.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-extension.Tpo $(DEPDIR)/libephymain_la-ephy-extension.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-extension.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-extension.Tpo" -c -o libephymain_la-ephy-extension.lo `test -f 'ephy-extension.c' || echo '$(srcdir)/'`ephy-extension.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-extension.Tpo" "$(DEPDIR)/libephymain_la-ephy-extension.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-extension.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-extension.c' object='libephymain_la-ephy-extension.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-extension.lo `test -f 'ephy-extension.c' || echo '$(srcdir)/'`ephy-extension.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-extension.lo `test -f 'ephy-extension.c' || echo '$(srcdir)/'`ephy-extension.c libephymain_la-ephy-extensions-manager.lo: ephy-extensions-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-extensions-manager.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-extensions-manager.Tpo -c -o libephymain_la-ephy-extensions-manager.lo `test -f 'ephy-extensions-manager.c' || echo '$(srcdir)/'`ephy-extensions-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-extensions-manager.Tpo $(DEPDIR)/libephymain_la-ephy-extensions-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-extensions-manager.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-extensions-manager.Tpo" -c -o libephymain_la-ephy-extensions-manager.lo `test -f 'ephy-extensions-manager.c' || echo '$(srcdir)/'`ephy-extensions-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-extensions-manager.Tpo" "$(DEPDIR)/libephymain_la-ephy-extensions-manager.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-extensions-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-extensions-manager.c' object='libephymain_la-ephy-extensions-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-extensions-manager.lo `test -f 'ephy-extensions-manager.c' || echo '$(srcdir)/'`ephy-extensions-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-extensions-manager.lo `test -f 'ephy-extensions-manager.c' || echo '$(srcdir)/'`ephy-extensions-manager.c libephymain_la-ephy-find-toolbar.lo: ephy-find-toolbar.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-find-toolbar.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-find-toolbar.Tpo -c -o libephymain_la-ephy-find-toolbar.lo `test -f 'ephy-find-toolbar.c' || echo '$(srcdir)/'`ephy-find-toolbar.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-find-toolbar.Tpo $(DEPDIR)/libephymain_la-ephy-find-toolbar.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-find-toolbar.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-find-toolbar.Tpo" -c -o libephymain_la-ephy-find-toolbar.lo `test -f 'ephy-find-toolbar.c' || echo '$(srcdir)/'`ephy-find-toolbar.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-find-toolbar.Tpo" "$(DEPDIR)/libephymain_la-ephy-find-toolbar.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-find-toolbar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-find-toolbar.c' object='libephymain_la-ephy-find-toolbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-find-toolbar.lo `test -f 'ephy-find-toolbar.c' || echo '$(srcdir)/'`ephy-find-toolbar.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-find-toolbar.lo `test -f 'ephy-find-toolbar.c' || echo '$(srcdir)/'`ephy-find-toolbar.c libephymain_la-ephy-fullscreen-popup.lo: ephy-fullscreen-popup.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-fullscreen-popup.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Tpo -c -o libephymain_la-ephy-fullscreen-popup.lo `test -f 'ephy-fullscreen-popup.c' || echo '$(srcdir)/'`ephy-fullscreen-popup.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Tpo $(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-fullscreen-popup.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Tpo" -c -o libephymain_la-ephy-fullscreen-popup.lo `test -f 'ephy-fullscreen-popup.c' || echo '$(srcdir)/'`ephy-fullscreen-popup.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Tpo" "$(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-fullscreen-popup.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-fullscreen-popup.c' object='libephymain_la-ephy-fullscreen-popup.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-fullscreen-popup.lo `test -f 'ephy-fullscreen-popup.c' || echo '$(srcdir)/'`ephy-fullscreen-popup.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-fullscreen-popup.lo `test -f 'ephy-fullscreen-popup.c' || echo '$(srcdir)/'`ephy-fullscreen-popup.c libephymain_la-ephy-go-action.lo: ephy-go-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-go-action.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-go-action.Tpo -c -o libephymain_la-ephy-go-action.lo `test -f 'ephy-go-action.c' || echo '$(srcdir)/'`ephy-go-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-go-action.Tpo $(DEPDIR)/libephymain_la-ephy-go-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-go-action.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-go-action.Tpo" -c -o libephymain_la-ephy-go-action.lo `test -f 'ephy-go-action.c' || echo '$(srcdir)/'`ephy-go-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-go-action.Tpo" "$(DEPDIR)/libephymain_la-ephy-go-action.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-go-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-go-action.c' object='libephymain_la-ephy-go-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-go-action.lo `test -f 'ephy-go-action.c' || echo '$(srcdir)/'`ephy-go-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-go-action.lo `test -f 'ephy-go-action.c' || echo '$(srcdir)/'`ephy-go-action.c libephymain_la-ephy-home-action.lo: ephy-home-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-home-action.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-home-action.Tpo -c -o libephymain_la-ephy-home-action.lo `test -f 'ephy-home-action.c' || echo '$(srcdir)/'`ephy-home-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-home-action.Tpo $(DEPDIR)/libephymain_la-ephy-home-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-home-action.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-home-action.Tpo" -c -o libephymain_la-ephy-home-action.lo `test -f 'ephy-home-action.c' || echo '$(srcdir)/'`ephy-home-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-home-action.Tpo" "$(DEPDIR)/libephymain_la-ephy-home-action.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-home-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-home-action.c' object='libephymain_la-ephy-home-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-home-action.lo `test -f 'ephy-home-action.c' || echo '$(srcdir)/'`ephy-home-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-home-action.lo `test -f 'ephy-home-action.c' || echo '$(srcdir)/'`ephy-home-action.c libephymain_la-ephy-history-window.lo: ephy-history-window.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-history-window.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-history-window.Tpo -c -o libephymain_la-ephy-history-window.lo `test -f 'ephy-history-window.c' || echo '$(srcdir)/'`ephy-history-window.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-history-window.Tpo $(DEPDIR)/libephymain_la-ephy-history-window.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-history-window.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-history-window.Tpo" -c -o libephymain_la-ephy-history-window.lo `test -f 'ephy-history-window.c' || echo '$(srcdir)/'`ephy-history-window.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-history-window.Tpo" "$(DEPDIR)/libephymain_la-ephy-history-window.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-history-window.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-history-window.c' object='libephymain_la-ephy-history-window.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-history-window.lo `test -f 'ephy-history-window.c' || echo '$(srcdir)/'`ephy-history-window.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-history-window.lo `test -f 'ephy-history-window.c' || echo '$(srcdir)/'`ephy-history-window.c libephymain_la-ephy-link.lo: ephy-link.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-link.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-link.Tpo -c -o libephymain_la-ephy-link.lo `test -f 'ephy-link.c' || echo '$(srcdir)/'`ephy-link.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-link.Tpo $(DEPDIR)/libephymain_la-ephy-link.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-link.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-link.Tpo" -c -o libephymain_la-ephy-link.lo `test -f 'ephy-link.c' || echo '$(srcdir)/'`ephy-link.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-link.Tpo" "$(DEPDIR)/libephymain_la-ephy-link.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-link.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-link.c' object='libephymain_la-ephy-link.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-link.lo `test -f 'ephy-link.c' || echo '$(srcdir)/'`ephy-link.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-link.lo `test -f 'ephy-link.c' || echo '$(srcdir)/'`ephy-link.c libephymain_la-ephy-link-action.lo: ephy-link-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-link-action.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-link-action.Tpo -c -o libephymain_la-ephy-link-action.lo `test -f 'ephy-link-action.c' || echo '$(srcdir)/'`ephy-link-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-link-action.Tpo $(DEPDIR)/libephymain_la-ephy-link-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-link-action.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-link-action.Tpo" -c -o libephymain_la-ephy-link-action.lo `test -f 'ephy-link-action.c' || echo '$(srcdir)/'`ephy-link-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-link-action.Tpo" "$(DEPDIR)/libephymain_la-ephy-link-action.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-link-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-link-action.c' object='libephymain_la-ephy-link-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-link-action.lo `test -f 'ephy-link-action.c' || echo '$(srcdir)/'`ephy-link-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-link-action.lo `test -f 'ephy-link-action.c' || echo '$(srcdir)/'`ephy-link-action.c libephymain_la-ephy-location-action.lo: ephy-location-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-location-action.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-location-action.Tpo -c -o libephymain_la-ephy-location-action.lo `test -f 'ephy-location-action.c' || echo '$(srcdir)/'`ephy-location-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-location-action.Tpo $(DEPDIR)/libephymain_la-ephy-location-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-location-action.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-location-action.Tpo" -c -o libephymain_la-ephy-location-action.lo `test -f 'ephy-location-action.c' || echo '$(srcdir)/'`ephy-location-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-location-action.Tpo" "$(DEPDIR)/libephymain_la-ephy-location-action.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-location-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-location-action.c' object='libephymain_la-ephy-location-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-location-action.lo `test -f 'ephy-location-action.c' || echo '$(srcdir)/'`ephy-location-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-location-action.lo `test -f 'ephy-location-action.c' || echo '$(srcdir)/'`ephy-location-action.c libephymain_la-ephy-lockdown.lo: ephy-lockdown.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-lockdown.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-lockdown.Tpo -c -o libephymain_la-ephy-lockdown.lo `test -f 'ephy-lockdown.c' || echo '$(srcdir)/'`ephy-lockdown.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-lockdown.Tpo $(DEPDIR)/libephymain_la-ephy-lockdown.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-lockdown.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-lockdown.Tpo" -c -o libephymain_la-ephy-lockdown.lo `test -f 'ephy-lockdown.c' || echo '$(srcdir)/'`ephy-lockdown.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-lockdown.Tpo" "$(DEPDIR)/libephymain_la-ephy-lockdown.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-lockdown.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-lockdown.c' object='libephymain_la-ephy-lockdown.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-lockdown.lo `test -f 'ephy-lockdown.c' || echo '$(srcdir)/'`ephy-lockdown.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-lockdown.lo `test -f 'ephy-lockdown.c' || echo '$(srcdir)/'`ephy-lockdown.c libephymain_la-ephy-navigation-action.lo: ephy-navigation-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-navigation-action.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-navigation-action.Tpo -c -o libephymain_la-ephy-navigation-action.lo `test -f 'ephy-navigation-action.c' || echo '$(srcdir)/'`ephy-navigation-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-navigation-action.Tpo $(DEPDIR)/libephymain_la-ephy-navigation-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-navigation-action.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-navigation-action.Tpo" -c -o libephymain_la-ephy-navigation-action.lo `test -f 'ephy-navigation-action.c' || echo '$(srcdir)/'`ephy-navigation-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-navigation-action.Tpo" "$(DEPDIR)/libephymain_la-ephy-navigation-action.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-navigation-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-navigation-action.c' object='libephymain_la-ephy-navigation-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-navigation-action.lo `test -f 'ephy-navigation-action.c' || echo '$(srcdir)/'`ephy-navigation-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-navigation-action.lo `test -f 'ephy-navigation-action.c' || echo '$(srcdir)/'`ephy-navigation-action.c libephymain_la-ephy-notebook.lo: ephy-notebook.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-notebook.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-notebook.Tpo -c -o libephymain_la-ephy-notebook.lo `test -f 'ephy-notebook.c' || echo '$(srcdir)/'`ephy-notebook.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-notebook.Tpo $(DEPDIR)/libephymain_la-ephy-notebook.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-notebook.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-notebook.Tpo" -c -o libephymain_la-ephy-notebook.lo `test -f 'ephy-notebook.c' || echo '$(srcdir)/'`ephy-notebook.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-notebook.Tpo" "$(DEPDIR)/libephymain_la-ephy-notebook.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-notebook.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-notebook.c' object='libephymain_la-ephy-notebook.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-notebook.lo `test -f 'ephy-notebook.c' || echo '$(srcdir)/'`ephy-notebook.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-notebook.lo `test -f 'ephy-notebook.c' || echo '$(srcdir)/'`ephy-notebook.c libephymain_la-ephy-session.lo: ephy-session.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-session.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-session.Tpo -c -o libephymain_la-ephy-session.lo `test -f 'ephy-session.c' || echo '$(srcdir)/'`ephy-session.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-session.Tpo $(DEPDIR)/libephymain_la-ephy-session.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-session.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-session.Tpo" -c -o libephymain_la-ephy-session.lo `test -f 'ephy-session.c' || echo '$(srcdir)/'`ephy-session.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-session.Tpo" "$(DEPDIR)/libephymain_la-ephy-session.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-session.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-session.c' object='libephymain_la-ephy-session.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-session.lo `test -f 'ephy-session.c' || echo '$(srcdir)/'`ephy-session.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-session.lo `test -f 'ephy-session.c' || echo '$(srcdir)/'`ephy-session.c libephymain_la-ephy-shell.lo: ephy-shell.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-shell.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-shell.Tpo -c -o libephymain_la-ephy-shell.lo `test -f 'ephy-shell.c' || echo '$(srcdir)/'`ephy-shell.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-shell.Tpo $(DEPDIR)/libephymain_la-ephy-shell.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-shell.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-shell.Tpo" -c -o libephymain_la-ephy-shell.lo `test -f 'ephy-shell.c' || echo '$(srcdir)/'`ephy-shell.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-shell.Tpo" "$(DEPDIR)/libephymain_la-ephy-shell.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-shell.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-shell.c' object='libephymain_la-ephy-shell.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-shell.lo `test -f 'ephy-shell.c' || echo '$(srcdir)/'`ephy-shell.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-shell.lo `test -f 'ephy-shell.c' || echo '$(srcdir)/'`ephy-shell.c libephymain_la-ephy-statusbar.lo: ephy-statusbar.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-statusbar.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-statusbar.Tpo -c -o libephymain_la-ephy-statusbar.lo `test -f 'ephy-statusbar.c' || echo '$(srcdir)/'`ephy-statusbar.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-statusbar.Tpo $(DEPDIR)/libephymain_la-ephy-statusbar.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-statusbar.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-statusbar.Tpo" -c -o libephymain_la-ephy-statusbar.lo `test -f 'ephy-statusbar.c' || echo '$(srcdir)/'`ephy-statusbar.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-statusbar.Tpo" "$(DEPDIR)/libephymain_la-ephy-statusbar.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-statusbar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-statusbar.c' object='libephymain_la-ephy-statusbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-statusbar.lo `test -f 'ephy-statusbar.c' || echo '$(srcdir)/'`ephy-statusbar.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-statusbar.lo `test -f 'ephy-statusbar.c' || echo '$(srcdir)/'`ephy-statusbar.c libephymain_la-ephy-tabs-menu.lo: ephy-tabs-menu.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-tabs-menu.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-tabs-menu.Tpo -c -o libephymain_la-ephy-tabs-menu.lo `test -f 'ephy-tabs-menu.c' || echo '$(srcdir)/'`ephy-tabs-menu.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-tabs-menu.Tpo $(DEPDIR)/libephymain_la-ephy-tabs-menu.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-tabs-menu.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-tabs-menu.Tpo" -c -o libephymain_la-ephy-tabs-menu.lo `test -f 'ephy-tabs-menu.c' || echo '$(srcdir)/'`ephy-tabs-menu.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-tabs-menu.Tpo" "$(DEPDIR)/libephymain_la-ephy-tabs-menu.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-tabs-menu.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-tabs-menu.c' object='libephymain_la-ephy-tabs-menu.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-tabs-menu.lo `test -f 'ephy-tabs-menu.c' || echo '$(srcdir)/'`ephy-tabs-menu.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-tabs-menu.lo `test -f 'ephy-tabs-menu.c' || echo '$(srcdir)/'`ephy-tabs-menu.c libephymain_la-ephy-toolbars-model.lo: ephy-toolbars-model.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbars-model.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-toolbars-model.Tpo -c -o libephymain_la-ephy-toolbars-model.lo `test -f 'ephy-toolbars-model.c' || echo '$(srcdir)/'`ephy-toolbars-model.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-toolbars-model.Tpo $(DEPDIR)/libephymain_la-ephy-toolbars-model.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbars-model.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-toolbars-model.Tpo" -c -o libephymain_la-ephy-toolbars-model.lo `test -f 'ephy-toolbars-model.c' || echo '$(srcdir)/'`ephy-toolbars-model.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-toolbars-model.Tpo" "$(DEPDIR)/libephymain_la-ephy-toolbars-model.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-toolbars-model.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-toolbars-model.c' object='libephymain_la-ephy-toolbars-model.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbars-model.lo `test -f 'ephy-toolbars-model.c' || echo '$(srcdir)/'`ephy-toolbars-model.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbars-model.lo `test -f 'ephy-toolbars-model.c' || echo '$(srcdir)/'`ephy-toolbars-model.c libephymain_la-ephy-toolbar.lo: ephy-toolbar.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbar.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-toolbar.Tpo -c -o libephymain_la-ephy-toolbar.lo `test -f 'ephy-toolbar.c' || echo '$(srcdir)/'`ephy-toolbar.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-toolbar.Tpo $(DEPDIR)/libephymain_la-ephy-toolbar.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbar.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-toolbar.Tpo" -c -o libephymain_la-ephy-toolbar.lo `test -f 'ephy-toolbar.c' || echo '$(srcdir)/'`ephy-toolbar.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-toolbar.Tpo" "$(DEPDIR)/libephymain_la-ephy-toolbar.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-toolbar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-toolbar.c' object='libephymain_la-ephy-toolbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbar.lo `test -f 'ephy-toolbar.c' || echo '$(srcdir)/'`ephy-toolbar.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbar.lo `test -f 'ephy-toolbar.c' || echo '$(srcdir)/'`ephy-toolbar.c libephymain_la-ephy-toolbar-editor.lo: ephy-toolbar-editor.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbar-editor.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-toolbar-editor.Tpo -c -o libephymain_la-ephy-toolbar-editor.lo `test -f 'ephy-toolbar-editor.c' || echo '$(srcdir)/'`ephy-toolbar-editor.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-toolbar-editor.Tpo $(DEPDIR)/libephymain_la-ephy-toolbar-editor.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-toolbar-editor.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-toolbar-editor.Tpo" -c -o libephymain_la-ephy-toolbar-editor.lo `test -f 'ephy-toolbar-editor.c' || echo '$(srcdir)/'`ephy-toolbar-editor.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-toolbar-editor.Tpo" "$(DEPDIR)/libephymain_la-ephy-toolbar-editor.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-toolbar-editor.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-toolbar-editor.c' object='libephymain_la-ephy-toolbar-editor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbar-editor.lo `test -f 'ephy-toolbar-editor.c' || echo '$(srcdir)/'`ephy-toolbar-editor.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-toolbar-editor.lo `test -f 'ephy-toolbar-editor.c' || echo '$(srcdir)/'`ephy-toolbar-editor.c libephymain_la-ephy-window.lo: ephy-window.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-window.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-window.Tpo -c -o libephymain_la-ephy-window.lo `test -f 'ephy-window.c' || echo '$(srcdir)/'`ephy-window.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-window.Tpo $(DEPDIR)/libephymain_la-ephy-window.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-window.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-window.Tpo" -c -o libephymain_la-ephy-window.lo `test -f 'ephy-window.c' || echo '$(srcdir)/'`ephy-window.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-window.Tpo" "$(DEPDIR)/libephymain_la-ephy-window.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-window.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-window.c' object='libephymain_la-ephy-window.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-window.lo `test -f 'ephy-window.c' || echo '$(srcdir)/'`ephy-window.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-window.lo `test -f 'ephy-window.c' || echo '$(srcdir)/'`ephy-window.c libephymain_la-pdm-dialog.lo: pdm-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-pdm-dialog.lo -MD -MP -MF $(DEPDIR)/libephymain_la-pdm-dialog.Tpo -c -o libephymain_la-pdm-dialog.lo `test -f 'pdm-dialog.c' || echo '$(srcdir)/'`pdm-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-pdm-dialog.Tpo $(DEPDIR)/libephymain_la-pdm-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-pdm-dialog.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-pdm-dialog.Tpo" -c -o libephymain_la-pdm-dialog.lo `test -f 'pdm-dialog.c' || echo '$(srcdir)/'`pdm-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-pdm-dialog.Tpo" "$(DEPDIR)/libephymain_la-pdm-dialog.Plo"; else rm -f "$(DEPDIR)/libephymain_la-pdm-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pdm-dialog.c' object='libephymain_la-pdm-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-pdm-dialog.lo `test -f 'pdm-dialog.c' || echo '$(srcdir)/'`pdm-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-pdm-dialog.lo `test -f 'pdm-dialog.c' || echo '$(srcdir)/'`pdm-dialog.c libephymain_la-popup-commands.lo: popup-commands.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-popup-commands.lo -MD -MP -MF $(DEPDIR)/libephymain_la-popup-commands.Tpo -c -o libephymain_la-popup-commands.lo `test -f 'popup-commands.c' || echo '$(srcdir)/'`popup-commands.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-popup-commands.Tpo $(DEPDIR)/libephymain_la-popup-commands.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-popup-commands.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-popup-commands.Tpo" -c -o libephymain_la-popup-commands.lo `test -f 'popup-commands.c' || echo '$(srcdir)/'`popup-commands.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-popup-commands.Tpo" "$(DEPDIR)/libephymain_la-popup-commands.Plo"; else rm -f "$(DEPDIR)/libephymain_la-popup-commands.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='popup-commands.c' object='libephymain_la-popup-commands.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-popup-commands.lo `test -f 'popup-commands.c' || echo '$(srcdir)/'`popup-commands.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-popup-commands.lo `test -f 'popup-commands.c' || echo '$(srcdir)/'`popup-commands.c libephymain_la-prefs-dialog.lo: prefs-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-prefs-dialog.lo -MD -MP -MF $(DEPDIR)/libephymain_la-prefs-dialog.Tpo -c -o libephymain_la-prefs-dialog.lo `test -f 'prefs-dialog.c' || echo '$(srcdir)/'`prefs-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-prefs-dialog.Tpo $(DEPDIR)/libephymain_la-prefs-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-prefs-dialog.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-prefs-dialog.Tpo" -c -o libephymain_la-prefs-dialog.lo `test -f 'prefs-dialog.c' || echo '$(srcdir)/'`prefs-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-prefs-dialog.Tpo" "$(DEPDIR)/libephymain_la-prefs-dialog.Plo"; else rm -f "$(DEPDIR)/libephymain_la-prefs-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='prefs-dialog.c' object='libephymain_la-prefs-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-prefs-dialog.lo `test -f 'prefs-dialog.c' || echo '$(srcdir)/'`prefs-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-prefs-dialog.lo `test -f 'prefs-dialog.c' || echo '$(srcdir)/'`prefs-dialog.c libephymain_la-ppview-toolbar.lo: ppview-toolbar.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ppview-toolbar.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ppview-toolbar.Tpo -c -o libephymain_la-ppview-toolbar.lo `test -f 'ppview-toolbar.c' || echo '$(srcdir)/'`ppview-toolbar.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ppview-toolbar.Tpo $(DEPDIR)/libephymain_la-ppview-toolbar.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ppview-toolbar.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ppview-toolbar.Tpo" -c -o libephymain_la-ppview-toolbar.lo `test -f 'ppview-toolbar.c' || echo '$(srcdir)/'`ppview-toolbar.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ppview-toolbar.Tpo" "$(DEPDIR)/libephymain_la-ppview-toolbar.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ppview-toolbar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ppview-toolbar.c' object='libephymain_la-ppview-toolbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ppview-toolbar.lo `test -f 'ppview-toolbar.c' || echo '$(srcdir)/'`ppview-toolbar.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ppview-toolbar.lo `test -f 'ppview-toolbar.c' || echo '$(srcdir)/'`ppview-toolbar.c libephymain_la-window-commands.lo: window-commands.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-window-commands.lo -MD -MP -MF $(DEPDIR)/libephymain_la-window-commands.Tpo -c -o libephymain_la-window-commands.lo `test -f 'window-commands.c' || echo '$(srcdir)/'`window-commands.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-window-commands.Tpo $(DEPDIR)/libephymain_la-window-commands.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-window-commands.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-window-commands.Tpo" -c -o libephymain_la-window-commands.lo `test -f 'window-commands.c' || echo '$(srcdir)/'`window-commands.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-window-commands.Tpo" "$(DEPDIR)/libephymain_la-window-commands.Plo"; else rm -f "$(DEPDIR)/libephymain_la-window-commands.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='window-commands.c' object='libephymain_la-window-commands.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-window-commands.lo `test -f 'window-commands.c' || echo '$(srcdir)/'`window-commands.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-window-commands.lo `test -f 'window-commands.c' || echo '$(srcdir)/'`window-commands.c libephymain_la-ephy-net-monitor.lo: ephy-net-monitor.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-net-monitor.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-net-monitor.Tpo -c -o libephymain_la-ephy-net-monitor.lo `test -f 'ephy-net-monitor.c' || echo '$(srcdir)/'`ephy-net-monitor.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-net-monitor.Tpo $(DEPDIR)/libephymain_la-ephy-net-monitor.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-net-monitor.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-net-monitor.Tpo" -c -o libephymain_la-ephy-net-monitor.lo `test -f 'ephy-net-monitor.c' || echo '$(srcdir)/'`ephy-net-monitor.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-net-monitor.Tpo" "$(DEPDIR)/libephymain_la-ephy-net-monitor.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-net-monitor.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-net-monitor.c' object='libephymain_la-ephy-net-monitor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-net-monitor.lo `test -f 'ephy-net-monitor.c' || echo '$(srcdir)/'`ephy-net-monitor.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-net-monitor.lo `test -f 'ephy-net-monitor.c' || echo '$(srcdir)/'`ephy-net-monitor.c libephymain_la-ephy-type-builtins.lo: ephy-type-builtins.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-type-builtins.lo -MD -MP -MF $(DEPDIR)/libephymain_la-ephy-type-builtins.Tpo -c -o libephymain_la-ephy-type-builtins.lo `test -f 'ephy-type-builtins.c' || echo '$(srcdir)/'`ephy-type-builtins.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymain_la-ephy-type-builtins.Tpo $(DEPDIR)/libephymain_la-ephy-type-builtins.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -MT libephymain_la-ephy-type-builtins.lo -MD -MP -MF "$(DEPDIR)/libephymain_la-ephy-type-builtins.Tpo" -c -o libephymain_la-ephy-type-builtins.lo `test -f 'ephy-type-builtins.c' || echo '$(srcdir)/'`ephy-type-builtins.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymain_la-ephy-type-builtins.Tpo" "$(DEPDIR)/libephymain_la-ephy-type-builtins.Plo"; else rm -f "$(DEPDIR)/libephymain_la-ephy-type-builtins.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-type-builtins.c' object='libephymain_la-ephy-type-builtins.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-type-builtins.lo `test -f 'ephy-type-builtins.c' || echo '$(srcdir)/'`ephy-type-builtins.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymain_la_CPPFLAGS) $(CPPFLAGS) $(libephymain_la_CFLAGS) $(CFLAGS) -c -o libephymain_la-ephy-type-builtins.lo `test -f 'ephy-type-builtins.c' || echo '$(srcdir)/'`ephy-type-builtins.c libpyphany_la-ephy-python.lo: ephy-python.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python.lo -MD -MP -MF $(DEPDIR)/libpyphany_la-ephy-python.Tpo -c -o libpyphany_la-ephy-python.lo `test -f 'ephy-python.c' || echo '$(srcdir)/'`ephy-python.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpyphany_la-ephy-python.Tpo $(DEPDIR)/libpyphany_la-ephy-python.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python.lo -MD -MP -MF "$(DEPDIR)/libpyphany_la-ephy-python.Tpo" -c -o libpyphany_la-ephy-python.lo `test -f 'ephy-python.c' || echo '$(srcdir)/'`ephy-python.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpyphany_la-ephy-python.Tpo" "$(DEPDIR)/libpyphany_la-ephy-python.Plo"; else rm -f "$(DEPDIR)/libpyphany_la-ephy-python.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-python.c' object='libpyphany_la-ephy-python.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python.lo `test -f 'ephy-python.c' || echo '$(srcdir)/'`ephy-python.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python.lo `test -f 'ephy-python.c' || echo '$(srcdir)/'`ephy-python.c libpyphany_la-ephy-python-extension.lo: ephy-python-extension.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python-extension.lo -MD -MP -MF $(DEPDIR)/libpyphany_la-ephy-python-extension.Tpo -c -o libpyphany_la-ephy-python-extension.lo `test -f 'ephy-python-extension.c' || echo '$(srcdir)/'`ephy-python-extension.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpyphany_la-ephy-python-extension.Tpo $(DEPDIR)/libpyphany_la-ephy-python-extension.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python-extension.lo -MD -MP -MF "$(DEPDIR)/libpyphany_la-ephy-python-extension.Tpo" -c -o libpyphany_la-ephy-python-extension.lo `test -f 'ephy-python-extension.c' || echo '$(srcdir)/'`ephy-python-extension.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpyphany_la-ephy-python-extension.Tpo" "$(DEPDIR)/libpyphany_la-ephy-python-extension.Plo"; else rm -f "$(DEPDIR)/libpyphany_la-ephy-python-extension.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-python-extension.c' object='libpyphany_la-ephy-python-extension.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python-extension.lo `test -f 'ephy-python-extension.c' || echo '$(srcdir)/'`ephy-python-extension.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python-extension.lo `test -f 'ephy-python-extension.c' || echo '$(srcdir)/'`ephy-python-extension.c libpyphany_la-ephy-python-loader.lo: ephy-python-loader.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python-loader.lo -MD -MP -MF $(DEPDIR)/libpyphany_la-ephy-python-loader.Tpo -c -o libpyphany_la-ephy-python-loader.lo `test -f 'ephy-python-loader.c' || echo '$(srcdir)/'`ephy-python-loader.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpyphany_la-ephy-python-loader.Tpo $(DEPDIR)/libpyphany_la-ephy-python-loader.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-ephy-python-loader.lo -MD -MP -MF "$(DEPDIR)/libpyphany_la-ephy-python-loader.Tpo" -c -o libpyphany_la-ephy-python-loader.lo `test -f 'ephy-python-loader.c' || echo '$(srcdir)/'`ephy-python-loader.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpyphany_la-ephy-python-loader.Tpo" "$(DEPDIR)/libpyphany_la-ephy-python-loader.Plo"; else rm -f "$(DEPDIR)/libpyphany_la-ephy-python-loader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-python-loader.c' object='libpyphany_la-ephy-python-loader.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python-loader.lo `test -f 'ephy-python-loader.c' || echo '$(srcdir)/'`ephy-python-loader.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-ephy-python-loader.lo `test -f 'ephy-python-loader.c' || echo '$(srcdir)/'`ephy-python-loader.c libpyphany_la-epiphany.lo: epiphany.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-epiphany.lo -MD -MP -MF $(DEPDIR)/libpyphany_la-epiphany.Tpo -c -o libpyphany_la-epiphany.lo `test -f 'epiphany.c' || echo '$(srcdir)/'`epiphany.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpyphany_la-epiphany.Tpo $(DEPDIR)/libpyphany_la-epiphany.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -MT libpyphany_la-epiphany.lo -MD -MP -MF "$(DEPDIR)/libpyphany_la-epiphany.Tpo" -c -o libpyphany_la-epiphany.lo `test -f 'epiphany.c' || echo '$(srcdir)/'`epiphany.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpyphany_la-epiphany.Tpo" "$(DEPDIR)/libpyphany_la-epiphany.Plo"; else rm -f "$(DEPDIR)/libpyphany_la-epiphany.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='epiphany.c' object='libpyphany_la-epiphany.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-epiphany.lo `test -f 'epiphany.c' || echo '$(srcdir)/'`epiphany.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpyphany_la_CPPFLAGS) $(CPPFLAGS) $(libpyphany_la_CFLAGS) $(CFLAGS) -c -o libpyphany_la-epiphany.lo `test -f 'epiphany.c' || echo '$(srcdir)/'`epiphany.c epiphany-ephy-main.o: ephy-main.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -MT epiphany-ephy-main.o -MD -MP -MF $(DEPDIR)/epiphany-ephy-main.Tpo -c -o epiphany-ephy-main.o `test -f 'ephy-main.c' || echo '$(srcdir)/'`ephy-main.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/epiphany-ephy-main.Tpo $(DEPDIR)/epiphany-ephy-main.Po +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -MT epiphany-ephy-main.o -MD -MP -MF "$(DEPDIR)/epiphany-ephy-main.Tpo" -c -o epiphany-ephy-main.o `test -f 'ephy-main.c' || echo '$(srcdir)/'`ephy-main.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/epiphany-ephy-main.Tpo" "$(DEPDIR)/epiphany-ephy-main.Po"; else rm -f "$(DEPDIR)/epiphany-ephy-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-main.c' object='epiphany-ephy-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -c -o epiphany-ephy-main.o `test -f 'ephy-main.c' || echo '$(srcdir)/'`ephy-main.c epiphany-ephy-main.obj: ephy-main.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -MT epiphany-ephy-main.obj -MD -MP -MF $(DEPDIR)/epiphany-ephy-main.Tpo -c -o epiphany-ephy-main.obj `if test -f 'ephy-main.c'; then $(CYGPATH_W) 'ephy-main.c'; else $(CYGPATH_W) '$(srcdir)/ephy-main.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/epiphany-ephy-main.Tpo $(DEPDIR)/epiphany-ephy-main.Po +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -MT epiphany-ephy-main.obj -MD -MP -MF "$(DEPDIR)/epiphany-ephy-main.Tpo" -c -o epiphany-ephy-main.obj `if test -f 'ephy-main.c'; then $(CYGPATH_W) 'ephy-main.c'; else $(CYGPATH_W) '$(srcdir)/ephy-main.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/epiphany-ephy-main.Tpo" "$(DEPDIR)/epiphany-ephy-main.Po"; else rm -f "$(DEPDIR)/epiphany-ephy-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-main.c' object='epiphany-ephy-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(epiphany_CPPFLAGS) $(CPPFLAGS) $(epiphany_CFLAGS) $(CFLAGS) -c -o epiphany-ephy-main.obj `if test -f 'ephy-main.c'; then $(CYGPATH_W) 'ephy-main.c'; else $(CYGPATH_W) '$(srcdir)/ephy-main.c'; fi` @@ -1236,9 +1283,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-headerDATA: $(header_DATA) @$(NORMAL_INSTALL) - test -z "$(headerdir)" || $(MKDIR_P) "$(DESTDIR)$(headerdir)" + test -z "$(headerdir)" || $(mkdir_p) "$(DESTDIR)$(headerdir)" @list='$(header_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -1255,7 +1306,7 @@ done install-pydefsDATA: $(pydefs_DATA) @$(NORMAL_INSTALL) - test -z "$(pydefsdir)" || $(MKDIR_P) "$(DESTDIR)$(pydefsdir)" + test -z "$(pydefsdir)" || $(mkdir_p) "$(DESTDIR)$(pydefsdir)" @list='$(pydefs_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -1302,7 +1353,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -1346,8 +1398,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -1372,8 +1424,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -1383,12 +1435,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -1402,21 +1455,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -1430,7 +1484,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -1438,8 +1492,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -1451,7 +1503,7 @@ installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(headerdir)" "$(DESTDIR)$(pydefsdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive @@ -1491,7 +1543,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -1505,20 +1557,12 @@ install-data-am: install-headerDATA install-pydefsDATA -install-dvi: install-dvi-recursive - install-exec-am: install-binPROGRAMS -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -1540,27 +1584,25 @@ ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-headerDATA \ - uninstall-pydefsDATA + uninstall-info-am uninstall-pydefsDATA -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool clean-noinstLTLIBRARIES ctags \ - ctags-recursive distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-headerDATA install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-pydefsDATA install-strip installcheck installcheck-am \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am \ - uninstall-binPROGRAMS uninstall-headerDATA \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-binPROGRAMS clean-generic clean-libtool \ + clean-noinstLTLIBRARIES clean-recursive ctags ctags-recursive \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-recursive distclean-tags distdir \ + dvi dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-exec \ + install-exec-am install-headerDATA install-info \ + install-info-am install-man install-pydefsDATA install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-headerDATA uninstall-info-am \ uninstall-pydefsDATA --- epiphany-browser-2.22.0.orig/configure.ac +++ epiphany-browser-2.22.0/configure.ac @@ -238,12 +238,44 @@ case "$gecko_cv_gecko" in xulrunner) min_version=1.8 ;; +libxul*) min_version=1.9 ;; *firefox) min_version=1.5 ;; *) AC_MSG_ERROR([Unsupported gecko "$gecko_cv_gecko"]) ;; esac # Added $gecko_cv_gecko-js for debian xulrunner brokenness -PKG_CHECK_MODULES([GECKO],[${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies]) +if test $gecko_cv_gecko != "libxul-embedding" -a $gecko_cv_gecko != "libxul"; then + PKG_CHECK_MODULES([GECKO],[ ${gecko_cv_gecko}-xpcom >= $min_version ${gecko_cv_gecko}-js $gecko_cv_extra_pkg_dependencies]) +else + GECKO_CFLAGS="$GECKO_CFLAGS -UDEBUG" + GECKO_LIBS="$GECKO_LIBS `pkg-config --libs ${gecko_cv_gecko}`" +fi + +AC_MSG_CHECKING(nspr in gecko) +if test "$GECKO_NSPR" != yes; then + AC_MSG_RESULT(no) + AC_MSG_CHECKING(nspr in system) + gecko_nspr= + if $PKG_CONFIG --exists mozilla-nspr; then + gecko_nspr=mozilla-nspr + elif $PKG_CONFIG --exists ${gecko_cv_gecko}-nspr; then + gecko_nspr=${gecko_cv_gecko}-nspr + fi + if $PKG_CONFIG --exists nspr; then + gecko_nspr=nspr + fi + if test -z "$gecko_nspr"; then + AC_MSG_ERROR([no nspr available]) + fi + + GECKO_CFLAGS="$GECKO_CFLAGS `$PKG_CONFIG --cflags ${gecko_nspr}`" + GECKO_LIBS="$GECKO_LIBS `$PKG_CONFIG --libs ${gecko_nspr}`" + _GECKO_CFLAGS="$GECKO_CFLAGS" + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(yes) +fi + AC_SUBST([GECKO_CFLAGS]) AC_SUBST([GECKO_LIBS]) @@ -533,7 +565,11 @@ AC_MSG_RESULT([$enable_desktop_file_plugin]) if test "$enable_desktop_file_plugin" = "yes"; then - PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko}-xpcom ${gecko_cv_gecko}-plugin gtk+-2.0 >= 2.6.0]) + if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko} mozilla-plugin gtk+-2.0 >= 2.6.0]) + else + PKG_CHECK_MODULES([DESKTOP_FILE_PLUGIN_DEP],[${gecko_cv_gecko}-xpcom ${gecko_cv_gecko}-plugin gtk+-2.0 >= 2.6.0]) + fi AC_SUBST([DESKTOP_FILE_PLUGIN_DEP_CFLAGS]) AC_SUBST([DESKTOP_FILE_PLUGIN_DEP_LIBS]) fi --- epiphany-browser-2.22.0.orig/embed/webkit/Makefile.in +++ epiphany-browser-2.22.0/embed/webkit/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -55,18 +59,17 @@ libephywebkitembed_la-webkit-embed-single.lo \ libephywebkitembed_la-webkit-history-item.lo libephywebkitembed_la_OBJECTS = $(am_libephywebkitembed_la_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephywebkitembed_la_SOURCES) DIST_SOURCES = $(libephywebkitembed_la_SOURCES) ETAGS = etags @@ -75,6 +78,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -118,6 +123,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -129,6 +150,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -147,9 +170,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -196,8 +246,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -250,14 +301,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -269,7 +326,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -301,11 +357,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ noinst_LTLIBRARIES = libephywebkitembed.la libephywebkitembed_la_SOURCES = \ @@ -376,7 +429,7 @@ rm -f "$${dir}/so_locations"; \ done libephywebkitembed.la: $(libephywebkitembed_la_OBJECTS) $(libephywebkitembed_la_DEPENDENCIES) - $(LINK) $(libephywebkitembed_la_OBJECTS) $(libephywebkitembed_la_LIBADD) $(LIBS) + $(LINK) $(libephywebkitembed_la_LDFLAGS) $(libephywebkitembed_la_OBJECTS) $(libephywebkitembed_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -392,67 +445,67 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephywebkitembed_la-webkit-history-item.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephywebkitembed_la-webkit-embed.lo: webkit-embed.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-embed.Tpo -c -o libephywebkitembed_la-webkit-embed.lo `test -f 'webkit-embed.c' || echo '$(srcdir)/'`webkit-embed.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-embed.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-embed.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-embed.Tpo" -c -o libephywebkitembed_la-webkit-embed.lo `test -f 'webkit-embed.c' || echo '$(srcdir)/'`webkit-embed.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-embed.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-embed.c' object='libephywebkitembed_la-webkit-embed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed.lo `test -f 'webkit-embed.c' || echo '$(srcdir)/'`webkit-embed.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed.lo `test -f 'webkit-embed.c' || echo '$(srcdir)/'`webkit-embed.c libephywebkitembed_la-webkit-embed-find.lo: webkit-embed-find.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-find.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Tpo -c -o libephywebkitembed_la-webkit-embed-find.lo `test -f 'webkit-embed-find.c' || echo '$(srcdir)/'`webkit-embed-find.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-find.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Tpo" -c -o libephywebkitembed_la-webkit-embed-find.lo `test -f 'webkit-embed-find.c' || echo '$(srcdir)/'`webkit-embed-find.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-find.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-embed-find.c' object='libephywebkitembed_la-webkit-embed-find.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-find.lo `test -f 'webkit-embed-find.c' || echo '$(srcdir)/'`webkit-embed-find.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-find.lo `test -f 'webkit-embed-find.c' || echo '$(srcdir)/'`webkit-embed-find.c libephywebkitembed_la-webkit-embed-persist.lo: webkit-embed-persist.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-persist.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Tpo -c -o libephywebkitembed_la-webkit-embed-persist.lo `test -f 'webkit-embed-persist.c' || echo '$(srcdir)/'`webkit-embed-persist.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-persist.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Tpo" -c -o libephywebkitembed_la-webkit-embed-persist.lo `test -f 'webkit-embed-persist.c' || echo '$(srcdir)/'`webkit-embed-persist.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-persist.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-embed-persist.c' object='libephywebkitembed_la-webkit-embed-persist.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-persist.lo `test -f 'webkit-embed-persist.c' || echo '$(srcdir)/'`webkit-embed-persist.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-persist.lo `test -f 'webkit-embed-persist.c' || echo '$(srcdir)/'`webkit-embed-persist.c libephywebkitembed_la-webkit-embed-prefs.lo: webkit-embed-prefs.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-prefs.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Tpo -c -o libephywebkitembed_la-webkit-embed-prefs.lo `test -f 'webkit-embed-prefs.c' || echo '$(srcdir)/'`webkit-embed-prefs.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-prefs.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Tpo" -c -o libephywebkitembed_la-webkit-embed-prefs.lo `test -f 'webkit-embed-prefs.c' || echo '$(srcdir)/'`webkit-embed-prefs.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-prefs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-embed-prefs.c' object='libephywebkitembed_la-webkit-embed-prefs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-prefs.lo `test -f 'webkit-embed-prefs.c' || echo '$(srcdir)/'`webkit-embed-prefs.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-prefs.lo `test -f 'webkit-embed-prefs.c' || echo '$(srcdir)/'`webkit-embed-prefs.c libephywebkitembed_la-webkit-embed-single.lo: webkit-embed-single.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-single.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Tpo -c -o libephywebkitembed_la-webkit-embed-single.lo `test -f 'webkit-embed-single.c' || echo '$(srcdir)/'`webkit-embed-single.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-embed-single.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Tpo" -c -o libephywebkitembed_la-webkit-embed-single.lo `test -f 'webkit-embed-single.c' || echo '$(srcdir)/'`webkit-embed-single.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-embed-single.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-embed-single.c' object='libephywebkitembed_la-webkit-embed-single.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-single.lo `test -f 'webkit-embed-single.c' || echo '$(srcdir)/'`webkit-embed-single.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-embed-single.lo `test -f 'webkit-embed-single.c' || echo '$(srcdir)/'`webkit-embed-single.c libephywebkitembed_la-webkit-history-item.lo: webkit-history-item.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-history-item.lo -MD -MP -MF $(DEPDIR)/libephywebkitembed_la-webkit-history-item.Tpo -c -o libephywebkitembed_la-webkit-history-item.lo `test -f 'webkit-history-item.c' || echo '$(srcdir)/'`webkit-history-item.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywebkitembed_la-webkit-history-item.Tpo $(DEPDIR)/libephywebkitembed_la-webkit-history-item.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libephywebkitembed_la-webkit-history-item.lo -MD -MP -MF "$(DEPDIR)/libephywebkitembed_la-webkit-history-item.Tpo" -c -o libephywebkitembed_la-webkit-history-item.lo `test -f 'webkit-history-item.c' || echo '$(srcdir)/'`webkit-history-item.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywebkitembed_la-webkit-history-item.Tpo" "$(DEPDIR)/libephywebkitembed_la-webkit-history-item.Plo"; else rm -f "$(DEPDIR)/libephywebkitembed_la-webkit-history-item.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='webkit-history-item.c' object='libephywebkitembed_la-webkit-history-item.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-history-item.lo `test -f 'webkit-history-item.c' || echo '$(srcdir)/'`webkit-history-item.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywebkitembed_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libephywebkitembed_la-webkit-history-item.lo `test -f 'webkit-history-item.c' || echo '$(srcdir)/'`webkit-history-item.c mostlyclean-libtool: -rm -f *.lo @@ -460,13 +513,17 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -478,8 +535,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -489,12 +546,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -508,21 +566,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -570,7 +629,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -584,20 +643,12 @@ install-data-am: -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -618,22 +669,19 @@ ps-am: -uninstall-am: - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am + 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. --- epiphany-browser-2.22.0.orig/embed/mozilla/Makefile.in +++ epiphany-browser-2.22.0/embed/mozilla/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -146,31 +150,25 @@ libephymozillaembed_la-mozilla-notifiers.lo $(am__objects_1) \ $(am__objects_2) $(am__objects_3) $(am__objects_4) libephymozillaembed_la_OBJECTS = $(am_libephymozillaembed_la_OBJECTS) -libephymozillaembed_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ - $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephymozillaembed_la_SOURCES) DIST_SOURCES = $(am__libephymozillaembed_la_SOURCES_DIST) ETAGS = etags @@ -179,6 +177,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -222,6 +222,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -233,6 +249,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -251,9 +269,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -300,8 +345,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -354,14 +400,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -373,7 +425,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -405,11 +456,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ noinst_LTLIBRARIES = libephymozillaembed.la libephymozillaembed_la_SOURCES = AutoJSContextStack.cpp \ @@ -543,7 +591,7 @@ rm -f "$${dir}/so_locations"; \ done libephymozillaembed.la: $(libephymozillaembed_la_OBJECTS) $(libephymozillaembed_la_DEPENDENCIES) - $(libephymozillaembed_la_LINK) $(libephymozillaembed_la_OBJECTS) $(libephymozillaembed_la_LIBADD) $(LIBS) + $(CXXLINK) $(libephymozillaembed_la_LDFLAGS) $(libephymozillaembed_la_OBJECTS) $(libephymozillaembed_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -592,298 +640,298 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Plo@am__quote@ .cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< libephymozillaembed_la-AutoJSContextStack.lo: AutoJSContextStack.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoJSContextStack.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Tpo -c -o libephymozillaembed_la-AutoJSContextStack.lo `test -f 'AutoJSContextStack.cpp' || echo '$(srcdir)/'`AutoJSContextStack.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Tpo $(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoJSContextStack.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Tpo" -c -o libephymozillaembed_la-AutoJSContextStack.lo `test -f 'AutoJSContextStack.cpp' || echo '$(srcdir)/'`AutoJSContextStack.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Tpo" "$(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-AutoJSContextStack.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='AutoJSContextStack.cpp' object='libephymozillaembed_la-AutoJSContextStack.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoJSContextStack.lo `test -f 'AutoJSContextStack.cpp' || echo '$(srcdir)/'`AutoJSContextStack.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoJSContextStack.lo `test -f 'AutoJSContextStack.cpp' || echo '$(srcdir)/'`AutoJSContextStack.cpp libephymozillaembed_la-AutoModalDialog.lo: AutoModalDialog.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoModalDialog.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Tpo -c -o libephymozillaembed_la-AutoModalDialog.lo `test -f 'AutoModalDialog.cpp' || echo '$(srcdir)/'`AutoModalDialog.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Tpo $(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoModalDialog.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Tpo" -c -o libephymozillaembed_la-AutoModalDialog.lo `test -f 'AutoModalDialog.cpp' || echo '$(srcdir)/'`AutoModalDialog.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Tpo" "$(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-AutoModalDialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='AutoModalDialog.cpp' object='libephymozillaembed_la-AutoModalDialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoModalDialog.lo `test -f 'AutoModalDialog.cpp' || echo '$(srcdir)/'`AutoModalDialog.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoModalDialog.lo `test -f 'AutoModalDialog.cpp' || echo '$(srcdir)/'`AutoModalDialog.cpp libephymozillaembed_la-AutoWindowModalState.lo: AutoWindowModalState.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoWindowModalState.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Tpo -c -o libephymozillaembed_la-AutoWindowModalState.lo `test -f 'AutoWindowModalState.cpp' || echo '$(srcdir)/'`AutoWindowModalState.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Tpo $(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-AutoWindowModalState.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Tpo" -c -o libephymozillaembed_la-AutoWindowModalState.lo `test -f 'AutoWindowModalState.cpp' || echo '$(srcdir)/'`AutoWindowModalState.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Tpo" "$(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-AutoWindowModalState.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='AutoWindowModalState.cpp' object='libephymozillaembed_la-AutoWindowModalState.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoWindowModalState.lo `test -f 'AutoWindowModalState.cpp' || echo '$(srcdir)/'`AutoWindowModalState.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-AutoWindowModalState.lo `test -f 'AutoWindowModalState.cpp' || echo '$(srcdir)/'`AutoWindowModalState.cpp libephymozillaembed_la-ContentHandler.lo: ContentHandler.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-ContentHandler.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-ContentHandler.Tpo -c -o libephymozillaembed_la-ContentHandler.lo `test -f 'ContentHandler.cpp' || echo '$(srcdir)/'`ContentHandler.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-ContentHandler.Tpo $(DEPDIR)/libephymozillaembed_la-ContentHandler.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-ContentHandler.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-ContentHandler.Tpo" -c -o libephymozillaembed_la-ContentHandler.lo `test -f 'ContentHandler.cpp' || echo '$(srcdir)/'`ContentHandler.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-ContentHandler.Tpo" "$(DEPDIR)/libephymozillaembed_la-ContentHandler.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-ContentHandler.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ContentHandler.cpp' object='libephymozillaembed_la-ContentHandler.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-ContentHandler.lo `test -f 'ContentHandler.cpp' || echo '$(srcdir)/'`ContentHandler.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-ContentHandler.lo `test -f 'ContentHandler.cpp' || echo '$(srcdir)/'`ContentHandler.cpp libephymozillaembed_la-EphyAboutModule.lo: EphyAboutModule.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyAboutModule.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Tpo -c -o libephymozillaembed_la-EphyAboutModule.lo `test -f 'EphyAboutModule.cpp' || echo '$(srcdir)/'`EphyAboutModule.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Tpo $(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyAboutModule.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Tpo" -c -o libephymozillaembed_la-EphyAboutModule.lo `test -f 'EphyAboutModule.cpp' || echo '$(srcdir)/'`EphyAboutModule.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyAboutModule.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyAboutModule.cpp' object='libephymozillaembed_la-EphyAboutModule.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyAboutModule.lo `test -f 'EphyAboutModule.cpp' || echo '$(srcdir)/'`EphyAboutModule.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyAboutModule.lo `test -f 'EphyAboutModule.cpp' || echo '$(srcdir)/'`EphyAboutModule.cpp libephymozillaembed_la-EphyContentPolicy.lo: EphyContentPolicy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyContentPolicy.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Tpo -c -o libephymozillaembed_la-EphyContentPolicy.lo `test -f 'EphyContentPolicy.cpp' || echo '$(srcdir)/'`EphyContentPolicy.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Tpo $(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyContentPolicy.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Tpo" -c -o libephymozillaembed_la-EphyContentPolicy.lo `test -f 'EphyContentPolicy.cpp' || echo '$(srcdir)/'`EphyContentPolicy.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyContentPolicy.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyContentPolicy.cpp' object='libephymozillaembed_la-EphyContentPolicy.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyContentPolicy.lo `test -f 'EphyContentPolicy.cpp' || echo '$(srcdir)/'`EphyContentPolicy.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyContentPolicy.lo `test -f 'EphyContentPolicy.cpp' || echo '$(srcdir)/'`EphyContentPolicy.cpp libephymozillaembed_la-EphyDirectoryProvider.lo: EphyDirectoryProvider.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyDirectoryProvider.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Tpo -c -o libephymozillaembed_la-EphyDirectoryProvider.lo `test -f 'EphyDirectoryProvider.cpp' || echo '$(srcdir)/'`EphyDirectoryProvider.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Tpo $(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyDirectoryProvider.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Tpo" -c -o libephymozillaembed_la-EphyDirectoryProvider.lo `test -f 'EphyDirectoryProvider.cpp' || echo '$(srcdir)/'`EphyDirectoryProvider.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyDirectoryProvider.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyDirectoryProvider.cpp' object='libephymozillaembed_la-EphyDirectoryProvider.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyDirectoryProvider.lo `test -f 'EphyDirectoryProvider.cpp' || echo '$(srcdir)/'`EphyDirectoryProvider.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyDirectoryProvider.lo `test -f 'EphyDirectoryProvider.cpp' || echo '$(srcdir)/'`EphyDirectoryProvider.cpp libephymozillaembed_la-EphyHeaderSniffer.lo: EphyHeaderSniffer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyHeaderSniffer.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Tpo -c -o libephymozillaembed_la-EphyHeaderSniffer.lo `test -f 'EphyHeaderSniffer.cpp' || echo '$(srcdir)/'`EphyHeaderSniffer.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Tpo $(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyHeaderSniffer.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Tpo" -c -o libephymozillaembed_la-EphyHeaderSniffer.lo `test -f 'EphyHeaderSniffer.cpp' || echo '$(srcdir)/'`EphyHeaderSniffer.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyHeaderSniffer.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyHeaderSniffer.cpp' object='libephymozillaembed_la-EphyHeaderSniffer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyHeaderSniffer.lo `test -f 'EphyHeaderSniffer.cpp' || echo '$(srcdir)/'`EphyHeaderSniffer.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyHeaderSniffer.lo `test -f 'EphyHeaderSniffer.cpp' || echo '$(srcdir)/'`EphyHeaderSniffer.cpp libephymozillaembed_la-EphyBrowser.lo: EphyBrowser.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyBrowser.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyBrowser.Tpo -c -o libephymozillaembed_la-EphyBrowser.lo `test -f 'EphyBrowser.cpp' || echo '$(srcdir)/'`EphyBrowser.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyBrowser.Tpo $(DEPDIR)/libephymozillaembed_la-EphyBrowser.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyBrowser.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyBrowser.Tpo" -c -o libephymozillaembed_la-EphyBrowser.lo `test -f 'EphyBrowser.cpp' || echo '$(srcdir)/'`EphyBrowser.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyBrowser.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyBrowser.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyBrowser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyBrowser.cpp' object='libephymozillaembed_la-EphyBrowser.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyBrowser.lo `test -f 'EphyBrowser.cpp' || echo '$(srcdir)/'`EphyBrowser.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyBrowser.lo `test -f 'EphyBrowser.cpp' || echo '$(srcdir)/'`EphyBrowser.cpp libephymozillaembed_la-EphyFind.lo: EphyFind.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyFind.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyFind.Tpo -c -o libephymozillaembed_la-EphyFind.lo `test -f 'EphyFind.cpp' || echo '$(srcdir)/'`EphyFind.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyFind.Tpo $(DEPDIR)/libephymozillaembed_la-EphyFind.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyFind.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyFind.Tpo" -c -o libephymozillaembed_la-EphyFind.lo `test -f 'EphyFind.cpp' || echo '$(srcdir)/'`EphyFind.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyFind.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyFind.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyFind.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyFind.cpp' object='libephymozillaembed_la-EphyFind.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyFind.lo `test -f 'EphyFind.cpp' || echo '$(srcdir)/'`EphyFind.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyFind.lo `test -f 'EphyFind.cpp' || echo '$(srcdir)/'`EphyFind.cpp libephymozillaembed_la-EphyHistoryListener.lo: EphyHistoryListener.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyHistoryListener.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Tpo -c -o libephymozillaembed_la-EphyHistoryListener.lo `test -f 'EphyHistoryListener.cpp' || echo '$(srcdir)/'`EphyHistoryListener.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Tpo $(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyHistoryListener.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Tpo" -c -o libephymozillaembed_la-EphyHistoryListener.lo `test -f 'EphyHistoryListener.cpp' || echo '$(srcdir)/'`EphyHistoryListener.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyHistoryListener.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyHistoryListener.cpp' object='libephymozillaembed_la-EphyHistoryListener.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyHistoryListener.lo `test -f 'EphyHistoryListener.cpp' || echo '$(srcdir)/'`EphyHistoryListener.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyHistoryListener.lo `test -f 'EphyHistoryListener.cpp' || echo '$(srcdir)/'`EphyHistoryListener.cpp libephymozillaembed_la-EphyPromptService.lo: EphyPromptService.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyPromptService.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyPromptService.Tpo -c -o libephymozillaembed_la-EphyPromptService.lo `test -f 'EphyPromptService.cpp' || echo '$(srcdir)/'`EphyPromptService.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyPromptService.Tpo $(DEPDIR)/libephymozillaembed_la-EphyPromptService.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyPromptService.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyPromptService.Tpo" -c -o libephymozillaembed_la-EphyPromptService.lo `test -f 'EphyPromptService.cpp' || echo '$(srcdir)/'`EphyPromptService.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyPromptService.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyPromptService.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyPromptService.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyPromptService.cpp' object='libephymozillaembed_la-EphyPromptService.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyPromptService.lo `test -f 'EphyPromptService.cpp' || echo '$(srcdir)/'`EphyPromptService.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyPromptService.lo `test -f 'EphyPromptService.cpp' || echo '$(srcdir)/'`EphyPromptService.cpp libephymozillaembed_la-EphyRedirectChannel.lo: EphyRedirectChannel.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyRedirectChannel.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Tpo -c -o libephymozillaembed_la-EphyRedirectChannel.lo `test -f 'EphyRedirectChannel.cpp' || echo '$(srcdir)/'`EphyRedirectChannel.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Tpo $(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyRedirectChannel.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Tpo" -c -o libephymozillaembed_la-EphyRedirectChannel.lo `test -f 'EphyRedirectChannel.cpp' || echo '$(srcdir)/'`EphyRedirectChannel.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyRedirectChannel.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyRedirectChannel.cpp' object='libephymozillaembed_la-EphyRedirectChannel.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyRedirectChannel.lo `test -f 'EphyRedirectChannel.cpp' || echo '$(srcdir)/'`EphyRedirectChannel.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyRedirectChannel.lo `test -f 'EphyRedirectChannel.cpp' || echo '$(srcdir)/'`EphyRedirectChannel.cpp libephymozillaembed_la-EphySidebar.lo: EphySidebar.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphySidebar.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphySidebar.Tpo -c -o libephymozillaembed_la-EphySidebar.lo `test -f 'EphySidebar.cpp' || echo '$(srcdir)/'`EphySidebar.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphySidebar.Tpo $(DEPDIR)/libephymozillaembed_la-EphySidebar.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphySidebar.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphySidebar.Tpo" -c -o libephymozillaembed_la-EphySidebar.lo `test -f 'EphySidebar.cpp' || echo '$(srcdir)/'`EphySidebar.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphySidebar.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphySidebar.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphySidebar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphySidebar.cpp' object='libephymozillaembed_la-EphySidebar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphySidebar.lo `test -f 'EphySidebar.cpp' || echo '$(srcdir)/'`EphySidebar.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphySidebar.lo `test -f 'EphySidebar.cpp' || echo '$(srcdir)/'`EphySidebar.cpp libephymozillaembed_la-EphySingle.lo: EphySingle.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphySingle.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphySingle.Tpo -c -o libephymozillaembed_la-EphySingle.lo `test -f 'EphySingle.cpp' || echo '$(srcdir)/'`EphySingle.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphySingle.Tpo $(DEPDIR)/libephymozillaembed_la-EphySingle.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphySingle.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphySingle.Tpo" -c -o libephymozillaembed_la-EphySingle.lo `test -f 'EphySingle.cpp' || echo '$(srcdir)/'`EphySingle.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphySingle.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphySingle.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphySingle.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphySingle.cpp' object='libephymozillaembed_la-EphySingle.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphySingle.lo `test -f 'EphySingle.cpp' || echo '$(srcdir)/'`EphySingle.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphySingle.lo `test -f 'EphySingle.cpp' || echo '$(srcdir)/'`EphySingle.cpp libephymozillaembed_la-EphyUtils.lo: EphyUtils.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyUtils.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyUtils.Tpo -c -o libephymozillaembed_la-EphyUtils.lo `test -f 'EphyUtils.cpp' || echo '$(srcdir)/'`EphyUtils.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyUtils.Tpo $(DEPDIR)/libephymozillaembed_la-EphyUtils.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyUtils.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyUtils.Tpo" -c -o libephymozillaembed_la-EphyUtils.lo `test -f 'EphyUtils.cpp' || echo '$(srcdir)/'`EphyUtils.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyUtils.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyUtils.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyUtils.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyUtils.cpp' object='libephymozillaembed_la-EphyUtils.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyUtils.lo `test -f 'EphyUtils.cpp' || echo '$(srcdir)/'`EphyUtils.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyUtils.lo `test -f 'EphyUtils.cpp' || echo '$(srcdir)/'`EphyUtils.cpp libephymozillaembed_la-EventContext.lo: EventContext.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EventContext.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EventContext.Tpo -c -o libephymozillaembed_la-EventContext.lo `test -f 'EventContext.cpp' || echo '$(srcdir)/'`EventContext.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EventContext.Tpo $(DEPDIR)/libephymozillaembed_la-EventContext.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EventContext.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EventContext.Tpo" -c -o libephymozillaembed_la-EventContext.lo `test -f 'EventContext.cpp' || echo '$(srcdir)/'`EventContext.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EventContext.Tpo" "$(DEPDIR)/libephymozillaembed_la-EventContext.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EventContext.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EventContext.cpp' object='libephymozillaembed_la-EventContext.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EventContext.lo `test -f 'EventContext.cpp' || echo '$(srcdir)/'`EventContext.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EventContext.lo `test -f 'EventContext.cpp' || echo '$(srcdir)/'`EventContext.cpp libephymozillaembed_la-GeckoCookiePromptService.lo: GeckoCookiePromptService.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoCookiePromptService.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Tpo -c -o libephymozillaembed_la-GeckoCookiePromptService.lo `test -f 'GeckoCookiePromptService.cpp' || echo '$(srcdir)/'`GeckoCookiePromptService.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Tpo $(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoCookiePromptService.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Tpo" -c -o libephymozillaembed_la-GeckoCookiePromptService.lo `test -f 'GeckoCookiePromptService.cpp' || echo '$(srcdir)/'`GeckoCookiePromptService.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Tpo" "$(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GeckoCookiePromptService.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GeckoCookiePromptService.cpp' object='libephymozillaembed_la-GeckoCookiePromptService.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoCookiePromptService.lo `test -f 'GeckoCookiePromptService.cpp' || echo '$(srcdir)/'`GeckoCookiePromptService.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoCookiePromptService.lo `test -f 'GeckoCookiePromptService.cpp' || echo '$(srcdir)/'`GeckoCookiePromptService.cpp libephymozillaembed_la-GeckoFormSigningDialog.lo: GeckoFormSigningDialog.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoFormSigningDialog.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Tpo -c -o libephymozillaembed_la-GeckoFormSigningDialog.lo `test -f 'GeckoFormSigningDialog.cpp' || echo '$(srcdir)/'`GeckoFormSigningDialog.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Tpo $(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoFormSigningDialog.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Tpo" -c -o libephymozillaembed_la-GeckoFormSigningDialog.lo `test -f 'GeckoFormSigningDialog.cpp' || echo '$(srcdir)/'`GeckoFormSigningDialog.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Tpo" "$(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GeckoFormSigningDialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GeckoFormSigningDialog.cpp' object='libephymozillaembed_la-GeckoFormSigningDialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoFormSigningDialog.lo `test -f 'GeckoFormSigningDialog.cpp' || echo '$(srcdir)/'`GeckoFormSigningDialog.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoFormSigningDialog.lo `test -f 'GeckoFormSigningDialog.cpp' || echo '$(srcdir)/'`GeckoFormSigningDialog.cpp libephymozillaembed_la-GeckoPrintService.lo: GeckoPrintService.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoPrintService.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Tpo -c -o libephymozillaembed_la-GeckoPrintService.lo `test -f 'GeckoPrintService.cpp' || echo '$(srcdir)/'`GeckoPrintService.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Tpo $(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoPrintService.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Tpo" -c -o libephymozillaembed_la-GeckoPrintService.lo `test -f 'GeckoPrintService.cpp' || echo '$(srcdir)/'`GeckoPrintService.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Tpo" "$(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GeckoPrintService.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GeckoPrintService.cpp' object='libephymozillaembed_la-GeckoPrintService.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoPrintService.lo `test -f 'GeckoPrintService.cpp' || echo '$(srcdir)/'`GeckoPrintService.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoPrintService.lo `test -f 'GeckoPrintService.cpp' || echo '$(srcdir)/'`GeckoPrintService.cpp libephymozillaembed_la-GeckoPrintSession.lo: GeckoPrintSession.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoPrintSession.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Tpo -c -o libephymozillaembed_la-GeckoPrintSession.lo `test -f 'GeckoPrintSession.cpp' || echo '$(srcdir)/'`GeckoPrintSession.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Tpo $(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoPrintSession.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Tpo" -c -o libephymozillaembed_la-GeckoPrintSession.lo `test -f 'GeckoPrintSession.cpp' || echo '$(srcdir)/'`GeckoPrintSession.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Tpo" "$(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GeckoPrintSession.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GeckoPrintSession.cpp' object='libephymozillaembed_la-GeckoPrintSession.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoPrintSession.lo `test -f 'GeckoPrintSession.cpp' || echo '$(srcdir)/'`GeckoPrintSession.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoPrintSession.lo `test -f 'GeckoPrintSession.cpp' || echo '$(srcdir)/'`GeckoPrintSession.cpp libephymozillaembed_la-GlobalHistory.lo: GlobalHistory.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GlobalHistory.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GlobalHistory.Tpo -c -o libephymozillaembed_la-GlobalHistory.lo `test -f 'GlobalHistory.cpp' || echo '$(srcdir)/'`GlobalHistory.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GlobalHistory.Tpo $(DEPDIR)/libephymozillaembed_la-GlobalHistory.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GlobalHistory.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GlobalHistory.Tpo" -c -o libephymozillaembed_la-GlobalHistory.lo `test -f 'GlobalHistory.cpp' || echo '$(srcdir)/'`GlobalHistory.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GlobalHistory.Tpo" "$(DEPDIR)/libephymozillaembed_la-GlobalHistory.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GlobalHistory.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GlobalHistory.cpp' object='libephymozillaembed_la-GlobalHistory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GlobalHistory.lo `test -f 'GlobalHistory.cpp' || echo '$(srcdir)/'`GlobalHistory.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GlobalHistory.lo `test -f 'GlobalHistory.cpp' || echo '$(srcdir)/'`GlobalHistory.cpp libephymozillaembed_la-MozDownload.lo: MozDownload.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-MozDownload.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-MozDownload.Tpo -c -o libephymozillaembed_la-MozDownload.lo `test -f 'MozDownload.cpp' || echo '$(srcdir)/'`MozDownload.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-MozDownload.Tpo $(DEPDIR)/libephymozillaembed_la-MozDownload.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-MozDownload.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-MozDownload.Tpo" -c -o libephymozillaembed_la-MozDownload.lo `test -f 'MozDownload.cpp' || echo '$(srcdir)/'`MozDownload.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-MozDownload.Tpo" "$(DEPDIR)/libephymozillaembed_la-MozDownload.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-MozDownload.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MozDownload.cpp' object='libephymozillaembed_la-MozDownload.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-MozDownload.lo `test -f 'MozDownload.cpp' || echo '$(srcdir)/'`MozDownload.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-MozDownload.lo `test -f 'MozDownload.cpp' || echo '$(srcdir)/'`MozDownload.cpp libephymozillaembed_la-MozRegisterComponents.lo: MozRegisterComponents.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-MozRegisterComponents.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Tpo -c -o libephymozillaembed_la-MozRegisterComponents.lo `test -f 'MozRegisterComponents.cpp' || echo '$(srcdir)/'`MozRegisterComponents.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Tpo $(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-MozRegisterComponents.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Tpo" -c -o libephymozillaembed_la-MozRegisterComponents.lo `test -f 'MozRegisterComponents.cpp' || echo '$(srcdir)/'`MozRegisterComponents.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Tpo" "$(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-MozRegisterComponents.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MozRegisterComponents.cpp' object='libephymozillaembed_la-MozRegisterComponents.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-MozRegisterComponents.lo `test -f 'MozRegisterComponents.cpp' || echo '$(srcdir)/'`MozRegisterComponents.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-MozRegisterComponents.lo `test -f 'MozRegisterComponents.cpp' || echo '$(srcdir)/'`MozRegisterComponents.cpp libephymozillaembed_la-mozilla-download.lo: mozilla-download.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-download.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-download.Tpo -c -o libephymozillaembed_la-mozilla-download.lo `test -f 'mozilla-download.cpp' || echo '$(srcdir)/'`mozilla-download.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-download.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-download.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-download.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-download.Tpo" -c -o libephymozillaembed_la-mozilla-download.lo `test -f 'mozilla-download.cpp' || echo '$(srcdir)/'`mozilla-download.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-download.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-download.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-download.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-download.cpp' object='libephymozillaembed_la-mozilla-download.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-download.lo `test -f 'mozilla-download.cpp' || echo '$(srcdir)/'`mozilla-download.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-download.lo `test -f 'mozilla-download.cpp' || echo '$(srcdir)/'`mozilla-download.cpp libephymozillaembed_la-mozilla-embed.lo: mozilla-embed.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-embed.Tpo -c -o libephymozillaembed_la-mozilla-embed.lo `test -f 'mozilla-embed.cpp' || echo '$(srcdir)/'`mozilla-embed.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-embed.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-embed.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-embed.Tpo" -c -o libephymozillaembed_la-mozilla-embed.lo `test -f 'mozilla-embed.cpp' || echo '$(srcdir)/'`mozilla-embed.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-embed.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-embed.cpp' object='libephymozillaembed_la-mozilla-embed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed.lo `test -f 'mozilla-embed.cpp' || echo '$(srcdir)/'`mozilla-embed.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed.lo `test -f 'mozilla-embed.cpp' || echo '$(srcdir)/'`mozilla-embed.cpp libephymozillaembed_la-mozilla-embed-event.lo: mozilla-embed-event.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-event.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Tpo -c -o libephymozillaembed_la-mozilla-embed-event.lo `test -f 'mozilla-embed-event.cpp' || echo '$(srcdir)/'`mozilla-embed-event.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-event.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Tpo" -c -o libephymozillaembed_la-mozilla-embed-event.lo `test -f 'mozilla-embed-event.cpp' || echo '$(srcdir)/'`mozilla-embed-event.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-event.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-embed-event.cpp' object='libephymozillaembed_la-mozilla-embed-event.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-event.lo `test -f 'mozilla-embed-event.cpp' || echo '$(srcdir)/'`mozilla-embed-event.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-event.lo `test -f 'mozilla-embed-event.cpp' || echo '$(srcdir)/'`mozilla-embed-event.cpp libephymozillaembed_la-mozilla-embed-find.lo: mozilla-embed-find.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-find.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Tpo -c -o libephymozillaembed_la-mozilla-embed-find.lo `test -f 'mozilla-embed-find.cpp' || echo '$(srcdir)/'`mozilla-embed-find.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-find.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Tpo" -c -o libephymozillaembed_la-mozilla-embed-find.lo `test -f 'mozilla-embed-find.cpp' || echo '$(srcdir)/'`mozilla-embed-find.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-embed-find.cpp' object='libephymozillaembed_la-mozilla-embed-find.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-find.lo `test -f 'mozilla-embed-find.cpp' || echo '$(srcdir)/'`mozilla-embed-find.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-find.lo `test -f 'mozilla-embed-find.cpp' || echo '$(srcdir)/'`mozilla-embed-find.cpp libephymozillaembed_la-mozilla-embed-persist.lo: mozilla-embed-persist.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-persist.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Tpo -c -o libephymozillaembed_la-mozilla-embed-persist.lo `test -f 'mozilla-embed-persist.cpp' || echo '$(srcdir)/'`mozilla-embed-persist.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-persist.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Tpo" -c -o libephymozillaembed_la-mozilla-embed-persist.lo `test -f 'mozilla-embed-persist.cpp' || echo '$(srcdir)/'`mozilla-embed-persist.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-embed-persist.cpp' object='libephymozillaembed_la-mozilla-embed-persist.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-persist.lo `test -f 'mozilla-embed-persist.cpp' || echo '$(srcdir)/'`mozilla-embed-persist.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-persist.lo `test -f 'mozilla-embed-persist.cpp' || echo '$(srcdir)/'`mozilla-embed-persist.cpp libephymozillaembed_la-mozilla-embed-single.lo: mozilla-embed-single.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-single.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Tpo -c -o libephymozillaembed_la-mozilla-embed-single.lo `test -f 'mozilla-embed-single.cpp' || echo '$(srcdir)/'`mozilla-embed-single.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-embed-single.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Tpo" -c -o libephymozillaembed_la-mozilla-embed-single.lo `test -f 'mozilla-embed-single.cpp' || echo '$(srcdir)/'`mozilla-embed-single.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-embed-single.cpp' object='libephymozillaembed_la-mozilla-embed-single.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-single.lo `test -f 'mozilla-embed-single.cpp' || echo '$(srcdir)/'`mozilla-embed-single.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-embed-single.lo `test -f 'mozilla-embed-single.cpp' || echo '$(srcdir)/'`mozilla-embed-single.cpp libephymozillaembed_la-mozilla-history-item.lo: mozilla-history-item.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-history-item.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Tpo -c -o libephymozillaembed_la-mozilla-history-item.lo `test -f 'mozilla-history-item.cpp' || echo '$(srcdir)/'`mozilla-history-item.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-history-item.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Tpo" -c -o libephymozillaembed_la-mozilla-history-item.lo `test -f 'mozilla-history-item.cpp' || echo '$(srcdir)/'`mozilla-history-item.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-history-item.cpp' object='libephymozillaembed_la-mozilla-history-item.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-history-item.lo `test -f 'mozilla-history-item.cpp' || echo '$(srcdir)/'`mozilla-history-item.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-history-item.lo `test -f 'mozilla-history-item.cpp' || echo '$(srcdir)/'`mozilla-history-item.cpp libephymozillaembed_la-mozilla-notifiers.lo: mozilla-notifiers.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-notifiers.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Tpo -c -o libephymozillaembed_la-mozilla-notifiers.lo `test -f 'mozilla-notifiers.cpp' || echo '$(srcdir)/'`mozilla-notifiers.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Tpo $(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-mozilla-notifiers.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Tpo" -c -o libephymozillaembed_la-mozilla-notifiers.lo `test -f 'mozilla-notifiers.cpp' || echo '$(srcdir)/'`mozilla-notifiers.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Tpo" "$(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-mozilla-notifiers.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mozilla-notifiers.cpp' object='libephymozillaembed_la-mozilla-notifiers.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-notifiers.lo `test -f 'mozilla-notifiers.cpp' || echo '$(srcdir)/'`mozilla-notifiers.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-mozilla-notifiers.lo `test -f 'mozilla-notifiers.cpp' || echo '$(srcdir)/'`mozilla-notifiers.cpp libephymozillaembed_la-EphyBadCertRejector.lo: EphyBadCertRejector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyBadCertRejector.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Tpo -c -o libephymozillaembed_la-EphyBadCertRejector.lo `test -f 'EphyBadCertRejector.cpp' || echo '$(srcdir)/'`EphyBadCertRejector.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Tpo $(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-EphyBadCertRejector.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Tpo" -c -o libephymozillaembed_la-EphyBadCertRejector.lo `test -f 'EphyBadCertRejector.cpp' || echo '$(srcdir)/'`EphyBadCertRejector.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Tpo" "$(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-EphyBadCertRejector.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='EphyBadCertRejector.cpp' object='libephymozillaembed_la-EphyBadCertRejector.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyBadCertRejector.lo `test -f 'EphyBadCertRejector.cpp' || echo '$(srcdir)/'`EphyBadCertRejector.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-EphyBadCertRejector.lo `test -f 'EphyBadCertRejector.cpp' || echo '$(srcdir)/'`EphyBadCertRejector.cpp libephymozillaembed_la-FilePicker.lo: FilePicker.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-FilePicker.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-FilePicker.Tpo -c -o libephymozillaembed_la-FilePicker.lo `test -f 'FilePicker.cpp' || echo '$(srcdir)/'`FilePicker.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-FilePicker.Tpo $(DEPDIR)/libephymozillaembed_la-FilePicker.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-FilePicker.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-FilePicker.Tpo" -c -o libephymozillaembed_la-FilePicker.lo `test -f 'FilePicker.cpp' || echo '$(srcdir)/'`FilePicker.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-FilePicker.Tpo" "$(DEPDIR)/libephymozillaembed_la-FilePicker.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-FilePicker.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FilePicker.cpp' object='libephymozillaembed_la-FilePicker.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-FilePicker.lo `test -f 'FilePicker.cpp' || echo '$(srcdir)/'`FilePicker.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-FilePicker.lo `test -f 'FilePicker.cpp' || echo '$(srcdir)/'`FilePicker.cpp libephymozillaembed_la-GtkNSSClientAuthDialogs.lo: GtkNSSClientAuthDialogs.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSClientAuthDialogs.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Tpo -c -o libephymozillaembed_la-GtkNSSClientAuthDialogs.lo `test -f 'GtkNSSClientAuthDialogs.cpp' || echo '$(srcdir)/'`GtkNSSClientAuthDialogs.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Tpo $(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSClientAuthDialogs.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Tpo" -c -o libephymozillaembed_la-GtkNSSClientAuthDialogs.lo `test -f 'GtkNSSClientAuthDialogs.cpp' || echo '$(srcdir)/'`GtkNSSClientAuthDialogs.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Tpo" "$(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSClientAuthDialogs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkNSSClientAuthDialogs.cpp' object='libephymozillaembed_la-GtkNSSClientAuthDialogs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSClientAuthDialogs.lo `test -f 'GtkNSSClientAuthDialogs.cpp' || echo '$(srcdir)/'`GtkNSSClientAuthDialogs.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSClientAuthDialogs.lo `test -f 'GtkNSSClientAuthDialogs.cpp' || echo '$(srcdir)/'`GtkNSSClientAuthDialogs.cpp libephymozillaembed_la-GtkNSSDialogs.lo: GtkNSSDialogs.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSDialogs.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Tpo -c -o libephymozillaembed_la-GtkNSSDialogs.lo `test -f 'GtkNSSDialogs.cpp' || echo '$(srcdir)/'`GtkNSSDialogs.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Tpo $(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSDialogs.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Tpo" -c -o libephymozillaembed_la-GtkNSSDialogs.lo `test -f 'GtkNSSDialogs.cpp' || echo '$(srcdir)/'`GtkNSSDialogs.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Tpo" "$(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSDialogs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkNSSDialogs.cpp' object='libephymozillaembed_la-GtkNSSDialogs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSDialogs.lo `test -f 'GtkNSSDialogs.cpp' || echo '$(srcdir)/'`GtkNSSDialogs.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSDialogs.lo `test -f 'GtkNSSDialogs.cpp' || echo '$(srcdir)/'`GtkNSSDialogs.cpp libephymozillaembed_la-GtkNSSKeyPairDialogs.lo: GtkNSSKeyPairDialogs.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSKeyPairDialogs.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Tpo -c -o libephymozillaembed_la-GtkNSSKeyPairDialogs.lo `test -f 'GtkNSSKeyPairDialogs.cpp' || echo '$(srcdir)/'`GtkNSSKeyPairDialogs.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Tpo $(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSKeyPairDialogs.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Tpo" -c -o libephymozillaembed_la-GtkNSSKeyPairDialogs.lo `test -f 'GtkNSSKeyPairDialogs.cpp' || echo '$(srcdir)/'`GtkNSSKeyPairDialogs.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Tpo" "$(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSKeyPairDialogs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkNSSKeyPairDialogs.cpp' object='libephymozillaembed_la-GtkNSSKeyPairDialogs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSKeyPairDialogs.lo `test -f 'GtkNSSKeyPairDialogs.cpp' || echo '$(srcdir)/'`GtkNSSKeyPairDialogs.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSKeyPairDialogs.lo `test -f 'GtkNSSKeyPairDialogs.cpp' || echo '$(srcdir)/'`GtkNSSKeyPairDialogs.cpp libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo: GtkNSSSecurityWarningDialogs.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Tpo -c -o libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo `test -f 'GtkNSSSecurityWarningDialogs.cpp' || echo '$(srcdir)/'`GtkNSSSecurityWarningDialogs.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Tpo $(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Tpo" -c -o libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo `test -f 'GtkNSSSecurityWarningDialogs.cpp' || echo '$(srcdir)/'`GtkNSSSecurityWarningDialogs.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Tpo" "$(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GtkNSSSecurityWarningDialogs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkNSSSecurityWarningDialogs.cpp' object='libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo `test -f 'GtkNSSSecurityWarningDialogs.cpp' || echo '$(srcdir)/'`GtkNSSSecurityWarningDialogs.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GtkNSSSecurityWarningDialogs.lo `test -f 'GtkNSSSecurityWarningDialogs.cpp' || echo '$(srcdir)/'`GtkNSSSecurityWarningDialogs.cpp libephymozillaembed_la-GeckoSpellCheckEngine.lo: GeckoSpellCheckEngine.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoSpellCheckEngine.lo -MD -MP -MF $(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Tpo -c -o libephymozillaembed_la-GeckoSpellCheckEngine.lo `test -f 'GeckoSpellCheckEngine.cpp' || echo '$(srcdir)/'`GeckoSpellCheckEngine.cpp -@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Tpo $(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Plo +@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -MT libephymozillaembed_la-GeckoSpellCheckEngine.lo -MD -MP -MF "$(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Tpo" -c -o libephymozillaembed_la-GeckoSpellCheckEngine.lo `test -f 'GeckoSpellCheckEngine.cpp' || echo '$(srcdir)/'`GeckoSpellCheckEngine.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Tpo" "$(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Plo"; else rm -f "$(DEPDIR)/libephymozillaembed_la-GeckoSpellCheckEngine.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GeckoSpellCheckEngine.cpp' object='libephymozillaembed_la-GeckoSpellCheckEngine.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoSpellCheckEngine.lo `test -f 'GeckoSpellCheckEngine.cpp' || echo '$(srcdir)/'`GeckoSpellCheckEngine.cpp +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymozillaembed_la_CPPFLAGS) $(CPPFLAGS) $(libephymozillaembed_la_CXXFLAGS) $(CXXFLAGS) -c -o libephymozillaembed_la-GeckoSpellCheckEngine.lo `test -f 'GeckoSpellCheckEngine.cpp' || echo '$(srcdir)/'`GeckoSpellCheckEngine.cpp mostlyclean-libtool: -rm -f *.lo @@ -891,13 +939,17 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -909,8 +961,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -920,12 +972,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -939,21 +992,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -1001,7 +1055,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -1015,20 +1069,12 @@ install-data-am: -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -1049,22 +1095,19 @@ ps-am: -uninstall-am: - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am + 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. --- epiphany-browser-2.22.0.orig/embed/Makefile.in +++ epiphany-browser-2.22.0/embed/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -15,11 +15,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -84,40 +88,31 @@ nodist_libephyembed_la_OBJECTS = $(am__objects_2) libephyembed_la_OBJECTS = $(am_libephyembed_la_OBJECTS) \ $(nodist_libephyembed_la_OBJECTS) -libephyembed_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libephyembed_la_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ libephyembedfactory_la_LIBADD = am_libephyembedfactory_la_OBJECTS = \ libephyembedfactory_la-ephy-embed-factory.lo libephyembedfactory_la_OBJECTS = $(am_libephyembedfactory_la_OBJECTS) -libephyembedfactory_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(libephyembedfactory_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephyembed_la_SOURCES) $(nodist_libephyembed_la_SOURCES) \ $(libephyembedfactory_la_SOURCES) DIST_SOURCES = $(libephyembed_la_SOURCES) \ $(libephyembedfactory_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -127,14 +122,14 @@ am__installdirs = "$(DESTDIR)$(headerdir)" headerDATA_INSTALL = $(INSTALL_DATA) DATA = $(header_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -178,6 +173,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -189,6 +200,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -207,9 +220,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -256,8 +296,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -310,14 +351,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -329,7 +376,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -361,11 +407,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = $(with_engine) DIST_SUBDIRS = mozilla webkit @@ -511,9 +554,9 @@ rm -f "$${dir}/so_locations"; \ done libephyembed.la: $(libephyembed_la_OBJECTS) $(libephyembed_la_DEPENDENCIES) - $(libephyembed_la_LINK) $(libephyembed_la_OBJECTS) $(libephyembed_la_LIBADD) $(LIBS) + $(LINK) $(libephyembed_la_LDFLAGS) $(libephyembed_la_OBJECTS) $(libephyembed_la_LIBADD) $(LIBS) libephyembedfactory.la: $(libephyembedfactory_la_OBJECTS) $(libephyembedfactory_la_DEPENDENCIES) - $(libephyembedfactory_la_LINK) $(libephyembedfactory_la_OBJECTS) $(libephyembedfactory_la_LIBADD) $(LIBS) + $(LINK) $(libephyembedfactory_la_LDFLAGS) $(libephyembedfactory_la_OBJECTS) $(libephyembedfactory_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -547,202 +590,206 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephyembed_la-ephy-adblock.lo: ephy-adblock.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-adblock.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-adblock.Tpo -c -o libephyembed_la-ephy-adblock.lo `test -f 'ephy-adblock.c' || echo '$(srcdir)/'`ephy-adblock.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-adblock.Tpo $(DEPDIR)/libephyembed_la-ephy-adblock.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-adblock.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-adblock.Tpo" -c -o libephyembed_la-ephy-adblock.lo `test -f 'ephy-adblock.c' || echo '$(srcdir)/'`ephy-adblock.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-adblock.Tpo" "$(DEPDIR)/libephyembed_la-ephy-adblock.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-adblock.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-adblock.c' object='libephyembed_la-ephy-adblock.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-adblock.lo `test -f 'ephy-adblock.c' || echo '$(srcdir)/'`ephy-adblock.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-adblock.lo `test -f 'ephy-adblock.c' || echo '$(srcdir)/'`ephy-adblock.c libephyembed_la-ephy-adblock-manager.lo: ephy-adblock-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-adblock-manager.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-adblock-manager.Tpo -c -o libephyembed_la-ephy-adblock-manager.lo `test -f 'ephy-adblock-manager.c' || echo '$(srcdir)/'`ephy-adblock-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-adblock-manager.Tpo $(DEPDIR)/libephyembed_la-ephy-adblock-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-adblock-manager.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-adblock-manager.Tpo" -c -o libephyembed_la-ephy-adblock-manager.lo `test -f 'ephy-adblock-manager.c' || echo '$(srcdir)/'`ephy-adblock-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-adblock-manager.Tpo" "$(DEPDIR)/libephyembed_la-ephy-adblock-manager.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-adblock-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-adblock-manager.c' object='libephyembed_la-ephy-adblock-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-adblock-manager.lo `test -f 'ephy-adblock-manager.c' || echo '$(srcdir)/'`ephy-adblock-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-adblock-manager.lo `test -f 'ephy-adblock-manager.c' || echo '$(srcdir)/'`ephy-adblock-manager.c libephyembed_la-ephy-base-embed.lo: ephy-base-embed.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-base-embed.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-base-embed.Tpo -c -o libephyembed_la-ephy-base-embed.lo `test -f 'ephy-base-embed.c' || echo '$(srcdir)/'`ephy-base-embed.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-base-embed.Tpo $(DEPDIR)/libephyembed_la-ephy-base-embed.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-base-embed.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-base-embed.Tpo" -c -o libephyembed_la-ephy-base-embed.lo `test -f 'ephy-base-embed.c' || echo '$(srcdir)/'`ephy-base-embed.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-base-embed.Tpo" "$(DEPDIR)/libephyembed_la-ephy-base-embed.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-base-embed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-base-embed.c' object='libephyembed_la-ephy-base-embed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-base-embed.lo `test -f 'ephy-base-embed.c' || echo '$(srcdir)/'`ephy-base-embed.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-base-embed.lo `test -f 'ephy-base-embed.c' || echo '$(srcdir)/'`ephy-base-embed.c libephyembed_la-downloader-view.lo: downloader-view.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-downloader-view.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-downloader-view.Tpo -c -o libephyembed_la-downloader-view.lo `test -f 'downloader-view.c' || echo '$(srcdir)/'`downloader-view.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-downloader-view.Tpo $(DEPDIR)/libephyembed_la-downloader-view.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-downloader-view.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-downloader-view.Tpo" -c -o libephyembed_la-downloader-view.lo `test -f 'downloader-view.c' || echo '$(srcdir)/'`downloader-view.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-downloader-view.Tpo" "$(DEPDIR)/libephyembed_la-downloader-view.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-downloader-view.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='downloader-view.c' object='libephyembed_la-downloader-view.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-downloader-view.lo `test -f 'downloader-view.c' || echo '$(srcdir)/'`downloader-view.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-downloader-view.lo `test -f 'downloader-view.c' || echo '$(srcdir)/'`downloader-view.c libephyembed_la-ephy-command-manager.lo: ephy-command-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-command-manager.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-command-manager.Tpo -c -o libephyembed_la-ephy-command-manager.lo `test -f 'ephy-command-manager.c' || echo '$(srcdir)/'`ephy-command-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-command-manager.Tpo $(DEPDIR)/libephyembed_la-ephy-command-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-command-manager.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-command-manager.Tpo" -c -o libephyembed_la-ephy-command-manager.lo `test -f 'ephy-command-manager.c' || echo '$(srcdir)/'`ephy-command-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-command-manager.Tpo" "$(DEPDIR)/libephyembed_la-ephy-command-manager.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-command-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-command-manager.c' object='libephyembed_la-ephy-command-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-command-manager.lo `test -f 'ephy-command-manager.c' || echo '$(srcdir)/'`ephy-command-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-command-manager.lo `test -f 'ephy-command-manager.c' || echo '$(srcdir)/'`ephy-command-manager.c libephyembed_la-ephy-cookie-manager.lo: ephy-cookie-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-cookie-manager.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-cookie-manager.Tpo -c -o libephyembed_la-ephy-cookie-manager.lo `test -f 'ephy-cookie-manager.c' || echo '$(srcdir)/'`ephy-cookie-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-cookie-manager.Tpo $(DEPDIR)/libephyembed_la-ephy-cookie-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-cookie-manager.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-cookie-manager.Tpo" -c -o libephyembed_la-ephy-cookie-manager.lo `test -f 'ephy-cookie-manager.c' || echo '$(srcdir)/'`ephy-cookie-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-cookie-manager.Tpo" "$(DEPDIR)/libephyembed_la-ephy-cookie-manager.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-cookie-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-cookie-manager.c' object='libephyembed_la-ephy-cookie-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-cookie-manager.lo `test -f 'ephy-cookie-manager.c' || echo '$(srcdir)/'`ephy-cookie-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-cookie-manager.lo `test -f 'ephy-cookie-manager.c' || echo '$(srcdir)/'`ephy-cookie-manager.c libephyembed_la-ephy-download.lo: ephy-download.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-download.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-download.Tpo -c -o libephyembed_la-ephy-download.lo `test -f 'ephy-download.c' || echo '$(srcdir)/'`ephy-download.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-download.Tpo $(DEPDIR)/libephyembed_la-ephy-download.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-download.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-download.Tpo" -c -o libephyembed_la-ephy-download.lo `test -f 'ephy-download.c' || echo '$(srcdir)/'`ephy-download.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-download.Tpo" "$(DEPDIR)/libephyembed_la-ephy-download.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-download.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-download.c' object='libephyembed_la-ephy-download.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-download.lo `test -f 'ephy-download.c' || echo '$(srcdir)/'`ephy-download.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-download.lo `test -f 'ephy-download.c' || echo '$(srcdir)/'`ephy-download.c libephyembed_la-ephy-embed.lo: ephy-embed.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed.Tpo -c -o libephyembed_la-ephy-embed.lo `test -f 'ephy-embed.c' || echo '$(srcdir)/'`ephy-embed.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed.Tpo $(DEPDIR)/libephyembed_la-ephy-embed.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed.Tpo" -c -o libephyembed_la-ephy-embed.lo `test -f 'ephy-embed.c' || echo '$(srcdir)/'`ephy-embed.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed.c' object='libephyembed_la-ephy-embed.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed.lo `test -f 'ephy-embed.c' || echo '$(srcdir)/'`ephy-embed.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed.lo `test -f 'ephy-embed.c' || echo '$(srcdir)/'`ephy-embed.c libephyembed_la-ephy-embed-container.lo: ephy-embed-container.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-container.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-container.Tpo -c -o libephyembed_la-ephy-embed-container.lo `test -f 'ephy-embed-container.c' || echo '$(srcdir)/'`ephy-embed-container.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-container.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-container.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-container.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-container.Tpo" -c -o libephyembed_la-ephy-embed-container.lo `test -f 'ephy-embed-container.c' || echo '$(srcdir)/'`ephy-embed-container.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-container.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-container.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-container.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-container.c' object='libephyembed_la-ephy-embed-container.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-container.lo `test -f 'ephy-embed-container.c' || echo '$(srcdir)/'`ephy-embed-container.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-container.lo `test -f 'ephy-embed-container.c' || echo '$(srcdir)/'`ephy-embed-container.c libephyembed_la-ephy-embed-dialog.lo: ephy-embed-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-dialog.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-dialog.Tpo -c -o libephyembed_la-ephy-embed-dialog.lo `test -f 'ephy-embed-dialog.c' || echo '$(srcdir)/'`ephy-embed-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-dialog.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-dialog.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-dialog.Tpo" -c -o libephyembed_la-ephy-embed-dialog.lo `test -f 'ephy-embed-dialog.c' || echo '$(srcdir)/'`ephy-embed-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-dialog.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-dialog.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-dialog.c' object='libephyembed_la-ephy-embed-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-dialog.lo `test -f 'ephy-embed-dialog.c' || echo '$(srcdir)/'`ephy-embed-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-dialog.lo `test -f 'ephy-embed-dialog.c' || echo '$(srcdir)/'`ephy-embed-dialog.c libephyembed_la-ephy-embed-event.lo: ephy-embed-event.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-event.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-event.Tpo -c -o libephyembed_la-ephy-embed-event.lo `test -f 'ephy-embed-event.c' || echo '$(srcdir)/'`ephy-embed-event.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-event.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-event.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-event.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-event.Tpo" -c -o libephyembed_la-ephy-embed-event.lo `test -f 'ephy-embed-event.c' || echo '$(srcdir)/'`ephy-embed-event.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-event.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-event.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-event.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-event.c' object='libephyembed_la-ephy-embed-event.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-event.lo `test -f 'ephy-embed-event.c' || echo '$(srcdir)/'`ephy-embed-event.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-event.lo `test -f 'ephy-embed-event.c' || echo '$(srcdir)/'`ephy-embed-event.c libephyembed_la-ephy-embed-find.lo: ephy-embed-find.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-find.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-find.Tpo -c -o libephyembed_la-ephy-embed-find.lo `test -f 'ephy-embed-find.c' || echo '$(srcdir)/'`ephy-embed-find.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-find.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-find.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-find.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-find.Tpo" -c -o libephyembed_la-ephy-embed-find.lo `test -f 'ephy-embed-find.c' || echo '$(srcdir)/'`ephy-embed-find.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-find.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-find.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-find.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-find.c' object='libephyembed_la-ephy-embed-find.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-find.lo `test -f 'ephy-embed-find.c' || echo '$(srcdir)/'`ephy-embed-find.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-find.lo `test -f 'ephy-embed-find.c' || echo '$(srcdir)/'`ephy-embed-find.c libephyembed_la-ephy-embed-persist.lo: ephy-embed-persist.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-persist.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-persist.Tpo -c -o libephyembed_la-ephy-embed-persist.lo `test -f 'ephy-embed-persist.c' || echo '$(srcdir)/'`ephy-embed-persist.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-persist.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-persist.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-persist.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-persist.Tpo" -c -o libephyembed_la-ephy-embed-persist.lo `test -f 'ephy-embed-persist.c' || echo '$(srcdir)/'`ephy-embed-persist.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-persist.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-persist.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-persist.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-persist.c' object='libephyembed_la-ephy-embed-persist.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-persist.lo `test -f 'ephy-embed-persist.c' || echo '$(srcdir)/'`ephy-embed-persist.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-persist.lo `test -f 'ephy-embed-persist.c' || echo '$(srcdir)/'`ephy-embed-persist.c libephyembed_la-ephy-embed-single.lo: ephy-embed-single.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-single.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-single.Tpo -c -o libephyembed_la-ephy-embed-single.lo `test -f 'ephy-embed-single.c' || echo '$(srcdir)/'`ephy-embed-single.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-single.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-single.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-single.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-single.Tpo" -c -o libephyembed_la-ephy-embed-single.lo `test -f 'ephy-embed-single.c' || echo '$(srcdir)/'`ephy-embed-single.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-single.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-single.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-single.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-single.c' object='libephyembed_la-ephy-embed-single.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-single.lo `test -f 'ephy-embed-single.c' || echo '$(srcdir)/'`ephy-embed-single.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-single.lo `test -f 'ephy-embed-single.c' || echo '$(srcdir)/'`ephy-embed-single.c libephyembed_la-ephy-embed-shell.lo: ephy-embed-shell.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-shell.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-shell.Tpo -c -o libephyembed_la-ephy-embed-shell.lo `test -f 'ephy-embed-shell.c' || echo '$(srcdir)/'`ephy-embed-shell.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-shell.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-shell.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-shell.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-shell.Tpo" -c -o libephyembed_la-ephy-embed-shell.lo `test -f 'ephy-embed-shell.c' || echo '$(srcdir)/'`ephy-embed-shell.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-shell.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-shell.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-shell.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-shell.c' object='libephyembed_la-ephy-embed-shell.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-shell.lo `test -f 'ephy-embed-shell.c' || echo '$(srcdir)/'`ephy-embed-shell.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-shell.lo `test -f 'ephy-embed-shell.c' || echo '$(srcdir)/'`ephy-embed-shell.c libephyembed_la-ephy-embed-utils.lo: ephy-embed-utils.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-utils.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-utils.Tpo -c -o libephyembed_la-ephy-embed-utils.lo `test -f 'ephy-embed-utils.c' || echo '$(srcdir)/'`ephy-embed-utils.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-utils.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-utils.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-utils.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-utils.Tpo" -c -o libephyembed_la-ephy-embed-utils.lo `test -f 'ephy-embed-utils.c' || echo '$(srcdir)/'`ephy-embed-utils.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-utils.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-utils.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-utils.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-utils.c' object='libephyembed_la-ephy-embed-utils.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-utils.lo `test -f 'ephy-embed-utils.c' || echo '$(srcdir)/'`ephy-embed-utils.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-utils.lo `test -f 'ephy-embed-utils.c' || echo '$(srcdir)/'`ephy-embed-utils.c libephyembed_la-ephy-encodings.lo: ephy-encodings.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-encodings.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-encodings.Tpo -c -o libephyembed_la-ephy-encodings.lo `test -f 'ephy-encodings.c' || echo '$(srcdir)/'`ephy-encodings.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-encodings.Tpo $(DEPDIR)/libephyembed_la-ephy-encodings.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-encodings.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-encodings.Tpo" -c -o libephyembed_la-ephy-encodings.lo `test -f 'ephy-encodings.c' || echo '$(srcdir)/'`ephy-encodings.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-encodings.Tpo" "$(DEPDIR)/libephyembed_la-ephy-encodings.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-encodings.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-encodings.c' object='libephyembed_la-ephy-encodings.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-encodings.lo `test -f 'ephy-encodings.c' || echo '$(srcdir)/'`ephy-encodings.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-encodings.lo `test -f 'ephy-encodings.c' || echo '$(srcdir)/'`ephy-encodings.c libephyembed_la-ephy-favicon-cache.lo: ephy-favicon-cache.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-favicon-cache.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-favicon-cache.Tpo -c -o libephyembed_la-ephy-favicon-cache.lo `test -f 'ephy-favicon-cache.c' || echo '$(srcdir)/'`ephy-favicon-cache.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-favicon-cache.Tpo $(DEPDIR)/libephyembed_la-ephy-favicon-cache.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-favicon-cache.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-favicon-cache.Tpo" -c -o libephyembed_la-ephy-favicon-cache.lo `test -f 'ephy-favicon-cache.c' || echo '$(srcdir)/'`ephy-favicon-cache.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-favicon-cache.Tpo" "$(DEPDIR)/libephyembed_la-ephy-favicon-cache.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-favicon-cache.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-favicon-cache.c' object='libephyembed_la-ephy-favicon-cache.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-favicon-cache.lo `test -f 'ephy-favicon-cache.c' || echo '$(srcdir)/'`ephy-favicon-cache.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-favicon-cache.lo `test -f 'ephy-favicon-cache.c' || echo '$(srcdir)/'`ephy-favicon-cache.c libephyembed_la-ephy-history.lo: ephy-history.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-history.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-history.Tpo -c -o libephyembed_la-ephy-history.lo `test -f 'ephy-history.c' || echo '$(srcdir)/'`ephy-history.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-history.Tpo $(DEPDIR)/libephyembed_la-ephy-history.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-history.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-history.Tpo" -c -o libephyembed_la-ephy-history.lo `test -f 'ephy-history.c' || echo '$(srcdir)/'`ephy-history.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-history.Tpo" "$(DEPDIR)/libephyembed_la-ephy-history.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-history.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-history.c' object='libephyembed_la-ephy-history.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-history.lo `test -f 'ephy-history.c' || echo '$(srcdir)/'`ephy-history.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-history.lo `test -f 'ephy-history.c' || echo '$(srcdir)/'`ephy-history.c libephyembed_la-ephy-history-item.lo: ephy-history-item.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-history-item.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-history-item.Tpo -c -o libephyembed_la-ephy-history-item.lo `test -f 'ephy-history-item.c' || echo '$(srcdir)/'`ephy-history-item.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-history-item.Tpo $(DEPDIR)/libephyembed_la-ephy-history-item.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-history-item.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-history-item.Tpo" -c -o libephyembed_la-ephy-history-item.lo `test -f 'ephy-history-item.c' || echo '$(srcdir)/'`ephy-history-item.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-history-item.Tpo" "$(DEPDIR)/libephyembed_la-ephy-history-item.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-history-item.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-history-item.c' object='libephyembed_la-ephy-history-item.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-history-item.lo `test -f 'ephy-history-item.c' || echo '$(srcdir)/'`ephy-history-item.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-history-item.lo `test -f 'ephy-history-item.c' || echo '$(srcdir)/'`ephy-history-item.c libephyembed_la-ephy-password-manager.lo: ephy-password-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-password-manager.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-password-manager.Tpo -c -o libephyembed_la-ephy-password-manager.lo `test -f 'ephy-password-manager.c' || echo '$(srcdir)/'`ephy-password-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-password-manager.Tpo $(DEPDIR)/libephyembed_la-ephy-password-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-password-manager.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-password-manager.Tpo" -c -o libephyembed_la-ephy-password-manager.lo `test -f 'ephy-password-manager.c' || echo '$(srcdir)/'`ephy-password-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-password-manager.Tpo" "$(DEPDIR)/libephyembed_la-ephy-password-manager.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-password-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-password-manager.c' object='libephyembed_la-ephy-password-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-password-manager.lo `test -f 'ephy-password-manager.c' || echo '$(srcdir)/'`ephy-password-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-password-manager.lo `test -f 'ephy-password-manager.c' || echo '$(srcdir)/'`ephy-password-manager.c libephyembed_la-ephy-permission-manager.lo: ephy-permission-manager.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-permission-manager.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-permission-manager.Tpo -c -o libephyembed_la-ephy-permission-manager.lo `test -f 'ephy-permission-manager.c' || echo '$(srcdir)/'`ephy-permission-manager.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-permission-manager.Tpo $(DEPDIR)/libephyembed_la-ephy-permission-manager.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-permission-manager.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-permission-manager.Tpo" -c -o libephyembed_la-ephy-permission-manager.lo `test -f 'ephy-permission-manager.c' || echo '$(srcdir)/'`ephy-permission-manager.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-permission-manager.Tpo" "$(DEPDIR)/libephyembed_la-ephy-permission-manager.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-permission-manager.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-permission-manager.c' object='libephyembed_la-ephy-permission-manager.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-permission-manager.lo `test -f 'ephy-permission-manager.c' || echo '$(srcdir)/'`ephy-permission-manager.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-permission-manager.lo `test -f 'ephy-permission-manager.c' || echo '$(srcdir)/'`ephy-permission-manager.c libephyembed_la-ephy-embed-type-builtins.lo: ephy-embed-type-builtins.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-type-builtins.lo -MD -MP -MF $(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Tpo -c -o libephyembed_la-ephy-embed-type-builtins.lo `test -f 'ephy-embed-type-builtins.c' || echo '$(srcdir)/'`ephy-embed-type-builtins.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Tpo $(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -MT libephyembed_la-ephy-embed-type-builtins.lo -MD -MP -MF "$(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Tpo" -c -o libephyembed_la-ephy-embed-type-builtins.lo `test -f 'ephy-embed-type-builtins.c' || echo '$(srcdir)/'`ephy-embed-type-builtins.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Tpo" "$(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Plo"; else rm -f "$(DEPDIR)/libephyembed_la-ephy-embed-type-builtins.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-type-builtins.c' object='libephyembed_la-ephy-embed-type-builtins.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-type-builtins.lo `test -f 'ephy-embed-type-builtins.c' || echo '$(srcdir)/'`ephy-embed-type-builtins.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembed_la_CPPFLAGS) $(CPPFLAGS) $(libephyembed_la_CFLAGS) $(CFLAGS) -c -o libephyembed_la-ephy-embed-type-builtins.lo `test -f 'ephy-embed-type-builtins.c' || echo '$(srcdir)/'`ephy-embed-type-builtins.c libephyembedfactory_la-ephy-embed-factory.lo: ephy-embed-factory.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembedfactory_la_CPPFLAGS) $(CPPFLAGS) $(libephyembedfactory_la_CFLAGS) $(CFLAGS) -MT libephyembedfactory_la-ephy-embed-factory.lo -MD -MP -MF $(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Tpo -c -o libephyembedfactory_la-ephy-embed-factory.lo `test -f 'ephy-embed-factory.c' || echo '$(srcdir)/'`ephy-embed-factory.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Tpo $(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembedfactory_la_CPPFLAGS) $(CPPFLAGS) $(libephyembedfactory_la_CFLAGS) $(CFLAGS) -MT libephyembedfactory_la-ephy-embed-factory.lo -MD -MP -MF "$(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Tpo" -c -o libephyembedfactory_la-ephy-embed-factory.lo `test -f 'ephy-embed-factory.c' || echo '$(srcdir)/'`ephy-embed-factory.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Tpo" "$(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Plo"; else rm -f "$(DEPDIR)/libephyembedfactory_la-ephy-embed-factory.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-embed-factory.c' object='libephyembedfactory_la-ephy-embed-factory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembedfactory_la_CPPFLAGS) $(CPPFLAGS) $(libephyembedfactory_la_CFLAGS) $(CFLAGS) -c -o libephyembedfactory_la-ephy-embed-factory.lo `test -f 'ephy-embed-factory.c' || echo '$(srcdir)/'`ephy-embed-factory.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephyembedfactory_la_CPPFLAGS) $(CPPFLAGS) $(libephyembedfactory_la_CFLAGS) $(CFLAGS) -c -o libephyembedfactory_la-ephy-embed-factory.lo `test -f 'ephy-embed-factory.c' || echo '$(srcdir)/'`ephy-embed-factory.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-headerDATA: $(header_DATA) @$(NORMAL_INSTALL) - test -z "$(headerdir)" || $(MKDIR_P) "$(DESTDIR)$(headerdir)" + test -z "$(headerdir)" || $(mkdir_p) "$(DESTDIR)$(headerdir)" @list='$(header_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -789,7 +836,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -833,8 +881,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -859,8 +907,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -870,12 +918,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -889,21 +938,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -917,7 +967,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -925,8 +975,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -938,7 +986,7 @@ installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(headerdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive @@ -978,7 +1026,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -992,20 +1040,12 @@ install-data-am: install-headerDATA -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -1026,26 +1066,24 @@ ps-am: -uninstall-am: uninstall-headerDATA +uninstall-am: uninstall-headerDATA uninstall-info-am -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - clean-noinstLTLIBRARIES ctags ctags-recursive distclean \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-noinstLTLIBRARIES \ + clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-headerDATA \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am \ - uninstall-headerDATA + 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-headerDATA 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-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-headerDATA uninstall-info-am ephy-embed-type-builtins.c: stamp-ephy-embed-type-builtins.c Makefile --- epiphany-browser-2.22.0.orig/config.h.in +++ epiphany-browser-2.22.0/config.h.in @@ -51,6 +51,9 @@ /* Define if gecko is a debug build */ #undef HAVE_GECKO_DEBUG +/* Define if xpcom glue is used */ +#undef HAVE_GECKO_XPCOM_GLUE + /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT --- epiphany-browser-2.22.0.orig/mkinstalldirs +++ epiphany-browser-2.22.0/mkinstalldirs @@ -1,7 +1,7 @@ #! /bin/sh # mkinstalldirs --- make directory hierarchy -scriptversion=2006-05-11.19 +scriptversion=2005-06-29.22 # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 @@ -11,9 +11,6 @@ # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@gnu.org>. -nl=' -' -IFS=" "" $nl" errstatus=0 dirmode= --- epiphany-browser-2.22.0.orig/m4/gecko.m4 +++ epiphany-browser-2.22.0/m4/gecko.m4 @@ -32,6 +32,7 @@ # VARIABLE: Which gecko was found (e.g. "xulrunnner", "seamonkey", ...) # VARIABLE_FLAVOUR: The flavour of the gecko that was found # VARIABLE_HOME: +# VARIABLE_NSPR: set if nspr is provided by gecko flags # VARIABLE_PREFIX: # VARIABLE_INCLUDE_ROOT: # VARIABLE_VERSION: The version of the gecko that was found @@ -51,7 +52,7 @@ AC_MSG_CHECKING([which gecko to use]) AC_ARG_WITH([gecko], - AS_HELP_STRING([--with-gecko@<:@=mozilla|firefox|seamonkey|xulrunner@:>@], + AS_HELP_STRING([--with-gecko@<:@=mozilla|firefox|seamonkey|xulrunner|libxul-embedding|libxul@:>@], [Which gecko engine to use (autodetected by default)])) # Backward compat @@ -60,12 +61,15 @@ gecko_cv_gecko=$with_gecko # Autodetect gecko -_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla" +_geckos="xulrunner firefox mozilla-firefox seamonkey mozilla libxul-embedding libxul" if test -z "$gecko_cv_gecko"; then for lizard in $_geckos; do if $PKG_CONFIG --exists $lizard-xpcom; then gecko_cv_gecko=$lizard break; + elif $PKG_CONFIG --exists $lizard-unstable; then + gecko_cv_gecko=$lizard + break; fi done fi @@ -82,6 +86,14 @@ gecko_cv_have_gecko=yes fi +AC_MSG_CHECKING([manual gecko home set]) + +AC_ARG_WITH([gecko-home], + AS_HELP_STRING([--with-gecko-home@<:@=[path]@:>@], + [Manually set MOZILLA_FIVE_HOME])) + +gecko_cv_gecko_home=$with_gecko_home + # **************** # Define variables # **************** @@ -93,13 +105,24 @@ seamonkey) gecko_cv_gecko_flavour=mozilla ;; *firefox) gecko_cv_gecko_flavour=toolkit ;; xulrunner) gecko_cv_gecko_flavour=toolkit ;; +libxul*) gecko_cv_gecko_flavour=toolkit ;; esac -_GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" -_GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" -_GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" -_GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" - +if $PKG_CONFIG --exists ${gecko_cv_gecko}-xpcom; then + _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}-xpcom`" + _GECKO_CFLAGS="-I$_GECKO_INCLUDE_ROOT" + _GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" + _GECKO_HOME="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" + _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}-xpcom`" + _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test +else + _GECKO_INCLUDE_ROOT="`$PKG_CONFIG --variable=includedir ${gecko_cv_gecko}`/unstable" + _GECKO_CFLAGS="`$PKG_CONFIG --cflags ${gecko_cv_gecko}` `$PKG_CONFIG --cflags ${gecko_cv_gecko}-unstable`" + _GECKO_LIBDIR="`$PKG_CONFIG --variable=sdkdir ${gecko_cv_gecko}`/bin" + _GECKO_HOME=$with_gecko_home + _GECKO_PREFIX="`$PKG_CONFIG --variable=prefix ${gecko_cv_gecko}`" + _GECKO_NSPR=no # XXX asac: this is currently a blind guess and should be a AC test +fi fi # if gecko_cv_have_gecko if test "$gecko_cv_gecko_flavour" = "toolkit"; then @@ -109,9 +132,11 @@ $1[]=$gecko_cv_gecko $1[]_FLAVOUR=$gecko_cv_gecko_flavour $1[]_INCLUDE_ROOT=$_GECKO_INCLUDE_ROOT +$1[]_CFLAGS=$_GECKO_CFLAGS $1[]_LIBDIR=$_GECKO_LIBDIR $1[]_HOME=$_GECKO_HOME $1[]_PREFIX=$_GECKO_PREFIX +$1[]_NSPR=$_GECKO_NSPR # ************************************************************** # This is really gcc-only @@ -182,7 +207,7 @@ AC_LANG_PUSH([C++]) _SAVE_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT" +CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS" AC_MSG_CHECKING([[whether we have a gtk 2 gecko build]]) AC_RUN_IFELSE( @@ -215,6 +240,18 @@ [gecko_cv_have_debug=no]) AC_MSG_RESULT([$gecko_cv_have_debug]) +AC_MSG_CHECKING([[whether we have a xpcom glue]]) +AC_COMPILE_IFELSE( + [AC_LANG_SOURCE( + [[ + #ifndef XPCOM_GLUE + #error "no xpcom glue found" + #endif]] + )], + [gecko_cv_have_xpcom_glue=yes], + [gecko_cv_have_xpcom_glue=no]) +AC_MSG_RESULT([$gecko_cv_have_xpcom_glue]) + CPPFLAGS="$_SAVE_CPPFLAGS" AC_LANG_POP([C++]) @@ -226,8 +263,14 @@ AC_DEFINE([HAVE_GECKO_DEBUG],[1],[Define if gecko is a debug build]) fi +if test "$gecko_cv_have_xpcom_glue" = "yes"; then + AC_DEFINE([HAVE_GECKO_XPCOM_GLUE],[1],[Define if xpcom glue is used]) +fi + fi # if gecko_cv_have_gecko +AM_CONDITIONAL([HAVE_GECKO_DEBUG],[test "$gecko_cv_have_debug" = "yes"]) +AM_CONDITIONAL([HAVE_GECKO_XPCOM_GLUE],[test "$gecko_cv_have_xpcom_glue" = "yes"]) # *********************** # Check for gecko version @@ -238,7 +281,7 @@ AC_LANG_PUSH([C++]) _SAVE_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT" +CPPFLAGS="$CPPFLAGS $_GECKO_CFLAGS" AC_CACHE_CHECK([for gecko version], [gecko_cv_gecko_version], @@ -320,8 +363,11 @@ gecko_cv_extra_pkg_dependencies= if test "$gecko_cv_gecko_version_int" -ge "1009000"; then - gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" - gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue_s" + if ! test "$gecko_cv_have_xpcom_glue" = "yes"; then + gecko_cv_extra_libs="-L$_GECKO_LIBDIR -lxul" + else + gecko_cv_glue_libs="-L$_GECKO_LIBDIR -lxpcomglue" + fi else gecko_cv_extra_pkg_dependencies="${gecko_cv_gecko}-gtkmozembed" fi @@ -350,6 +396,7 @@ AM_CONDITIONAL([HAVE_GECKO_1_8],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008000"]) AM_CONDITIONAL([HAVE_GECKO_1_8_1],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1008001"]) AM_CONDITIONAL([HAVE_GECKO_1_9],[test "$gecko_cv_have_gecko" = "yes" -a "$gecko_cv_gecko_version_int" -ge "1009000"]) +AM_CONDITIONAL([HAVE_GECKO_HOME],[test "x$_GECKO_HOME" != "x"]) ]) # *************************************************************************** @@ -371,10 +418,20 @@ _SAVE_CXXFLAGS="$CXXFLAGS" _SAVE_LDFLAGS="$LDFLAGS" _SAVE_LIBS="$LIBS" -CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS -I$_GECKO_INCLUDE_ROOT $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" -CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" -LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" -LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +if test "${gecko_cv_gecko}" = "libxul-embedding" -o "${gecko_cv_gecko}" = "libxul"; then + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-unstable)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-unstable)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}) -ldl" +else + CPPFLAGS="$CPPFLAGS $_GECKO_EXTRA_CPPFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-I ${gecko_cv_gecko}-xpcom)" + CXXFLAGS="$CXXFLAGS $_GECKO_EXTRA_CXXFLAGS $_GECKO_CFLAGS $($PKG_CONFIG --cflags-only-other ${gecko_cv_gecko}-xpcom)" + LIBS="$LIBS $($PKG_CONFIG --libs ${gecko_cv_gecko}-xpcom)" +fi +if test -n "$_GECKO_HOME"; then + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS -Wl,--rpath=$_GECKO_HOME" +else + LDFLAGS="$LDFLAGS $_GECKO_EXTRA_LDFLAGS" +fi _GECKO_DISPATCH_INCLUDEDIRS="$2" @@ -383,9 +440,11 @@ # Mind you, it's useful to be able to test against uninstalled mozilla builds... _GECKO_DISPATCH_INCLUDEDIRS="$_GECKO_DISPATCH_INCLUDEDIRS dom necko pref" -# Now add them to CPPFLAGS +# Now add them to CPPFLAGS - asac: well ... not anymore since 1.9 -> test whether they exist before adding. for i in $_GECKO_DISPATCH_INCLUDEDIRS; do - CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + if test -d "$_GECKO_INCLUDE_ROOT/$i"; then + CPPFLAGS="$CPPFLAGS -I$_GECKO_INCLUDE_ROOT/$i" + fi done m4_indir([$1],m4_shiftn(2,$@)) @@ -438,11 +497,17 @@ #include <mozilla-config.h> #include <stdlib.h> #include <stdio.h> + +#ifdef XPCOM_GLUE +#include <nsXPCOMGlue.h> +#else #include <nsXPCOM.h> +#endif // XPCOM_GLUE + #include <nsCOMPtr.h> #include <nsILocalFile.h> #include <nsIServiceManager.h> -#ifdef HAVE_GECKO_1_8 +#if defined(HAVE_GECKO_1_8) || defined(HAVE_GECKO_1_9) #include <nsStringAPI.h> #else #include <nsString.h> @@ -450,16 +515,37 @@ ]] [$1], [[ + +nsresult rv; +#ifdef XPCOM_GLUE + static const GREVersionRange greVersion = { + "1.8", PR_TRUE, + "1.9.*", PR_TRUE + }; + char xpcomLocation[4096]; + rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0, xpcomLocation, 4096); + if (NS_FAILED(rv)) { + exit(123); + } + + // Startup the XPCOM Glue that links us up with XPCOM. + XPCOMGlueStartup(xpcomLocation); + if (NS_FAILED(rv)) { + exit(124); + } +#endif // XPCOM_GLUE + // redirect unwanted mozilla debug output to the bit bucket freopen ("/dev/null", "w", stdout); -nsresult rv; -nsCOMPtr<nsILocalFile> directory; +nsCOMPtr<nsILocalFile> directory = nsnull; +#ifndef XPCOM_GLUE rv = NS_NewNativeLocalFile (NS_LITERAL_CSTRING("$_GECKO_HOME"), PR_FALSE, getter_AddRefs (directory)); if (NS_FAILED (rv) || !directory) { exit (126); } +#endif rv = NS_InitXPCOM2 (nsnull, directory, nsnull); if (NS_FAILED (rv)) { @@ -607,21 +693,22 @@ AC_DEFUN([GECKO_XPIDL], [AC_REQUIRE([GECKO_INIT])dnl -_GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" +if test ${gecko_cv_gecko} = "libxul-embedding" -o ${gecko_cv_gecko} = "libxul"; then + _GECKO_LIBDIR="`$PKG_CONFIG pkg-config --variable=sdkdir ${gecko_cv_gecko}`/bin" +else + _GECKO_LIBDIR="`$PKG_CONFIG --variable=libdir ${gecko_cv_gecko}-xpcom`" +fi AC_PATH_PROG([XPIDL],[xpidl],[no],[$_GECKO_LIBDIR:$PATH]) +if test ${gecko_cv_gecko} = "libxul-embedding" -o ${gecko_cv_gecko} = "libxul"; then +XPIDL_IDLDIR="`$PKG_CONFIG --variable=idldir ${gecko_cv_gecko}`" +else XPIDL_IDLDIR="`$PKG_CONFIG --variable=idldir ${gecko_cv_gecko}-xpcom`" - -# Older geckos don't have this variable, see -# https://bugzilla.mozilla.org/show_bug.cgi?id=240473 - if test -z "$XPIDL_IDLDIR" -o ! -f "$XPIDL_IDLDIR/nsISupports.idl"; then XPIDL_IDLDIR="`echo $_GECKO_LIBDIR | sed -e s!lib!share/idl!`" fi - # Some distributions (Gentoo) have it in unusual places - if test -z "$XPIDL_IDLDIR" -o ! -f "$XPIDL_IDLDIR/nsISupports.idl"; then XPIDL_IDLDIR="$_GECKO_INCLUDE_ROOT/idl" fi --- epiphany-browser-2.22.0.orig/aclocal.m4 +++ epiphany-browser-2.22.0/aclocal.m4 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,14 +11,6 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(AC_AUTOCONF_VERSION, [2.61],, -[m4_warning([this file was generated for autoconf 2.61. -You have another version of autoconf. It may work, but is not guaranteed to. -If you have problems, you may need to regenerate the build system entirely. -To do so, use the procedure documented by the package, typically `autoreconf'.])]) - dnl AM_GCONF_SOURCE_2 dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas dnl (i.e. pass to gconftool-2 @@ -7492,7 +7484,7 @@ fi[]dnl ])# PKG_CHECK_MODULES -# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. +# 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, @@ -7502,31 +7494,14 @@ # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. -# (This private macro should not be called outside this file.) -AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' -dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to -dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10.1], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) - -# _AM_AUTOCONF_VERSION(VERSION) -# ----------------------------- -# aclocal traces this macro to find the Autoconf version. -# This is a private macro too. Using m4_define simplifies -# the logic in aclocal, which can simply ignore this definition. -m4_define([_AM_AUTOCONF_VERSION], []) +AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# 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.10.1])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) + [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- @@ -7606,14 +7581,14 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# 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 8 +# serial 7 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- @@ -7622,10 +7597,8 @@ [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE])dnl -AC_SUBST([$1_FALSE])dnl -_AM_SUBST_NOTMAKE([$1_TRUE])dnl -_AM_SUBST_NOTMAKE([$1_FALSE])dnl +AC_SUBST([$1_TRUE]) +AC_SUBST([$1_FALSE]) if $2; then $1_TRUE= $1_FALSE='#' @@ -7639,14 +7612,15 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + +# 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 9 +# 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, @@ -7674,7 +7648,6 @@ ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) @@ -7740,7 +7713,6 @@ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then @@ -7793,8 +7765,7 @@ AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([AMDEPBACKSLASH]) ]) # Generate code to set up dependency tracking. -*- Autoconf -*- @@ -7819,9 +7790,8 @@ # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + # So let's grep whole file. + if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue @@ -7868,14 +7838,14 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008 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. -# serial 13 +# 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. @@ -7892,20 +7862,16 @@ # 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.60])dnl +[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 -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) - fi +# 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 @@ -7925,9 +7891,6 @@ AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl -dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. -m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, - [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl @@ -7963,10 +7926,6 @@ [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) @@ -7980,17 +7939,16 @@ # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. -_am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in - $_am_arg | $_am_arg:* ) + $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) +echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # @@ -8003,7 +7961,7 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. @@ -8110,14 +8068,14 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 +# 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. -# serial 5 +# serial 4 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ @@ -8133,7 +8091,6 @@ # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([missing])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then @@ -8144,7 +8101,7 @@ fi ]) -# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 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, @@ -8152,23 +8109,60 @@ # AM_PROG_MKDIR_P # --------------- -# Check for `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], -[AC_PREREQ([2.60])dnl -AC_REQUIRE([AC_PROG_MKDIR_P])dnl -dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, -dnl while keeping a definition of mkdir_p for backward compatibility. -dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. -dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of -dnl Makefile.ins that do not define MKDIR_P, so we do our own -dnl adjustment using top_builddir (which is defined more often than -dnl MKDIR_P). -AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl -case $mkdir_p in - [[\\/$]]* | ?:[[\\/]]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac -]) +[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 +AC_SUBST([mkdir_p])]) # Helper functions for option handling. -*- Autoconf -*- @@ -8461,21 +8455,9 @@ if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) - # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. --- epiphany-browser-2.22.0.orig/doc/reference/Makefile.in +++ epiphany-browser-2.22.0/doc/reference/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +13,15 @@ # PARTICULAR PURPOSE. @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -66,6 +70,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -109,6 +115,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -120,6 +142,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -138,9 +162,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -187,8 +238,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -241,14 +293,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -260,7 +318,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -292,11 +349,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ # The name of the module @@ -533,6 +587,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -541,21 +599,22 @@ distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -605,7 +664,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -619,20 +678,12 @@ install-data-am: install-data-local -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -652,22 +703,19 @@ ps-am: -uninstall-am: uninstall-local - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ clean-libtool clean-local dist-hook distclean \ distclean-generic distclean-libtool distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-local + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-local @ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp --- epiphany-browser-2.22.0.orig/doc/Makefile.in +++ epiphany-browser-2.22.0/doc/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +13,15 @@ # PARTICULAR PURPOSE. @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -48,17 +52,14 @@ DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive + 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)" NROFF = nroff MANS = $(man_MANS) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -66,6 +67,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -109,6 +112,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -120,6 +139,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -138,9 +159,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -187,8 +235,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -241,14 +290,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -260,7 +315,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -292,11 +346,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = reference NULL = @@ -345,9 +396,13 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-man1: $(man1_MANS) $(man_MANS) @$(NORMAL_INSTALL) - test -z "$(man1dir)" || $(MKDIR_P) "$(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 \ @@ -422,7 +477,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -466,8 +522,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -492,8 +548,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -503,12 +559,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -522,21 +579,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -550,7 +608,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -558,8 +616,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -570,7 +626,7 @@ installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man1dir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive @@ -602,7 +658,8 @@ distclean: distclean-recursive -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags +distclean-am: clean-am distclean-generic distclean-libtool \ + distclean-tags dvi: dvi-recursive @@ -616,20 +673,12 @@ install-data-am: install-man -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: install-man1 -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -648,27 +697,25 @@ ps-am: -uninstall-am: uninstall-man +uninstall-am: uninstall-info-am uninstall-man -uninstall-man: uninstall-man1 +uninstall-info: uninstall-info-recursive -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-man: uninstall-man1 -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ + ctags-recursive distclean distclean-generic distclean-libtool \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-man1 install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ + install-data-am install-exec 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 mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am uninstall-man \ - uninstall-man1 + maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ + uninstall-man uninstall-man1 # 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. --- epiphany-browser-2.22.0.orig/install-sh +++ epiphany-browser-2.22.0/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2006-12-25.00 +scriptversion=2005-05-14.22 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -39,68 +39,38 @@ # when there is no Makefile. # # This script is compatible with the BSD install script, but was written -# from scratch. - -nl=' -' -IFS=" "" $nl" +# from scratch. It can only install one file at a time, a restriction +# shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. -doit=${DOITPROG-} -if test -z "$doit"; then - doit_exec=exec -else - doit_exec=$doit -fi +doit="${DOITPROG-}" -# Put in absolute file names if you don't have them in your path; -# or use environment vars. +# put in absolute paths if you don't have them in your path; or use env. vars. -chgrpprog=${CHGRPPROG-chgrp} -chmodprog=${CHMODPROG-chmod} -chownprog=${CHOWNPROG-chown} -cmpprog=${CMPPROG-cmp} -cpprog=${CPPROG-cp} -mkdirprog=${MKDIRPROG-mkdir} -mvprog=${MVPROG-mv} -rmprog=${RMPROG-rm} -stripprog=${STRIPPROG-strip} - -posix_glob='?' -initialize_posix_glob=' - test "$posix_glob" != "?" || { - if (set -f) 2>/dev/null; then - posix_glob= - else - posix_glob=: - fi - } -' +mvprog="${MVPROG-mv}" +cpprog="${CPPROG-cp}" +chmodprog="${CHMODPROG-chmod}" +chownprog="${CHOWNPROG-chown}" +chgrpprog="${CHGRPPROG-chgrp}" +stripprog="${STRIPPROG-strip}" +rmprog="${RMPROG-rm}" +mkdirprog="${MKDIRPROG-mkdir}" -posix_mkdir= - -# Desired mode of installed file. -mode=0755 - -chgrpcmd= -chmodcmd=$chmodprog +chmodcmd="$chmodprog 0755" chowncmd= -mvcmd=$mvprog -rmcmd="$rmprog -f" +chgrpcmd= stripcmd= - +rmcmd="$rmprog -f" +mvcmd="$mvprog" src= dst= dir_arg= -dst_arg= - -copy_on_change=false +dstarg= no_target_directory= -usage="\ -Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE +usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... @@ -110,86 +80,81 @@ In the 4th, create DIRECTORIES. Options: - --help display this help and exit. - --version display version info and exit. - - -c (ignored) - -C install only if different (preserve the last data modification time) - -d create directories instead of installing files. - -g GROUP $chgrpprog installed files to GROUP. - -m MODE $chmodprog installed files to MODE. - -o USER $chownprog installed files to USER. - -s $stripprog installed files. - -t DIRECTORY install into DIRECTORY. - -T report an error if DSTFILE is a directory. +-c (ignored) +-d create directories instead of installing files. +-g GROUP $chgrpprog installed files to GROUP. +-m MODE $chmodprog installed files to MODE. +-o USER $chownprog installed files to USER. +-s $stripprog installed files. +-t DIRECTORY install into DIRECTORY. +-T report an error if DSTFILE is a directory. +--help display this help and exit. +--version display version info and exit. Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG - RMPROG STRIPPROG + CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " -while test $# -ne 0; do +while test -n "$1"; do case $1 in - -c) ;; + -c) shift + continue;; - -C) copy_on_change=true;; - - -d) dir_arg=true;; + -d) dir_arg=true + shift + continue;; -g) chgrpcmd="$chgrpprog $2" - shift;; + shift + shift + continue;; --help) echo "$usage"; exit $?;; - -m) mode=$2 - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; + -m) chmodcmd="$chmodprog $2" + shift + shift + continue;; -o) chowncmd="$chownprog $2" - shift;; - - -s) stripcmd=$stripprog;; - - -t) dst_arg=$2 - shift;; - - -T) no_target_directory=true;; + shift + shift + continue;; + + -s) stripcmd=$stripprog + shift + continue;; + + -t) dstarg=$2 + shift + shift + continue;; + + -T) no_target_directory=true + shift + continue;; --version) echo "$0 $scriptversion"; exit $?;; - --) shift + *) # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + test -n "$dir_arg$dstarg" && break + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dstarg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dstarg" + shift # fnord + fi + shift # arg + dstarg=$arg + done break;; - - -*) echo "$0: invalid option: $1" >&2 - exit 1;; - - *) break;; esac - shift done -if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then - # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dst_arg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dst_arg" - shift # fnord - fi - shift # arg - dst_arg=$arg - done -fi - -if test $# -eq 0; then +if test -z "$1"; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 @@ -199,47 +164,24 @@ exit 0 fi -if test -z "$dir_arg"; then - trap '(exit $?); exit' 1 2 13 15 - - # Set umask so as not to create temps with too-generous modes. - # However, 'strip' requires both read and write access to temps. - case $mode in - # Optimize common cases. - *644) cp_umask=133;; - *755) cp_umask=22;; - - *[0-7]) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw='% 200' - fi - cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; - *) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw=,u+rw - fi - cp_umask=$mode$u_plus_rw;; - esac -fi - for src do # Protect names starting with `-'. case $src in - -*) src=./$src;; + -*) src=./$src ;; esac if test -n "$dir_arg"; then dst=$src - dstdir=$dst - test -d "$dstdir" - dstdir_status=$? - else + src= + if test -d "$dst"; then + mkdircmd=: + chmodcmd= + else + mkdircmd=$mkdirprog + fi + else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. @@ -248,199 +190,71 @@ exit 1 fi - if test -z "$dst_arg"; then + if test -z "$dstarg"; then echo "$0: no destination specified." >&2 exit 1 fi - dst=$dst_arg + dst=$dstarg # Protect names starting with `-'. case $dst in - -*) dst=./$dst;; + -*) dst=./$dst ;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then - echo "$0: $dst_arg: Is a directory" >&2 + echo "$0: $dstarg: Is a directory" >&2 exit 1 fi - dstdir=$dst - dst=$dstdir/`basename "$src"` - dstdir_status=0 - else - # Prefer dirname, but fall back on a substitute if dirname fails. - dstdir=` - (dirname "$dst") 2>/dev/null || - expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$dst" : 'X\(//\)[^/]' \| \ - X"$dst" : 'X\(//\)$' \| \ - X"$dst" : 'X\(/\)' \| . 2>/dev/null || - echo X"$dst" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q' - ` - - test -d "$dstdir" - dstdir_status=$? + dst=$dst/`basename "$src"` fi fi - obsolete_mkdir_used=false - - if test $dstdir_status != 0; then - case $posix_mkdir in - '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writeable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; - esac + # This sed command emulates the dirname command. + dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` - if - $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" - ) - then : - else + # Make sure that the destination directory exists. - # The umask is ridiculous, or mkdir does not conform to POSIX, - # or it failed possibly due to a race condition. Create the - # directory the slow way, step by step, checking for races as we go. - - case $dstdir in - /*) prefix='/';; - -*) prefix='./';; - *) prefix='';; - esac - - eval "$initialize_posix_glob" - - oIFS=$IFS - IFS=/ - $posix_glob set -f - set fnord $dstdir - shift - $posix_glob set +f - IFS=$oIFS + # Skip lots of stat calls in the usual case. + if test ! -d "$dstdir"; then + defaultIFS=' + ' + IFS="${IFS-$defaultIFS}" + + oIFS=$IFS + # Some sh's can't handle IFS=/ for some reason. + IFS='%' + set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` + shift + IFS=$oIFS - prefixes= + pathcomp= - for d - do - test -z "$d" && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ - done - - if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true + while test $# -ne 0 ; do + pathcomp=$pathcomp$1 + shift + if test ! -d "$pathcomp"; then + $mkdirprog "$pathcomp" + # mkdir can fail with a `File exist' error in case several + # install-sh are creating the directory concurrently. This + # is OK. + test -d "$pathcomp" || exit fi - fi + pathcomp=$pathcomp/ + done fi if test -n "$dir_arg"; then - { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && - { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || - test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + $doit $mkdircmd "$dst" \ + && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } + else + dstfile=`basename "$dst"` # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ @@ -448,9 +262,10 @@ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + trap '(exit $?); exit' 1 2 13 15 # Copy the file name to the temp name. - (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + $doit $cpprog "$src" "$dsttmp" && # and set any options; do chmod last to preserve setuid bits. # @@ -458,59 +273,48 @@ # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && - { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && - { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && - - # If -C, don't bother to copy if it wouldn't change the file. - if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - - eval "$initialize_posix_glob" && - $posix_glob set -f && - set X $old && old=:$2:$4:$5:$6 && - set X $new && new=:$2:$4:$5:$6 && - $posix_glob set +f && - - test "$old" = "$new" && - $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 - then - rm -f "$dsttmp" - else - # Rename the file to the real destination. - $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || - - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" - } - fi || exit 1 - - trap '' 0 - fi + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && + + # Now rename the file to the real destination. + { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ + || { + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + if test -f "$dstdir/$dstfile"; then + $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ + || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ + || { + echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 + (exit 1); exit 1 + } + else + : + fi + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" + } + } + fi || { (exit 1); exit 1; } done +# The final little trick to "correctly" pass the exit status to the exit trap. +{ + (exit 0); exit 0 +} + # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" --- epiphany-browser-2.22.0.orig/depcomp +++ epiphany-browser-2.22.0/depcomp @@ -1,10 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2007-03-29.01 +scriptversion=2005-07-09.11 -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software -# Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005 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 @@ -92,20 +91,7 @@ ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. -## Unfortunately, FreeBSD c89 acceptance of flags depends upon -## the command line argument order; so add the flags where they -## appear in depend2.am. Note that the slowdown incurred here -## affects only configure: in makefiles, %FASTDEP% shortcuts this. - for arg - do - case $arg in - -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; - *) set fnord "$@" "$arg" ;; - esac - shift # fnord - shift # $arg - done - "$@" + "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else @@ -215,39 +201,34 @@ # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` + tmpdepfile="$stripped.u" if test "$libtool" = yes; then - tmpdepfile1=$dir$base.u - tmpdepfile2=$base.u - tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else - tmpdepfile1=$dir$base.u - tmpdepfile2=$dir$base.u - tmpdepfile3=$dir$base.u "$@" -M fi stat=$? + if test -f "$tmpdepfile"; then : + else + stripped=`echo "$stripped" | sed 's,^.*/,,'` + tmpdepfile="$stripped.u" + fi + if test $stat -eq 0; then : else - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + rm -f "$tmpdepfile" exit $stat fi - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - do - test -f "$tmpdepfile" && break - done if test -f "$tmpdepfile"; then + outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - # That's a tab and a space in the []. - sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" + sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -295,46 +276,6 @@ rm -f "$tmpdepfile" ;; -hp2) - # The "hp" stanza above does not work with aCC (C++) and HP's ia64 - # compilers, which have integrated preprocessors. The correct option - # to use with these is +Maked; it writes dependencies to a file named - # 'foo.d', which lands next to the object file, wherever that - # happens to be. - # Much of this is similar to the tru64 case; see comments there. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir.libs/$base.d - "$@" -Wc,+Maked - else - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir$base.d - "$@" +Maked - fi - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" - do - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" - # Add `dependent.h:' lines. - sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" - else - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" "$tmpdepfile2" - ;; - tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. @@ -347,13 +288,13 @@ if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a - # static library. This mechanism is used in libtool 1.4 series to + # static library. This mecanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two - # compilations output dependencies in $dir.libs/$base.o.d and + # compilations output dependencies in in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is --- epiphany-browser-2.22.0.orig/Makefile.in +++ epiphany-browser-2.22.0/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +13,15 @@ # PARTICULAR PURPOSE. @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -31,12 +35,12 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure AUTHORS COPYING ChangeLog NEWS TODO \ - config.guess config.sub depcomp install-sh ltmain.sh missing \ - mkinstalldirs + compile config.guess config.sub depcomp install-sh ltmain.sh \ + missing mkinstalldirs +subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gecko.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 \ @@ -46,7 +50,7 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno + configure.lineno configure.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = @@ -54,13 +58,10 @@ DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive + 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) @@ -81,6 +82,8 @@ #endif ACLOCAL_AMFLAGS = -I m4 ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -124,6 +127,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -135,6 +154,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -153,9 +174,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -202,8 +250,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -256,14 +305,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -275,7 +330,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -307,11 +361,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = lib embed src plugins data po help doc NULL = @@ -392,7 +443,7 @@ config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ - $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ + $(MAKE) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @@ -414,6 +465,7 @@ distclean-libtool: -rm -f libtool +uninstall-info-am: # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -446,7 +498,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -490,8 +543,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -516,8 +569,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -527,12 +580,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -547,22 +601,24 @@ distdir: $(DISTFILES) $(am__remove_distdir) - test -d $(distdir) || mkdir $(distdir) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + mkdir $(distdir) + $(mkdir_p) $(distdir)/data $(distdir)/data/chrome $(distdir)/m4 $(distdir)/po $(distdir)/src + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -576,7 +632,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -584,8 +640,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -593,7 +647,7 @@ -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz @@ -602,10 +656,6 @@ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) -dist-lzma: distdir - tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma - $(am__remove_distdir) - dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) @@ -632,8 +682,6 @@ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ @@ -673,7 +721,7 @@ $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' + sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ @@ -744,20 +792,12 @@ install-data-am: -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -778,26 +818,24 @@ ps-am: -uninstall-am: +uninstall-am: uninstall-info-am -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am am--refresh check check-am clean clean-generic \ - clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ - dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \ - distclean distclean-generic distclean-hdr distclean-libtool \ - distclean-tags distcleancheck distdir distuninstallcheck dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ + check-am clean clean-generic clean-libtool clean-recursive \ + ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ + dist-shar dist-tarZ dist-zip distcheck distclean \ + distclean-generic distclean-hdr distclean-libtool \ + 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-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am # Build ChangeLog from SVN history (r7394 was the first ChangeLog-less checkin). --- epiphany-browser-2.22.0.orig/lib/widgets/Makefile.in +++ epiphany-browser-2.22.0/lib/widgets/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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,11 +14,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -58,22 +62,17 @@ libephywidgets_la-ephy-zoom-action.lo \ libephywidgets_la-ephy-zoom-control.lo libephywidgets_la_OBJECTS = $(am_libephywidgets_la_OBJECTS) -libephywidgets_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(libephywidgets_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephywidgets_la_SOURCES) DIST_SOURCES = $(libephywidgets_la_SOURCES) ETAGS = etags @@ -82,6 +81,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -125,6 +126,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -136,6 +153,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -154,9 +173,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -203,8 +249,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -257,14 +304,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -276,7 +329,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -308,11 +360,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ noinst_LTLIBRARIES = libephywidgets.la libephywidgets_la_SOURCES = \ @@ -391,7 +440,7 @@ rm -f "$${dir}/so_locations"; \ done libephywidgets.la: $(libephywidgets_la_OBJECTS) $(libephywidgets_la_DEPENDENCIES) - $(libephywidgets_la_LINK) $(libephywidgets_la_OBJECTS) $(libephywidgets_la_LIBADD) $(LIBS) + $(LINK) $(libephywidgets_la_LDFLAGS) $(libephywidgets_la_OBJECTS) $(libephywidgets_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -411,95 +460,95 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephywidgets_la-ephy-zoom-control.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephywidgets_la-ephy-icon-entry.lo: ephy-icon-entry.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-icon-entry.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-icon-entry.Tpo -c -o libephywidgets_la-ephy-icon-entry.lo `test -f 'ephy-icon-entry.c' || echo '$(srcdir)/'`ephy-icon-entry.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-icon-entry.Tpo $(DEPDIR)/libephywidgets_la-ephy-icon-entry.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-icon-entry.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-icon-entry.Tpo" -c -o libephywidgets_la-ephy-icon-entry.lo `test -f 'ephy-icon-entry.c' || echo '$(srcdir)/'`ephy-icon-entry.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-icon-entry.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-icon-entry.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-icon-entry.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-icon-entry.c' object='libephywidgets_la-ephy-icon-entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-icon-entry.lo `test -f 'ephy-icon-entry.c' || echo '$(srcdir)/'`ephy-icon-entry.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-icon-entry.lo `test -f 'ephy-icon-entry.c' || echo '$(srcdir)/'`ephy-icon-entry.c libephywidgets_la-ephy-location-entry.lo: ephy-location-entry.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-location-entry.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-location-entry.Tpo -c -o libephywidgets_la-ephy-location-entry.lo `test -f 'ephy-location-entry.c' || echo '$(srcdir)/'`ephy-location-entry.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-location-entry.Tpo $(DEPDIR)/libephywidgets_la-ephy-location-entry.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-location-entry.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-location-entry.Tpo" -c -o libephywidgets_la-ephy-location-entry.lo `test -f 'ephy-location-entry.c' || echo '$(srcdir)/'`ephy-location-entry.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-location-entry.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-location-entry.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-location-entry.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-location-entry.c' object='libephywidgets_la-ephy-location-entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-location-entry.lo `test -f 'ephy-location-entry.c' || echo '$(srcdir)/'`ephy-location-entry.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-location-entry.lo `test -f 'ephy-location-entry.c' || echo '$(srcdir)/'`ephy-location-entry.c libephywidgets_la-ephy-node-view.lo: ephy-node-view.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-node-view.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-node-view.Tpo -c -o libephywidgets_la-ephy-node-view.lo `test -f 'ephy-node-view.c' || echo '$(srcdir)/'`ephy-node-view.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-node-view.Tpo $(DEPDIR)/libephywidgets_la-ephy-node-view.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-node-view.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-node-view.Tpo" -c -o libephywidgets_la-ephy-node-view.lo `test -f 'ephy-node-view.c' || echo '$(srcdir)/'`ephy-node-view.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-node-view.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-node-view.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-node-view.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-node-view.c' object='libephywidgets_la-ephy-node-view.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-node-view.lo `test -f 'ephy-node-view.c' || echo '$(srcdir)/'`ephy-node-view.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-node-view.lo `test -f 'ephy-node-view.c' || echo '$(srcdir)/'`ephy-node-view.c libephywidgets_la-ephy-search-entry.lo: ephy-search-entry.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-search-entry.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-search-entry.Tpo -c -o libephywidgets_la-ephy-search-entry.lo `test -f 'ephy-search-entry.c' || echo '$(srcdir)/'`ephy-search-entry.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-search-entry.Tpo $(DEPDIR)/libephywidgets_la-ephy-search-entry.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-search-entry.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-search-entry.Tpo" -c -o libephywidgets_la-ephy-search-entry.lo `test -f 'ephy-search-entry.c' || echo '$(srcdir)/'`ephy-search-entry.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-search-entry.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-search-entry.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-search-entry.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-search-entry.c' object='libephywidgets_la-ephy-search-entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-search-entry.lo `test -f 'ephy-search-entry.c' || echo '$(srcdir)/'`ephy-search-entry.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-search-entry.lo `test -f 'ephy-search-entry.c' || echo '$(srcdir)/'`ephy-search-entry.c libephywidgets_la-ephy-spinner.lo: ephy-spinner.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-spinner.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-spinner.Tpo -c -o libephywidgets_la-ephy-spinner.lo `test -f 'ephy-spinner.c' || echo '$(srcdir)/'`ephy-spinner.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-spinner.Tpo $(DEPDIR)/libephywidgets_la-ephy-spinner.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-spinner.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-spinner.Tpo" -c -o libephywidgets_la-ephy-spinner.lo `test -f 'ephy-spinner.c' || echo '$(srcdir)/'`ephy-spinner.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-spinner.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-spinner.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-spinner.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-spinner.c' object='libephywidgets_la-ephy-spinner.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-spinner.lo `test -f 'ephy-spinner.c' || echo '$(srcdir)/'`ephy-spinner.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-spinner.lo `test -f 'ephy-spinner.c' || echo '$(srcdir)/'`ephy-spinner.c libephywidgets_la-ephy-spinner-tool-item.lo: ephy-spinner-tool-item.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-spinner-tool-item.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Tpo -c -o libephywidgets_la-ephy-spinner-tool-item.lo `test -f 'ephy-spinner-tool-item.c' || echo '$(srcdir)/'`ephy-spinner-tool-item.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Tpo $(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-spinner-tool-item.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Tpo" -c -o libephywidgets_la-ephy-spinner-tool-item.lo `test -f 'ephy-spinner-tool-item.c' || echo '$(srcdir)/'`ephy-spinner-tool-item.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-spinner-tool-item.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-spinner-tool-item.c' object='libephywidgets_la-ephy-spinner-tool-item.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-spinner-tool-item.lo `test -f 'ephy-spinner-tool-item.c' || echo '$(srcdir)/'`ephy-spinner-tool-item.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-spinner-tool-item.lo `test -f 'ephy-spinner-tool-item.c' || echo '$(srcdir)/'`ephy-spinner-tool-item.c libephywidgets_la-ephy-tree-model-node.lo: ephy-tree-model-node.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-tree-model-node.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Tpo -c -o libephywidgets_la-ephy-tree-model-node.lo `test -f 'ephy-tree-model-node.c' || echo '$(srcdir)/'`ephy-tree-model-node.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Tpo $(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-tree-model-node.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Tpo" -c -o libephywidgets_la-ephy-tree-model-node.lo `test -f 'ephy-tree-model-node.c' || echo '$(srcdir)/'`ephy-tree-model-node.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-tree-model-node.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-tree-model-node.c' object='libephywidgets_la-ephy-tree-model-node.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-tree-model-node.lo `test -f 'ephy-tree-model-node.c' || echo '$(srcdir)/'`ephy-tree-model-node.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-tree-model-node.lo `test -f 'ephy-tree-model-node.c' || echo '$(srcdir)/'`ephy-tree-model-node.c libephywidgets_la-ephy-tree-model-sort.lo: ephy-tree-model-sort.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-tree-model-sort.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Tpo -c -o libephywidgets_la-ephy-tree-model-sort.lo `test -f 'ephy-tree-model-sort.c' || echo '$(srcdir)/'`ephy-tree-model-sort.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Tpo $(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-tree-model-sort.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Tpo" -c -o libephywidgets_la-ephy-tree-model-sort.lo `test -f 'ephy-tree-model-sort.c' || echo '$(srcdir)/'`ephy-tree-model-sort.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-tree-model-sort.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-tree-model-sort.c' object='libephywidgets_la-ephy-tree-model-sort.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-tree-model-sort.lo `test -f 'ephy-tree-model-sort.c' || echo '$(srcdir)/'`ephy-tree-model-sort.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-tree-model-sort.lo `test -f 'ephy-tree-model-sort.c' || echo '$(srcdir)/'`ephy-tree-model-sort.c libephywidgets_la-ephy-zoom-action.lo: ephy-zoom-action.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-zoom-action.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-zoom-action.Tpo -c -o libephywidgets_la-ephy-zoom-action.lo `test -f 'ephy-zoom-action.c' || echo '$(srcdir)/'`ephy-zoom-action.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-zoom-action.Tpo $(DEPDIR)/libephywidgets_la-ephy-zoom-action.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-zoom-action.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-zoom-action.Tpo" -c -o libephywidgets_la-ephy-zoom-action.lo `test -f 'ephy-zoom-action.c' || echo '$(srcdir)/'`ephy-zoom-action.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-zoom-action.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-zoom-action.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-zoom-action.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-zoom-action.c' object='libephywidgets_la-ephy-zoom-action.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-zoom-action.lo `test -f 'ephy-zoom-action.c' || echo '$(srcdir)/'`ephy-zoom-action.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-zoom-action.lo `test -f 'ephy-zoom-action.c' || echo '$(srcdir)/'`ephy-zoom-action.c libephywidgets_la-ephy-zoom-control.lo: ephy-zoom-control.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-zoom-control.lo -MD -MP -MF $(DEPDIR)/libephywidgets_la-ephy-zoom-control.Tpo -c -o libephywidgets_la-ephy-zoom-control.lo `test -f 'ephy-zoom-control.c' || echo '$(srcdir)/'`ephy-zoom-control.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephywidgets_la-ephy-zoom-control.Tpo $(DEPDIR)/libephywidgets_la-ephy-zoom-control.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -MT libephywidgets_la-ephy-zoom-control.lo -MD -MP -MF "$(DEPDIR)/libephywidgets_la-ephy-zoom-control.Tpo" -c -o libephywidgets_la-ephy-zoom-control.lo `test -f 'ephy-zoom-control.c' || echo '$(srcdir)/'`ephy-zoom-control.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephywidgets_la-ephy-zoom-control.Tpo" "$(DEPDIR)/libephywidgets_la-ephy-zoom-control.Plo"; else rm -f "$(DEPDIR)/libephywidgets_la-ephy-zoom-control.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-zoom-control.c' object='libephywidgets_la-ephy-zoom-control.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-zoom-control.lo `test -f 'ephy-zoom-control.c' || echo '$(srcdir)/'`ephy-zoom-control.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephywidgets_la_CPPFLAGS) $(CPPFLAGS) $(libephywidgets_la_CFLAGS) $(CFLAGS) -c -o libephywidgets_la-ephy-zoom-control.lo `test -f 'ephy-zoom-control.c' || echo '$(srcdir)/'`ephy-zoom-control.c mostlyclean-libtool: -rm -f *.lo @@ -507,13 +556,17 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -525,8 +578,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -536,12 +589,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -555,21 +609,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -617,7 +672,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -631,20 +686,12 @@ install-data-am: -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -665,22 +712,19 @@ ps-am: -uninstall-am: - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am + 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. --- epiphany-browser-2.22.0.orig/lib/egg/Makefile.in +++ epiphany-browser-2.22.0/lib/egg/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -15,11 +15,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -61,21 +65,17 @@ nodist_libegg_la_OBJECTS = $(am__objects_3) libegg_la_OBJECTS = $(am_libegg_la_OBJECTS) \ $(nodist_libegg_la_OBJECTS) -libegg_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libegg_la_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libegg_la_SOURCES) $(nodist_libegg_la_SOURCES) DIST_SOURCES = $(libegg_la_SOURCES) HEADERS = $(noinst_HEADERS) @@ -85,6 +85,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -128,6 +130,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -139,6 +157,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -157,9 +177,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -206,8 +253,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -260,14 +308,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -279,7 +333,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -311,11 +364,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ EGGSOURCES = \ eggtreemultidnd.c \ @@ -416,7 +466,7 @@ rm -f "$${dir}/so_locations"; \ done libegg.la: $(libegg_la_OBJECTS) $(libegg_la_DEPENDENCIES) - $(libegg_la_LINK) $(libegg_la_OBJECTS) $(libegg_la_LIBADD) $(LIBS) + $(LINK) $(libegg_la_LDFLAGS) $(libegg_la_OBJECTS) $(libegg_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -433,74 +483,74 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libegg_la-eggtypebuiltins.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libegg_la-eggtreemultidnd.lo: eggtreemultidnd.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggtreemultidnd.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggtreemultidnd.Tpo -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-eggtreemultidnd.Tpo $(DEPDIR)/libegg_la-eggtreemultidnd.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggtreemultidnd.lo -MD -MP -MF "$(DEPDIR)/libegg_la-eggtreemultidnd.Tpo" -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-eggtreemultidnd.Tpo" "$(DEPDIR)/libegg_la-eggtreemultidnd.Plo"; else rm -f "$(DEPDIR)/libegg_la-eggtreemultidnd.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eggtreemultidnd.c' object='libegg_la-eggtreemultidnd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggtreemultidnd.lo `test -f 'eggtreemultidnd.c' || echo '$(srcdir)/'`eggtreemultidnd.c libegg_la-egg-editable-toolbar.lo: egg-editable-toolbar.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-editable-toolbar.lo -MD -MP -MF $(DEPDIR)/libegg_la-egg-editable-toolbar.Tpo -c -o libegg_la-egg-editable-toolbar.lo `test -f 'egg-editable-toolbar.c' || echo '$(srcdir)/'`egg-editable-toolbar.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-egg-editable-toolbar.Tpo $(DEPDIR)/libegg_la-egg-editable-toolbar.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-editable-toolbar.lo -MD -MP -MF "$(DEPDIR)/libegg_la-egg-editable-toolbar.Tpo" -c -o libegg_la-egg-editable-toolbar.lo `test -f 'egg-editable-toolbar.c' || echo '$(srcdir)/'`egg-editable-toolbar.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-egg-editable-toolbar.Tpo" "$(DEPDIR)/libegg_la-egg-editable-toolbar.Plo"; else rm -f "$(DEPDIR)/libegg_la-egg-editable-toolbar.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='egg-editable-toolbar.c' object='libegg_la-egg-editable-toolbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-editable-toolbar.lo `test -f 'egg-editable-toolbar.c' || echo '$(srcdir)/'`egg-editable-toolbar.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-editable-toolbar.lo `test -f 'egg-editable-toolbar.c' || echo '$(srcdir)/'`egg-editable-toolbar.c libegg_la-egg-toolbars-model.lo: egg-toolbars-model.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-toolbars-model.lo -MD -MP -MF $(DEPDIR)/libegg_la-egg-toolbars-model.Tpo -c -o libegg_la-egg-toolbars-model.lo `test -f 'egg-toolbars-model.c' || echo '$(srcdir)/'`egg-toolbars-model.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-egg-toolbars-model.Tpo $(DEPDIR)/libegg_la-egg-toolbars-model.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-toolbars-model.lo -MD -MP -MF "$(DEPDIR)/libegg_la-egg-toolbars-model.Tpo" -c -o libegg_la-egg-toolbars-model.lo `test -f 'egg-toolbars-model.c' || echo '$(srcdir)/'`egg-toolbars-model.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-egg-toolbars-model.Tpo" "$(DEPDIR)/libegg_la-egg-toolbars-model.Plo"; else rm -f "$(DEPDIR)/libegg_la-egg-toolbars-model.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='egg-toolbars-model.c' object='libegg_la-egg-toolbars-model.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-toolbars-model.lo `test -f 'egg-toolbars-model.c' || echo '$(srcdir)/'`egg-toolbars-model.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-toolbars-model.lo `test -f 'egg-toolbars-model.c' || echo '$(srcdir)/'`egg-toolbars-model.c libegg_la-egg-toolbar-editor.lo: egg-toolbar-editor.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-toolbar-editor.lo -MD -MP -MF $(DEPDIR)/libegg_la-egg-toolbar-editor.Tpo -c -o libegg_la-egg-toolbar-editor.lo `test -f 'egg-toolbar-editor.c' || echo '$(srcdir)/'`egg-toolbar-editor.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-egg-toolbar-editor.Tpo $(DEPDIR)/libegg_la-egg-toolbar-editor.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-egg-toolbar-editor.lo -MD -MP -MF "$(DEPDIR)/libegg_la-egg-toolbar-editor.Tpo" -c -o libegg_la-egg-toolbar-editor.lo `test -f 'egg-toolbar-editor.c' || echo '$(srcdir)/'`egg-toolbar-editor.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-egg-toolbar-editor.Tpo" "$(DEPDIR)/libegg_la-egg-toolbar-editor.Plo"; else rm -f "$(DEPDIR)/libegg_la-egg-toolbar-editor.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='egg-toolbar-editor.c' object='libegg_la-egg-toolbar-editor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-toolbar-editor.lo `test -f 'egg-toolbar-editor.c' || echo '$(srcdir)/'`egg-toolbar-editor.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-egg-toolbar-editor.lo `test -f 'egg-toolbar-editor.c' || echo '$(srcdir)/'`egg-toolbar-editor.c libegg_la-eel-app-launch-context.lo: eel-app-launch-context.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eel-app-launch-context.lo -MD -MP -MF $(DEPDIR)/libegg_la-eel-app-launch-context.Tpo -c -o libegg_la-eel-app-launch-context.lo `test -f 'eel-app-launch-context.c' || echo '$(srcdir)/'`eel-app-launch-context.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-eel-app-launch-context.Tpo $(DEPDIR)/libegg_la-eel-app-launch-context.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eel-app-launch-context.lo -MD -MP -MF "$(DEPDIR)/libegg_la-eel-app-launch-context.Tpo" -c -o libegg_la-eel-app-launch-context.lo `test -f 'eel-app-launch-context.c' || echo '$(srcdir)/'`eel-app-launch-context.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-eel-app-launch-context.Tpo" "$(DEPDIR)/libegg_la-eel-app-launch-context.Plo"; else rm -f "$(DEPDIR)/libegg_la-eel-app-launch-context.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eel-app-launch-context.c' object='libegg_la-eel-app-launch-context.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eel-app-launch-context.lo `test -f 'eel-app-launch-context.c' || echo '$(srcdir)/'`eel-app-launch-context.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eel-app-launch-context.lo `test -f 'eel-app-launch-context.c' || echo '$(srcdir)/'`eel-app-launch-context.c libegg_la-eggmarshalers.lo: eggmarshalers.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggmarshalers.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggmarshalers.Tpo -c -o libegg_la-eggmarshalers.lo `test -f 'eggmarshalers.c' || echo '$(srcdir)/'`eggmarshalers.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-eggmarshalers.Tpo $(DEPDIR)/libegg_la-eggmarshalers.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggmarshalers.lo -MD -MP -MF "$(DEPDIR)/libegg_la-eggmarshalers.Tpo" -c -o libegg_la-eggmarshalers.lo `test -f 'eggmarshalers.c' || echo '$(srcdir)/'`eggmarshalers.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-eggmarshalers.Tpo" "$(DEPDIR)/libegg_la-eggmarshalers.Plo"; else rm -f "$(DEPDIR)/libegg_la-eggmarshalers.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eggmarshalers.c' object='libegg_la-eggmarshalers.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggmarshalers.lo `test -f 'eggmarshalers.c' || echo '$(srcdir)/'`eggmarshalers.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggmarshalers.lo `test -f 'eggmarshalers.c' || echo '$(srcdir)/'`eggmarshalers.c libegg_la-eggtypebuiltins.lo: eggtypebuiltins.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggtypebuiltins.lo -MD -MP -MF $(DEPDIR)/libegg_la-eggtypebuiltins.Tpo -c -o libegg_la-eggtypebuiltins.lo `test -f 'eggtypebuiltins.c' || echo '$(srcdir)/'`eggtypebuiltins.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libegg_la-eggtypebuiltins.Tpo $(DEPDIR)/libegg_la-eggtypebuiltins.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -MT libegg_la-eggtypebuiltins.lo -MD -MP -MF "$(DEPDIR)/libegg_la-eggtypebuiltins.Tpo" -c -o libegg_la-eggtypebuiltins.lo `test -f 'eggtypebuiltins.c' || echo '$(srcdir)/'`eggtypebuiltins.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libegg_la-eggtypebuiltins.Tpo" "$(DEPDIR)/libegg_la-eggtypebuiltins.Plo"; else rm -f "$(DEPDIR)/libegg_la-eggtypebuiltins.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eggtypebuiltins.c' object='libegg_la-eggtypebuiltins.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggtypebuiltins.lo `test -f 'eggtypebuiltins.c' || echo '$(srcdir)/'`eggtypebuiltins.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libegg_la_CPPFLAGS) $(CPPFLAGS) $(libegg_la_CFLAGS) $(CFLAGS) -c -o libegg_la-eggtypebuiltins.lo `test -f 'eggtypebuiltins.c' || echo '$(srcdir)/'`eggtypebuiltins.c mostlyclean-libtool: -rm -f *.lo @@ -508,13 +558,17 @@ clean-libtool: -rm -rf .libs _libs +distclean-libtool: + -rm -f libtool +uninstall-info-am: + ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -526,8 +580,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -537,12 +591,13 @@ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -556,21 +611,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -624,7 +680,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -638,20 +694,12 @@ install-data-am: -install-dvi: install-dvi-am - install-exec-am: -install-html: install-html-am - install-info: install-info-am install-man: -install-pdf: install-pdf-am - -install-ps: install-ps-am - installcheck-am: maintainer-clean: maintainer-clean-am @@ -672,22 +720,19 @@ ps-am: -uninstall-am: - -.MAKE: install-am install-strip +uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am eggmarshalers.h: stamp-eggmarshalers.h --- epiphany-browser-2.22.0.orig/lib/Makefile.in +++ epiphany-browser-2.22.0/lib/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 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. @@ -15,11 +15,15 @@ @SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ 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 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c @@ -103,30 +107,25 @@ nodist_libephymisc_la_OBJECTS = $(am__objects_3) libephymisc_la_OBJECTS = $(am_libephymisc_la_OBJECTS) \ $(nodist_libephymisc_la_OBJECTS) -libephymisc_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libephymisc_la_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libephymisc_la_SOURCES) $(nodist_libephymisc_la_SOURCES) DIST_SOURCES = $(am__libephymisc_la_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -136,8 +135,6 @@ am__installdirs = "$(DESTDIR)$(headerdir)" headerDATA_INSTALL = $(INSTALL_DATA) DATA = $(header_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -145,6 +142,8 @@ ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AM_CFLAGS = @AM_CFLAGS@ AM_CPPFLAGS = @AM_CPPFLAGS@ @@ -188,6 +187,22 @@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ +ENABLE_DESKTOP_FILE_PLUGIN_FALSE = @ENABLE_DESKTOP_FILE_PLUGIN_FALSE@ +ENABLE_DESKTOP_FILE_PLUGIN_TRUE = @ENABLE_DESKTOP_FILE_PLUGIN_TRUE@ +ENABLE_FILEPICKER_FALSE = @ENABLE_FILEPICKER_FALSE@ +ENABLE_FILEPICKER_TRUE = @ENABLE_FILEPICKER_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +ENABLE_NETWORK_MANAGER_FALSE = @ENABLE_NETWORK_MANAGER_FALSE@ +ENABLE_NETWORK_MANAGER_TRUE = @ENABLE_NETWORK_MANAGER_TRUE@ +ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@ +ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@ +ENABLE_SK_FALSE = @ENABLE_SK_FALSE@ +ENABLE_SK_TRUE = @ENABLE_SK_TRUE@ +ENABLE_SPELLCHECKER_FALSE = @ENABLE_SPELLCHECKER_FALSE@ +ENABLE_SPELLCHECKER_TRUE = @ENABLE_SPELLCHECKER_TRUE@ +ENABLE_ZEROCONF_FALSE = @ENABLE_ZEROCONF_FALSE@ +ENABLE_ZEROCONF_TRUE = @ENABLE_ZEROCONF_TRUE@ EPIPHANY_API_VERSION = @EPIPHANY_API_VERSION@ EPIPHANY_FEATURES = @EPIPHANY_FEATURES@ EPIPHANY_MAJOR = @EPIPHANY_MAJOR@ @@ -199,6 +214,8 @@ F77 = @F77@ FFLAGS = @FFLAGS@ GCONFTOOL = @GCONFTOOL@ +GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@ +GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GECKO = @GECKO@ @@ -217,9 +234,36 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +HAVE_GECKO_1_7_FALSE = @HAVE_GECKO_1_7_FALSE@ +HAVE_GECKO_1_7_TRUE = @HAVE_GECKO_1_7_TRUE@ +HAVE_GECKO_1_8_1_FALSE = @HAVE_GECKO_1_8_1_FALSE@ +HAVE_GECKO_1_8_1_TRUE = @HAVE_GECKO_1_8_1_TRUE@ +HAVE_GECKO_1_8_FALSE = @HAVE_GECKO_1_8_FALSE@ +HAVE_GECKO_1_8_TRUE = @HAVE_GECKO_1_8_TRUE@ +HAVE_GECKO_1_9_FALSE = @HAVE_GECKO_1_9_FALSE@ +HAVE_GECKO_1_9_TRUE = @HAVE_GECKO_1_9_TRUE@ +HAVE_GECKO_DEBUG_FALSE = @HAVE_GECKO_DEBUG_FALSE@ +HAVE_GECKO_DEBUG_TRUE = @HAVE_GECKO_DEBUG_TRUE@ +HAVE_GECKO_HOME_FALSE = @HAVE_GECKO_HOME_FALSE@ +HAVE_GECKO_HOME_TRUE = @HAVE_GECKO_HOME_TRUE@ +HAVE_GECKO_XPCOM_GLUE_FALSE = @HAVE_GECKO_XPCOM_GLUE_FALSE@ +HAVE_GECKO_XPCOM_GLUE_TRUE = @HAVE_GECKO_XPCOM_GLUE_TRUE@ +HAVE_GNOME_DOC_UTILS_FALSE = @HAVE_GNOME_DOC_UTILS_FALSE@ +HAVE_GNOME_DOC_UTILS_TRUE = @HAVE_GNOME_DOC_UTILS_TRUE@ +HAVE_LIBXUL_DEBUG_FALSE = @HAVE_LIBXUL_DEBUG_FALSE@ +HAVE_LIBXUL_DEBUG_TRUE = @HAVE_LIBXUL_DEBUG_TRUE@ +HAVE_LIBXUL_FALSE = @HAVE_LIBXUL_FALSE@ +HAVE_LIBXUL_TRUE = @HAVE_LIBXUL_TRUE@ +HAVE_MOZILLA_PSM_FALSE = @HAVE_MOZILLA_PSM_FALSE@ +HAVE_MOZILLA_PSM_TRUE = @HAVE_MOZILLA_PSM_TRUE@ +HAVE_MOZILLA_TOOLKIT_FALSE = @HAVE_MOZILLA_TOOLKIT_FALSE@ +HAVE_MOZILLA_TOOLKIT_TRUE = @HAVE_MOZILLA_TOOLKIT_TRUE@ +HAVE_XULRUNNER_FALSE = @HAVE_XULRUNNER_FALSE@ +HAVE_XULRUNNER_TRUE = @HAVE_XULRUNNER_TRUE@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ -INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -266,8 +310,9 @@ LSB_RELEASE = @LSB_RELEASE@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ @@ -320,14 +365,20 @@ WEASEL_UA_VERSION = @WEASEL_UA_VERSION@ WEBKIT_CFLAGS = @WEBKIT_CFLAGS@ WEBKIT_LIBS = @WEBKIT_LIBS@ +WITH_GECKO_ENGINE_FALSE = @WITH_GECKO_ENGINE_FALSE@ +WITH_GECKO_ENGINE_TRUE = @WITH_GECKO_ENGINE_TRUE@ +WITH_WEBKIT_ENGINE_FALSE = @WITH_WEBKIT_ENGINE_FALSE@ +WITH_WEBKIT_ENGINE_TRUE = @WITH_WEBKIT_ENGINE_TRUE@ +WITH_XULRUNNER_ENGINE_FALSE = @WITH_XULRUNNER_ENGINE_FALSE@ +WITH_XULRUNNER_ENGINE_TRUE = @WITH_XULRUNNER_ENGINE_TRUE@ XGETTEXT = @XGETTEXT@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -339,7 +390,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -371,11 +421,8 @@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ with_engine = @with_engine@ SUBDIRS = widgets egg noinst_LTLIBRARIES = libephymisc.la @@ -504,7 +551,7 @@ rm -f "$${dir}/so_locations"; \ done libephymisc.la: $(libephymisc_la_OBJECTS) $(libephymisc_la_DEPENDENCIES) - $(libephymisc_la_LINK) $(libephymisc_la_OBJECTS) $(libephymisc_la_LIBADD) $(LIBS) + $(LINK) $(libephymisc_la_LDFLAGS) $(libephymisc_la_OBJECTS) $(libephymisc_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -540,216 +587,220 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymisc_la-ephy-zoom.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libephymisc_la-eel-gconf-extensions.lo: eel-gconf-extensions.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-eel-gconf-extensions.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-eel-gconf-extensions.Tpo -c -o libephymisc_la-eel-gconf-extensions.lo `test -f 'eel-gconf-extensions.c' || echo '$(srcdir)/'`eel-gconf-extensions.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-eel-gconf-extensions.Tpo $(DEPDIR)/libephymisc_la-eel-gconf-extensions.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-eel-gconf-extensions.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-eel-gconf-extensions.Tpo" -c -o libephymisc_la-eel-gconf-extensions.lo `test -f 'eel-gconf-extensions.c' || echo '$(srcdir)/'`eel-gconf-extensions.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-eel-gconf-extensions.Tpo" "$(DEPDIR)/libephymisc_la-eel-gconf-extensions.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-eel-gconf-extensions.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eel-gconf-extensions.c' object='libephymisc_la-eel-gconf-extensions.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-eel-gconf-extensions.lo `test -f 'eel-gconf-extensions.c' || echo '$(srcdir)/'`eel-gconf-extensions.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-eel-gconf-extensions.lo `test -f 'eel-gconf-extensions.c' || echo '$(srcdir)/'`eel-gconf-extensions.c libephymisc_la-ephy-debug.lo: ephy-debug.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-debug.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-debug.Tpo -c -o libephymisc_la-ephy-debug.lo `test -f 'ephy-debug.c' || echo '$(srcdir)/'`ephy-debug.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-debug.Tpo $(DEPDIR)/libephymisc_la-ephy-debug.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-debug.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-debug.Tpo" -c -o libephymisc_la-ephy-debug.lo `test -f 'ephy-debug.c' || echo '$(srcdir)/'`ephy-debug.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-debug.Tpo" "$(DEPDIR)/libephymisc_la-ephy-debug.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-debug.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-debug.c' object='libephymisc_la-ephy-debug.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-debug.lo `test -f 'ephy-debug.c' || echo '$(srcdir)/'`ephy-debug.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-debug.lo `test -f 'ephy-debug.c' || echo '$(srcdir)/'`ephy-debug.c libephymisc_la-ephy-dialog.lo: ephy-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-dialog.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-dialog.Tpo -c -o libephymisc_la-ephy-dialog.lo `test -f 'ephy-dialog.c' || echo '$(srcdir)/'`ephy-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-dialog.Tpo $(DEPDIR)/libephymisc_la-ephy-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-dialog.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-dialog.Tpo" -c -o libephymisc_la-ephy-dialog.lo `test -f 'ephy-dialog.c' || echo '$(srcdir)/'`ephy-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-dialog.Tpo" "$(DEPDIR)/libephymisc_la-ephy-dialog.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-dialog.c' object='libephymisc_la-ephy-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-dialog.lo `test -f 'ephy-dialog.c' || echo '$(srcdir)/'`ephy-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-dialog.lo `test -f 'ephy-dialog.c' || echo '$(srcdir)/'`ephy-dialog.c libephymisc_la-ephy-dnd.lo: ephy-dnd.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-dnd.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-dnd.Tpo -c -o libephymisc_la-ephy-dnd.lo `test -f 'ephy-dnd.c' || echo '$(srcdir)/'`ephy-dnd.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-dnd.Tpo $(DEPDIR)/libephymisc_la-ephy-dnd.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-dnd.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-dnd.Tpo" -c -o libephymisc_la-ephy-dnd.lo `test -f 'ephy-dnd.c' || echo '$(srcdir)/'`ephy-dnd.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-dnd.Tpo" "$(DEPDIR)/libephymisc_la-ephy-dnd.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-dnd.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-dnd.c' object='libephymisc_la-ephy-dnd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-dnd.lo `test -f 'ephy-dnd.c' || echo '$(srcdir)/'`ephy-dnd.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-dnd.lo `test -f 'ephy-dnd.c' || echo '$(srcdir)/'`ephy-dnd.c libephymisc_la-ephy-file-chooser.lo: ephy-file-chooser.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-file-chooser.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-file-chooser.Tpo -c -o libephymisc_la-ephy-file-chooser.lo `test -f 'ephy-file-chooser.c' || echo '$(srcdir)/'`ephy-file-chooser.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-file-chooser.Tpo $(DEPDIR)/libephymisc_la-ephy-file-chooser.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-file-chooser.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-file-chooser.Tpo" -c -o libephymisc_la-ephy-file-chooser.lo `test -f 'ephy-file-chooser.c' || echo '$(srcdir)/'`ephy-file-chooser.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-file-chooser.Tpo" "$(DEPDIR)/libephymisc_la-ephy-file-chooser.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-file-chooser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-file-chooser.c' object='libephymisc_la-ephy-file-chooser.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-file-chooser.lo `test -f 'ephy-file-chooser.c' || echo '$(srcdir)/'`ephy-file-chooser.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-file-chooser.lo `test -f 'ephy-file-chooser.c' || echo '$(srcdir)/'`ephy-file-chooser.c libephymisc_la-ephy-file-helpers.lo: ephy-file-helpers.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-file-helpers.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-file-helpers.Tpo -c -o libephymisc_la-ephy-file-helpers.lo `test -f 'ephy-file-helpers.c' || echo '$(srcdir)/'`ephy-file-helpers.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-file-helpers.Tpo $(DEPDIR)/libephymisc_la-ephy-file-helpers.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-file-helpers.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-file-helpers.Tpo" -c -o libephymisc_la-ephy-file-helpers.lo `test -f 'ephy-file-helpers.c' || echo '$(srcdir)/'`ephy-file-helpers.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-file-helpers.Tpo" "$(DEPDIR)/libephymisc_la-ephy-file-helpers.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-file-helpers.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-file-helpers.c' object='libephymisc_la-ephy-file-helpers.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-file-helpers.lo `test -f 'ephy-file-helpers.c' || echo '$(srcdir)/'`ephy-file-helpers.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-file-helpers.lo `test -f 'ephy-file-helpers.c' || echo '$(srcdir)/'`ephy-file-helpers.c libephymisc_la-ephy-gui.lo: ephy-gui.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-gui.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-gui.Tpo -c -o libephymisc_la-ephy-gui.lo `test -f 'ephy-gui.c' || echo '$(srcdir)/'`ephy-gui.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-gui.Tpo $(DEPDIR)/libephymisc_la-ephy-gui.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-gui.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-gui.Tpo" -c -o libephymisc_la-ephy-gui.lo `test -f 'ephy-gui.c' || echo '$(srcdir)/'`ephy-gui.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-gui.Tpo" "$(DEPDIR)/libephymisc_la-ephy-gui.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-gui.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-gui.c' object='libephymisc_la-ephy-gui.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-gui.lo `test -f 'ephy-gui.c' || echo '$(srcdir)/'`ephy-gui.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-gui.lo `test -f 'ephy-gui.c' || echo '$(srcdir)/'`ephy-gui.c libephymisc_la-ephy-langs.lo: ephy-langs.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-langs.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-langs.Tpo -c -o libephymisc_la-ephy-langs.lo `test -f 'ephy-langs.c' || echo '$(srcdir)/'`ephy-langs.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-langs.Tpo $(DEPDIR)/libephymisc_la-ephy-langs.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-langs.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-langs.Tpo" -c -o libephymisc_la-ephy-langs.lo `test -f 'ephy-langs.c' || echo '$(srcdir)/'`ephy-langs.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-langs.Tpo" "$(DEPDIR)/libephymisc_la-ephy-langs.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-langs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-langs.c' object='libephymisc_la-ephy-langs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-langs.lo `test -f 'ephy-langs.c' || echo '$(srcdir)/'`ephy-langs.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-langs.lo `test -f 'ephy-langs.c' || echo '$(srcdir)/'`ephy-langs.c libephymisc_la-ephy-loader.lo: ephy-loader.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-loader.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-loader.Tpo -c -o libephymisc_la-ephy-loader.lo `test -f 'ephy-loader.c' || echo '$(srcdir)/'`ephy-loader.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-loader.Tpo $(DEPDIR)/libephymisc_la-ephy-loader.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-loader.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-loader.Tpo" -c -o libephymisc_la-ephy-loader.lo `test -f 'ephy-loader.c' || echo '$(srcdir)/'`ephy-loader.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-loader.Tpo" "$(DEPDIR)/libephymisc_la-ephy-loader.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-loader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-loader.c' object='libephymisc_la-ephy-loader.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-loader.lo `test -f 'ephy-loader.c' || echo '$(srcdir)/'`ephy-loader.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-loader.lo `test -f 'ephy-loader.c' || echo '$(srcdir)/'`ephy-loader.c libephymisc_la-ephy-module.lo: ephy-module.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-module.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-module.Tpo -c -o libephymisc_la-ephy-module.lo `test -f 'ephy-module.c' || echo '$(srcdir)/'`ephy-module.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-module.Tpo $(DEPDIR)/libephymisc_la-ephy-module.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-module.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-module.Tpo" -c -o libephymisc_la-ephy-module.lo `test -f 'ephy-module.c' || echo '$(srcdir)/'`ephy-module.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-module.Tpo" "$(DEPDIR)/libephymisc_la-ephy-module.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-module.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-module.c' object='libephymisc_la-ephy-module.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-module.lo `test -f 'ephy-module.c' || echo '$(srcdir)/'`ephy-module.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-module.lo `test -f 'ephy-module.c' || echo '$(srcdir)/'`ephy-module.c libephymisc_la-ephy-node.lo: ephy-node.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-node.Tpo -c -o libephymisc_la-ephy-node.lo `test -f 'ephy-node.c' || echo '$(srcdir)/'`ephy-node.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-node.Tpo $(DEPDIR)/libephymisc_la-ephy-node.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-node.Tpo" -c -o libephymisc_la-ephy-node.lo `test -f 'ephy-node.c' || echo '$(srcdir)/'`ephy-node.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-node.Tpo" "$(DEPDIR)/libephymisc_la-ephy-node.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-node.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-node.c' object='libephymisc_la-ephy-node.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node.lo `test -f 'ephy-node.c' || echo '$(srcdir)/'`ephy-node.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node.lo `test -f 'ephy-node.c' || echo '$(srcdir)/'`ephy-node.c libephymisc_la-ephy-node-filter.lo: ephy-node-filter.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node-filter.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-node-filter.Tpo -c -o libephymisc_la-ephy-node-filter.lo `test -f 'ephy-node-filter.c' || echo '$(srcdir)/'`ephy-node-filter.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-node-filter.Tpo $(DEPDIR)/libephymisc_la-ephy-node-filter.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node-filter.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-node-filter.Tpo" -c -o libephymisc_la-ephy-node-filter.lo `test -f 'ephy-node-filter.c' || echo '$(srcdir)/'`ephy-node-filter.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-node-filter.Tpo" "$(DEPDIR)/libephymisc_la-ephy-node-filter.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-node-filter.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-node-filter.c' object='libephymisc_la-ephy-node-filter.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node-filter.lo `test -f 'ephy-node-filter.c' || echo '$(srcdir)/'`ephy-node-filter.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node-filter.lo `test -f 'ephy-node-filter.c' || echo '$(srcdir)/'`ephy-node-filter.c libephymisc_la-ephy-node-db.lo: ephy-node-db.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node-db.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-node-db.Tpo -c -o libephymisc_la-ephy-node-db.lo `test -f 'ephy-node-db.c' || echo '$(srcdir)/'`ephy-node-db.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-node-db.Tpo $(DEPDIR)/libephymisc_la-ephy-node-db.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-node-db.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-node-db.Tpo" -c -o libephymisc_la-ephy-node-db.lo `test -f 'ephy-node-db.c' || echo '$(srcdir)/'`ephy-node-db.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-node-db.Tpo" "$(DEPDIR)/libephymisc_la-ephy-node-db.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-node-db.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-node-db.c' object='libephymisc_la-ephy-node-db.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node-db.lo `test -f 'ephy-node-db.c' || echo '$(srcdir)/'`ephy-node-db.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-node-db.lo `test -f 'ephy-node-db.c' || echo '$(srcdir)/'`ephy-node-db.c libephymisc_la-ephy-object-helpers.lo: ephy-object-helpers.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-object-helpers.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-object-helpers.Tpo -c -o libephymisc_la-ephy-object-helpers.lo `test -f 'ephy-object-helpers.c' || echo '$(srcdir)/'`ephy-object-helpers.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-object-helpers.Tpo $(DEPDIR)/libephymisc_la-ephy-object-helpers.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-object-helpers.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-object-helpers.Tpo" -c -o libephymisc_la-ephy-object-helpers.lo `test -f 'ephy-object-helpers.c' || echo '$(srcdir)/'`ephy-object-helpers.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-object-helpers.Tpo" "$(DEPDIR)/libephymisc_la-ephy-object-helpers.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-object-helpers.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-object-helpers.c' object='libephymisc_la-ephy-object-helpers.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-object-helpers.lo `test -f 'ephy-object-helpers.c' || echo '$(srcdir)/'`ephy-object-helpers.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-object-helpers.lo `test -f 'ephy-object-helpers.c' || echo '$(srcdir)/'`ephy-object-helpers.c libephymisc_la-ephy-password-dialog.lo: ephy-password-dialog.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-password-dialog.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-password-dialog.Tpo -c -o libephymisc_la-ephy-password-dialog.lo `test -f 'ephy-password-dialog.c' || echo '$(srcdir)/'`ephy-password-dialog.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-password-dialog.Tpo $(DEPDIR)/libephymisc_la-ephy-password-dialog.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-password-dialog.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-password-dialog.Tpo" -c -o libephymisc_la-ephy-password-dialog.lo `test -f 'ephy-password-dialog.c' || echo '$(srcdir)/'`ephy-password-dialog.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-password-dialog.Tpo" "$(DEPDIR)/libephymisc_la-ephy-password-dialog.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-password-dialog.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-password-dialog.c' object='libephymisc_la-ephy-password-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-password-dialog.lo `test -f 'ephy-password-dialog.c' || echo '$(srcdir)/'`ephy-password-dialog.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-password-dialog.lo `test -f 'ephy-password-dialog.c' || echo '$(srcdir)/'`ephy-password-dialog.c libephymisc_la-ephy-print-utils.lo: ephy-print-utils.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-print-utils.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-print-utils.Tpo -c -o libephymisc_la-ephy-print-utils.lo `test -f 'ephy-print-utils.c' || echo '$(srcdir)/'`ephy-print-utils.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-print-utils.Tpo $(DEPDIR)/libephymisc_la-ephy-print-utils.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-print-utils.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-print-utils.Tpo" -c -o libephymisc_la-ephy-print-utils.lo `test -f 'ephy-print-utils.c' || echo '$(srcdir)/'`ephy-print-utils.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-print-utils.Tpo" "$(DEPDIR)/libephymisc_la-ephy-print-utils.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-print-utils.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-print-utils.c' object='libephymisc_la-ephy-print-utils.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-print-utils.lo `test -f 'ephy-print-utils.c' || echo '$(srcdir)/'`ephy-print-utils.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-print-utils.lo `test -f 'ephy-print-utils.c' || echo '$(srcdir)/'`ephy-print-utils.c libephymisc_la-ephy-shlib-loader.lo: ephy-shlib-loader.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-shlib-loader.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-shlib-loader.Tpo -c -o libephymisc_la-ephy-shlib-loader.lo `test -f 'ephy-shlib-loader.c' || echo '$(srcdir)/'`ephy-shlib-loader.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-shlib-loader.Tpo $(DEPDIR)/libephymisc_la-ephy-shlib-loader.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-shlib-loader.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-shlib-loader.Tpo" -c -o libephymisc_la-ephy-shlib-loader.lo `test -f 'ephy-shlib-loader.c' || echo '$(srcdir)/'`ephy-shlib-loader.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-shlib-loader.Tpo" "$(DEPDIR)/libephymisc_la-ephy-shlib-loader.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-shlib-loader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-shlib-loader.c' object='libephymisc_la-ephy-shlib-loader.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-shlib-loader.lo `test -f 'ephy-shlib-loader.c' || echo '$(srcdir)/'`ephy-shlib-loader.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-shlib-loader.lo `test -f 'ephy-shlib-loader.c' || echo '$(srcdir)/'`ephy-shlib-loader.c libephymisc_la-ephy-signal-accumulator.lo: ephy-signal-accumulator.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-signal-accumulator.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Tpo -c -o libephymisc_la-ephy-signal-accumulator.lo `test -f 'ephy-signal-accumulator.c' || echo '$(srcdir)/'`ephy-signal-accumulator.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Tpo $(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-signal-accumulator.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Tpo" -c -o libephymisc_la-ephy-signal-accumulator.lo `test -f 'ephy-signal-accumulator.c' || echo '$(srcdir)/'`ephy-signal-accumulator.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Tpo" "$(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-signal-accumulator.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-signal-accumulator.c' object='libephymisc_la-ephy-signal-accumulator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-signal-accumulator.lo `test -f 'ephy-signal-accumulator.c' || echo '$(srcdir)/'`ephy-signal-accumulator.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-signal-accumulator.lo `test -f 'ephy-signal-accumulator.c' || echo '$(srcdir)/'`ephy-signal-accumulator.c libephymisc_la-ephy-state.lo: ephy-state.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-state.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-state.Tpo -c -o libephymisc_la-ephy-state.lo `test -f 'ephy-state.c' || echo '$(srcdir)/'`ephy-state.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-state.Tpo $(DEPDIR)/libephymisc_la-ephy-state.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-state.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-state.Tpo" -c -o libephymisc_la-ephy-state.lo `test -f 'ephy-state.c' || echo '$(srcdir)/'`ephy-state.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-state.Tpo" "$(DEPDIR)/libephymisc_la-ephy-state.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-state.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-state.c' object='libephymisc_la-ephy-state.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-state.lo `test -f 'ephy-state.c' || echo '$(srcdir)/'`ephy-state.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-state.lo `test -f 'ephy-state.c' || echo '$(srcdir)/'`ephy-state.c libephymisc_la-ephy-string.lo: ephy-string.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-string.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-string.Tpo -c -o libephymisc_la-ephy-string.lo `test -f 'ephy-string.c' || echo '$(srcdir)/'`ephy-string.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-string.Tpo $(DEPDIR)/libephymisc_la-ephy-string.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-string.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-string.Tpo" -c -o libephymisc_la-ephy-string.lo `test -f 'ephy-string.c' || echo '$(srcdir)/'`ephy-string.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-string.Tpo" "$(DEPDIR)/libephymisc_la-ephy-string.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-string.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-string.c' object='libephymisc_la-ephy-string.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-string.lo `test -f 'ephy-string.c' || echo '$(srcdir)/'`ephy-string.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-string.lo `test -f 'ephy-string.c' || echo '$(srcdir)/'`ephy-string.c libephymisc_la-ephy-stock-icons.lo: ephy-stock-icons.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-stock-icons.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-stock-icons.Tpo -c -o libephymisc_la-ephy-stock-icons.lo `test -f 'ephy-stock-icons.c' || echo '$(srcdir)/'`ephy-stock-icons.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-stock-icons.Tpo $(DEPDIR)/libephymisc_la-ephy-stock-icons.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-stock-icons.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-stock-icons.Tpo" -c -o libephymisc_la-ephy-stock-icons.lo `test -f 'ephy-stock-icons.c' || echo '$(srcdir)/'`ephy-stock-icons.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-stock-icons.Tpo" "$(DEPDIR)/libephymisc_la-ephy-stock-icons.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-stock-icons.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-stock-icons.c' object='libephymisc_la-ephy-stock-icons.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-stock-icons.lo `test -f 'ephy-stock-icons.c' || echo '$(srcdir)/'`ephy-stock-icons.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-stock-icons.lo `test -f 'ephy-stock-icons.c' || echo '$(srcdir)/'`ephy-stock-icons.c libephymisc_la-ephy-time-helpers.lo: ephy-time-helpers.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-time-helpers.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-time-helpers.Tpo -c -o libephymisc_la-ephy-time-helpers.lo `test -f 'ephy-time-helpers.c' || echo '$(srcdir)/'`ephy-time-helpers.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-time-helpers.Tpo $(DEPDIR)/libephymisc_la-ephy-time-helpers.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-time-helpers.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-time-helpers.Tpo" -c -o libephymisc_la-ephy-time-helpers.lo `test -f 'ephy-time-helpers.c' || echo '$(srcdir)/'`ephy-time-helpers.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-time-helpers.Tpo" "$(DEPDIR)/libephymisc_la-ephy-time-helpers.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-time-helpers.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-time-helpers.c' object='libephymisc_la-ephy-time-helpers.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-time-helpers.lo `test -f 'ephy-time-helpers.c' || echo '$(srcdir)/'`ephy-time-helpers.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-time-helpers.lo `test -f 'ephy-time-helpers.c' || echo '$(srcdir)/'`ephy-time-helpers.c libephymisc_la-ephy-zoom.lo: ephy-zoom.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-zoom.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-zoom.Tpo -c -o libephymisc_la-ephy-zoom.lo `test -f 'ephy-zoom.c' || echo '$(srcdir)/'`ephy-zoom.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-zoom.Tpo $(DEPDIR)/libephymisc_la-ephy-zoom.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-zoom.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-zoom.Tpo" -c -o libephymisc_la-ephy-zoom.lo `test -f 'ephy-zoom.c' || echo '$(srcdir)/'`ephy-zoom.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-zoom.Tpo" "$(DEPDIR)/libephymisc_la-ephy-zoom.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-zoom.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-zoom.c' object='libephymisc_la-ephy-zoom.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-zoom.lo `test -f 'ephy-zoom.c' || echo '$(srcdir)/'`ephy-zoom.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-zoom.lo `test -f 'ephy-zoom.c' || echo '$(srcdir)/'`ephy-zoom.c libephymisc_la-ephy-spell-check.lo: ephy-spell-check.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-spell-check.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-spell-check.Tpo -c -o libephymisc_la-ephy-spell-check.lo `test -f 'ephy-spell-check.c' || echo '$(srcdir)/'`ephy-spell-check.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-spell-check.Tpo $(DEPDIR)/libephymisc_la-ephy-spell-check.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-spell-check.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-spell-check.Tpo" -c -o libephymisc_la-ephy-spell-check.lo `test -f 'ephy-spell-check.c' || echo '$(srcdir)/'`ephy-spell-check.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-spell-check.Tpo" "$(DEPDIR)/libephymisc_la-ephy-spell-check.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-spell-check.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-spell-check.c' object='libephymisc_la-ephy-spell-check.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-spell-check.lo `test -f 'ephy-spell-check.c' || echo '$(srcdir)/'`ephy-spell-check.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-spell-check.lo `test -f 'ephy-spell-check.c' || echo '$(srcdir)/'`ephy-spell-check.c libephymisc_la-ephy-lib-type-builtins.lo: ephy-lib-type-builtins.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-lib-type-builtins.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Tpo -c -o libephymisc_la-ephy-lib-type-builtins.lo `test -f 'ephy-lib-type-builtins.c' || echo '$(srcdir)/'`ephy-lib-type-builtins.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Tpo $(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-lib-type-builtins.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Tpo" -c -o libephymisc_la-ephy-lib-type-builtins.lo `test -f 'ephy-lib-type-builtins.c' || echo '$(srcdir)/'`ephy-lib-type-builtins.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Tpo" "$(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-lib-type-builtins.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-lib-type-builtins.c' object='libephymisc_la-ephy-lib-type-builtins.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-lib-type-builtins.lo `test -f 'ephy-lib-type-builtins.c' || echo '$(srcdir)/'`ephy-lib-type-builtins.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-lib-type-builtins.lo `test -f 'ephy-lib-type-builtins.c' || echo '$(srcdir)/'`ephy-lib-type-builtins.c libephymisc_la-ephy-marshal.lo: ephy-marshal.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-marshal.lo -MD -MP -MF $(DEPDIR)/libephymisc_la-ephy-marshal.Tpo -c -o libephymisc_la-ephy-marshal.lo `test -f 'ephy-marshal.c' || echo '$(srcdir)/'`ephy-marshal.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libephymisc_la-ephy-marshal.Tpo $(DEPDIR)/libephymisc_la-ephy-marshal.Plo +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -MT libephymisc_la-ephy-marshal.lo -MD -MP -MF "$(DEPDIR)/libephymisc_la-ephy-marshal.Tpo" -c -o libephymisc_la-ephy-marshal.lo `test -f 'ephy-marshal.c' || echo '$(srcdir)/'`ephy-marshal.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libephymisc_la-ephy-marshal.Tpo" "$(DEPDIR)/libephymisc_la-ephy-marshal.Plo"; else rm -f "$(DEPDIR)/libephymisc_la-ephy-marshal.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ephy-marshal.c' object='libephymisc_la-ephy-marshal.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-marshal.lo `test -f 'ephy-marshal.c' || echo '$(srcdir)/'`ephy-marshal.c +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libephymisc_la_CPPFLAGS) $(CPPFLAGS) $(libephymisc_la_CFLAGS) $(CFLAGS) -c -o libephymisc_la-ephy-marshal.lo `test -f 'ephy-marshal.c' || echo '$(srcdir)/'`ephy-marshal.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: install-headerDATA: $(header_DATA) @$(NORMAL_INSTALL) - test -z "$(headerdir)" || $(MKDIR_P) "$(DESTDIR)$(headerdir)" + test -z "$(headerdir)" || $(mkdir_p) "$(DESTDIR)$(headerdir)" @list='$(header_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ @@ -796,7 +847,8 @@ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): +mostlyclean-recursive clean-recursive distclean-recursive \ +maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ @@ -840,8 +892,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS @@ -866,8 +918,8 @@ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ @@ -877,12 +929,13 @@ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ + here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique @@ -896,21 +949,22 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ @@ -924,7 +978,7 @@ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ @@ -932,8 +986,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -945,7 +997,7 @@ installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(headerdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive @@ -985,7 +1037,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -999,20 +1051,12 @@ install-data-am: install-headerDATA -install-dvi: install-dvi-recursive - install-exec-am: -install-html: install-html-recursive - install-info: install-info-recursive install-man: -install-pdf: install-pdf-recursive - -install-ps: install-ps-recursive - installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -1033,26 +1077,24 @@ ps-am: -uninstall-am: uninstall-headerDATA +uninstall-am: uninstall-headerDATA uninstall-info-am -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - clean-noinstLTLIBRARIES ctags ctags-recursive distclean \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-noinstLTLIBRARIES \ + clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-headerDATA \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am \ - uninstall-headerDATA + 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-headerDATA 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-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-headerDATA uninstall-info-am ephy-marshal.c: stamp-ephy-marshal.c