--- epiphany-browser-2.22.1.1.orig/missing +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-browser-data.dirs +++ epiphany-browser-2.22.1.1/debian/epiphany-browser-data.dirs @@ -0,0 +1,2 @@ +/etc/gnome/epiphany +/usr --- epiphany-browser-2.22.1.1.orig/debian/epiphany-webkit.menu +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-browser-data.links +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-webkit.postinst +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-browser.links +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/control.in +++ epiphany-browser-2.22.1.1/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.15.6), + 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~rc), + 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 (>= 0.1.17), + 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~rc), + ${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.1.1.orig/debian/compat +++ epiphany-browser-2.22.1.1/debian/compat @@ -0,0 +1 @@ +5 --- epiphany-browser-2.22.1.1.orig/debian/bug/control +++ epiphany-browser-2.22.1.1/debian/bug/control @@ -0,0 +1 @@ +report-with: epiphany-gecko epiphany-webkit --- epiphany-browser-2.22.1.1.orig/debian/epiphany.sh +++ epiphany-browser-2.22.1.1/debian/epiphany.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +exec epiphany-browser "$@" --- epiphany-browser-2.22.1.1.orig/debian/epiphany-browser-data.docs +++ epiphany-browser-2.22.1.1/debian/epiphany-browser-data.docs @@ -0,0 +1,4 @@ +NEWS +README +TODO +AUTHORS --- epiphany-browser-2.22.1.1.orig/debian/patches/03_dbus.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/08_localized_startup_page.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/05_libexecdir.patch +++ epiphany-browser-2.22.1.1/debian/patches/05_libexecdir.patch @@ -0,0 +1,255 @@ +--- + data/epiphany.pc.in | 4 ++-- + embed/mozilla/Makefile.am | 2 +- + embed/mozilla/Makefile.in | 2 +- + lib/Makefile.am | 2 +- + lib/Makefile.in | 2 +- + plugins/desktop-file/Makefile.am | 2 +- + plugins/desktop-file/Makefile.in | 2 +- + src/Makefile.am | 8 ++++---- + src/Makefile.in | 8 ++++---- + 9 files changed, 16 insertions(+), 16 deletions(-) + +Index: epiphany-2.22.1.1/data/epiphany.pc.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/epiphany.pc.in ++++ epiphany-2.22.1.1/data/epiphany.pc.in +@@ -1,14 +1,14 @@ + prefix=@prefix@ + 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 + features=@EPIPHANY_FEATURES@ + engine=@with_engine@ + + Name: Epiphany Browser + Description: GNOME Web Browser +Index: epiphany-2.22.1.1/embed/mozilla/Makefile.am +=================================================================== +--- epiphany-2.22.1.1.orig/embed/mozilla/Makefile.am ++++ epiphany-2.22.1.1/embed/mozilla/Makefile.am +@@ -141,17 +141,17 @@ + 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=\"$(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins\" \ ++ -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_1_9 +Index: epiphany-2.22.1.1/embed/mozilla/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/embed/mozilla/Makefile.in ++++ epiphany-2.22.1.1/embed/mozilla/Makefile.in +@@ -522,17 +522,17 @@ + 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=\"$(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins\" \ ++ -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) \ +Index: epiphany-2.22.1.1/lib/Makefile.am +=================================================================== +--- epiphany-2.22.1.1.orig/lib/Makefile.am ++++ epiphany-2.22.1.1/lib/Makefile.am +@@ -75,17 +75,17 @@ + nodist_libephymisc_la_SOURCES = \ + $(BUILT_SOURCES) + + libephymisc_la_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_builddir)/lib/egg \ + -I$(top_srcdir)/lib/egg \ + -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) + + libephymisc_la_LIBADD = + +Index: epiphany-2.22.1.1/lib/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/lib/Makefile.in ++++ epiphany-2.22.1.1/lib/Makefile.in +@@ -452,17 +452,17 @@ + nodist_libephymisc_la_SOURCES = \ + $(BUILT_SOURCES) + + libephymisc_la_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_builddir)/lib/egg \ + -I$(top_srcdir)/lib/egg \ + -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) \ + $(am__append_2) + libephymisc_la_LIBADD = $(am__append_3) + BUILT_SOURCES = \ + ephy-lib-type-builtins.c \ + ephy-lib-type-builtins.h \ +Index: epiphany-2.22.1.1/plugins/desktop-file/Makefile.am +=================================================================== +--- epiphany-2.22.1.1.orig/plugins/desktop-file/Makefile.am ++++ epiphany-2.22.1.1/plugins/desktop-file/Makefile.am +@@ -1,9 +1,9 @@ +-plugindir = $(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins ++plugindir = $(libexecdir)/$(EPIPHANY_MAJOR)/plugins + plugin_LTLIBRARIES = libdesktopfileplugin.la + + libdesktopfileplugin_la_SOURCES = \ + plugin.cpp + + gecko_include_subdirs = \ + . \ + dom \ +Index: epiphany-2.22.1.1/plugins/desktop-file/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/plugins/desktop-file/Makefile.in ++++ epiphany-2.22.1.1/plugins/desktop-file/Makefile.in +@@ -334,17 +334,17 @@ + psdir = @psdir@ + pyexecdir = @pyexecdir@ + pythondir = @pythondir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + with_engine = @with_engine@ +-plugindir = $(libdir)/epiphany/$(EPIPHANY_MAJOR)/plugins ++plugindir = $(libexecdir)/$(EPIPHANY_MAJOR)/plugins + plugin_LTLIBRARIES = libdesktopfileplugin.la + libdesktopfileplugin_la_SOURCES = \ + plugin.cpp + + gecko_include_subdirs = \ + . \ + dom \ + plugin +Index: epiphany-2.22.1.1/src/Makefile.am +=================================================================== +--- epiphany-2.22.1.1.orig/src/Makefile.am ++++ epiphany-2.22.1.1/src/Makefile.am +@@ -101,18 +101,18 @@ + -I$(top_builddir)/lib \ + -I$(top_builddir)/lib/egg \ + -I$(top_builddir)/embed \ + -I$(top_srcdir)/embed \ + -I$(top_srcdir)/lib \ + -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) + + libephymain_la_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(AM_CFLAGS) +@@ -153,18 +153,18 @@ + -I$(top_builddir)/lib \ + -I$(top_builddir)/lib/widgets \ + -I$(top_builddir)/lib/egg \ + -I$(top_builddir)/embed \ + -I$(top_builddir)/embed/$(with_engine) \ + -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) + + libpyphany_la_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ + $(NO_STRICT_ALIASING_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(PYGTK_CFLAGS) \ +Index: epiphany-2.22.1.1/src/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/src/Makefile.in ++++ epiphany-2.22.1.1/src/Makefile.in +@@ -564,18 +564,18 @@ + -I$(top_builddir)/lib \ + -I$(top_builddir)/lib/egg \ + -I$(top_builddir)/embed \ + -I$(top_srcdir)/embed \ + -I$(top_srcdir)/lib \ + -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) + + libephymain_la_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ + $(DBUS_CFLAGS) \ + $(AM_CFLAGS) +@@ -603,18 +603,18 @@ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/lib \ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/lib/widgets \ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/lib/egg \ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/embed \ + @ENABLE_PYTHON_TRUE@ -I$(top_builddir)/embed/$(with_engine) \ + @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) + + @ENABLE_PYTHON_TRUE@libpyphany_la_CFLAGS = \ + @ENABLE_PYTHON_TRUE@ $(DEPENDENCIES_CFLAGS) \ + @ENABLE_PYTHON_TRUE@ $(NO_STRICT_ALIASING_CFLAGS) \ + @ENABLE_PYTHON_TRUE@ $(DBUS_CFLAGS) \ + @ENABLE_PYTHON_TRUE@ $(PYGTK_CFLAGS) \ --- epiphany-browser-2.22.1.1.orig/debian/patches/10_url_double-click.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/02_ac_init.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/06_lpi.patch +++ epiphany-browser-2.22.1.1/debian/patches/06_lpi.patch @@ -0,0 +1,43 @@ +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,7 @@ + + + ++ + + + +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.1.1.orig/debian/patches/08_load_on_new_tab.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/series +++ epiphany-browser-2.22.1.1/debian/patches/series @@ -0,0 +1,19 @@ +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_build_changes.patch +98_ephy-boot-xul-early.patch +#98b_gtk_nss_dialog_missing_symbol.patch +98a_xul_b5_rc1_api_transition.patch +99_autoreconf.patch --- epiphany-browser-2.22.1.1.orig/debian/patches/01_bookmarks_menu.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/98a_xul_b5_rc1_api_transition.patch +++ epiphany-browser-2.22.1.1/debian/patches/98a_xul_b5_rc1_api_transition.patch @@ -0,0 +1,47 @@ +--- + embed/mozilla/ContentHandler.cpp | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +Index: epiphany-browser-2.22.1.1/embed/mozilla/ContentHandler.cpp +=================================================================== +--- epiphany-browser-2.22.1.1.orig/embed/mozilla/ContentHandler.cpp ++++ epiphany-browser-2.22.1.1/embed/mozilla/ContentHandler.cpp +@@ -124,34 +124,36 @@ + } + + /* nsILocalFile promptForSaveToFile (in nsISupports aWindowContext, in wstring aDefaultFile, in wstring aSuggestedFileExtension); */ + NS_IMETHODIMP GContentHandler::PromptForSaveToFile( + nsIHelperAppLauncher *aLauncher, + nsISupports *aWindowContext, + const PRUnichar *aDefaultFile, + const PRUnichar *aSuggestedFileExtension, ++ PRBool aForcePrompt, + nsILocalFile **_retval) + { + EphyFileChooser *dialog; + int response; + char *filename = NULL; + nsCString defaultFile; + + NS_UTF16ToCString (nsString (aDefaultFile), + NS_CSTRING_ENCODING_UTF8, defaultFile); + +- if (mAction != CONTENT_ACTION_SAVEAS) ++ if (!aForcePrompt && ++ mAction != CONTENT_ACTION_SAVEAS) + { + return BuildDownloadPath (defaultFile.get(), _retval); + } + nsCOMPtr parentDOMWindow (do_GetInterface (aWindowContext)); + + AutoModalDialog modalDialog (parentDOMWindow, PR_FALSE); +- if (!modalDialog.ShouldShow ()) ++ if (!aForcePrompt && !modalDialog.ShouldShow ()) + return NS_ERROR_FAILURE; + + GtkWindow *parentWindow = modalDialog.GetParent (); + + dialog = ephy_file_chooser_new (_("Save"), GTK_WIDGET (parentWindow), + GTK_FILE_CHOOSER_ACTION_SAVE, + CONF_STATE_SAVE_DIR, + EPHY_FILE_FILTER_ALL); --- epiphany-browser-2.22.1.1.orig/debian/patches/00_browser_wrapper_path.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/99_autoreconf.patch +++ epiphany-browser-2.22.1.1/debian/patches/99_autoreconf.patch @@ -0,0 +1,6909 @@ +--- + Makefile.in | 67 +- + configure | 1073 +++++++++++++++++++++++---------------- + data/Makefile.in | 35 + + data/art/Makefile.in | 35 + + data/chrome/Makefile.in | 35 + + data/glade/Makefile.in | 35 + + data/icons/Makefile.in | 35 + + data/ui/Makefile.in | 35 + + doc/Makefile.in | 35 + + doc/reference/Makefile.in | 35 + + embed/Makefile.in | 64 +- + embed/mozilla/Makefile.in | 331 ++++++------ + embed/webkit/Makefile.in | 52 + + gtk-doc.make | 174 ++++++ + help/Makefile.in | 35 + + intltool-extract.in | 12 + lib/Makefile.in | 60 +- + lib/egg/Makefile.in | 55 + + lib/widgets/Makefile.in | 56 +- + plugins/Makefile.in | 35 + + plugins/desktop-file/Makefile.in | 60 +- + src/Makefile.in | 117 ++-- + src/bookmarks/Makefile.in | 52 + + 23 files changed, 1731 insertions(+), 792 deletions(-) + +Index: epiphany-2.22.1.1/configure +=================================================================== +--- epiphany-2.22.1.1.orig/configure ++++ epiphany-2.22.1.1/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.1.1' + PACKAGE_STRING='GNOME Web Browser 2.22.1.1' + 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 +@@ -864,16 +864,18 @@ + am__fastdepCC_FALSE + SED + GREP + EGREP + LN_S + ECHO + AR + RANLIB ++DSYMUTIL ++NMEDIT + CPP + CXX + CXXFLAGS + ac_ct_CXX + CXXDEPMODE + am__fastdepCXX_TRUE + am__fastdepCXX_FALSE + CXXCPP +@@ -918,32 +920,30 @@ + DBUS_LIBS + DBUS_BINDING_TOOL + GCONF_SCHEMA_CONFIG_SOURCE + GCONF_SCHEMA_FILE_DIR + GCONF_SCHEMAS_INSTALL_TRUE + 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 + GECKO_HOME + GECKO_PREFIX + GECKO_EXTRA_LIBS + GECKO_GLUE_LIBS + GECKO_CFLAGS + GECKO_LIBS + 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 + HAVE_GECKO_1_8_FALSE + HAVE_GECKO_1_8_1_TRUE + HAVE_GECKO_1_8_1_FALSE + HAVE_GECKO_1_9_TRUE + HAVE_GECKO_1_9_FALSE +@@ -1629,17 +1629,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 + +@@ -2546,17 +2546,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.1.1' + + + cat >>confdefs.h <<_ACEOF + #define PACKAGE "$PACKAGE" + _ACEOF + + +@@ -4488,17 +4488,17 @@ + # 'pass_all' -- all dependencies passed with no checks. + # 'test_compile' -- check by making test program. + # 'file_magic [[regex]]' -- check by looking for files in library path + # which responds to the $file_magic_cmd with a given extended regex. + # If you have `file' or equivalent on your system and you're not sure + # whether `pass_all' will *always* work, you probably want this one. + + case $host_os in +-aix4* | aix5*) ++aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + + beos*) + lt_cv_deplibs_check_method=pass_all + ;; + + bsdi[45]*) +@@ -4704,17 +4704,17 @@ + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; + *-*-irix6*) + # Find out which ABI we are using. +- echo '#line 4725 "configure"' > conftest.$ac_ext ++ echo '#line 4712 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) +@@ -4876,17 +4876,21 @@ + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; +- *) LD="${LD-ld} -64" ;; ++ *) ++ if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then ++ LD="${LD-ld} -64" ++ fi ++ ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + + +@@ -6479,17 +6483,16 @@ + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! +- + # find the maximum length of command line arguments + { echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 + echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } + if test "${lt_cv_sys_max_cmd_len+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + i=0 + teststring="ABCD" +@@ -6794,17 +6797,17 @@ + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi +- rm -f conftest* conftst* ++ rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi + done +@@ -7354,16 +7357,328 @@ + MAGIC_CMD=: + fi + fi + + fi + ;; + esac + ++ ++ case $host_os in ++ rhapsody* | darwin*) ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. ++set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_DSYMUTIL+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$DSYMUTIL"; then ++ ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++DSYMUTIL=$ac_cv_prog_DSYMUTIL ++if test -n "$DSYMUTIL"; then ++ { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 ++echo "${ECHO_T}$DSYMUTIL" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_DSYMUTIL"; then ++ ac_ct_DSYMUTIL=$DSYMUTIL ++ # Extract the first word of "dsymutil", so it can be a program name with args. ++set dummy dsymutil; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_DSYMUTIL"; then ++ ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL ++if test -n "$ac_ct_DSYMUTIL"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 ++echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_DSYMUTIL" = x; then ++ DSYMUTIL=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ DSYMUTIL=$ac_ct_DSYMUTIL ++ fi ++else ++ DSYMUTIL="$ac_cv_prog_DSYMUTIL" ++fi ++ ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. ++set dummy ${ac_tool_prefix}nmedit; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_NMEDIT+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$NMEDIT"; then ++ ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++NMEDIT=$ac_cv_prog_NMEDIT ++if test -n "$NMEDIT"; then ++ { echo "$as_me:$LINENO: result: $NMEDIT" >&5 ++echo "${ECHO_T}$NMEDIT" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_NMEDIT"; then ++ ac_ct_NMEDIT=$NMEDIT ++ # Extract the first word of "nmedit", so it can be a program name with args. ++set dummy nmedit; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_NMEDIT"; then ++ ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_NMEDIT="nmedit" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT ++if test -n "$ac_ct_NMEDIT"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 ++echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_NMEDIT" = x; then ++ NMEDIT=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ NMEDIT=$ac_ct_NMEDIT ++ fi ++else ++ NMEDIT="$ac_cv_prog_NMEDIT" ++fi ++ ++ ++ { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 ++echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } ++if test "${lt_cv_apple_cc_single_mod+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_apple_cc_single_mod=no ++ if test -z "${LT_MULTI_MODULE}"; then ++ # By default we will add the -single_module flag. You can override ++ # by either setting the environment variable LT_MULTI_MODULE ++ # non-empty at configure time, or by adding -multi_module to the ++ # link flags. ++ echo "int foo(void){return 1;}" > conftest.c ++ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ ++ -dynamiclib ${wl}-single_module conftest.c ++ if test -f libconftest.dylib; then ++ lt_cv_apple_cc_single_mod=yes ++ rm -rf libconftest.dylib* ++ fi ++ rm conftest.c ++ fi ++fi ++{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 ++echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } ++ { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 ++echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } ++if test "${lt_cv_ld_exported_symbols_list+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_ld_exported_symbols_list=no ++ save_LDFLAGS=$LDFLAGS ++ echo "_main" > conftest.sym ++ LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ lt_cv_ld_exported_symbols_list=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ lt_cv_ld_exported_symbols_list=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++ LDFLAGS="$save_LDFLAGS" ++ ++fi ++{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 ++echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } ++ case $host_os in ++ rhapsody* | darwin1.[0123]) ++ _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; ++ darwin1.*) ++ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; ++ darwin*) ++ # if running on 10.5 or later, the deployment target defaults ++ # to the OS version, if on x86, and 10.4, the deployment ++ # target defaults to 10.4. Don't you love it? ++ case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in ++ 10.0,*86*-darwin8*|10.0,*-darwin[91]*) ++ _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; ++ 10.[012]*) ++ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; ++ 10.*) ++ _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; ++ esac ++ ;; ++ esac ++ if test "$lt_cv_apple_cc_single_mod" = "yes"; then ++ _lt_dar_single_mod='$single_module' ++ fi ++ if test "$lt_cv_ld_exported_symbols_list" = "yes"; then ++ _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' ++ else ++ _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" ++ fi ++ if test "$DSYMUTIL" != ":"; then ++ _lt_dsymutil="~$DSYMUTIL \$lib || :" ++ else ++ _lt_dsymutil= ++ fi ++ ;; ++ esac ++ ++ + enable_dlopen=yes + enable_win32_dll=no + + # Check whether --enable-libtool-lock was given. + if test "${enable_libtool_lock+set}" = set; then + enableval=$enable_libtool_lock; + fi + +@@ -7419,17 +7734,17 @@ + eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_compiler_boilerplate=`cat conftest.err` + $rm conftest* + + ac_outfile=conftest.$ac_objext + echo "$lt_simple_link_test_code" >conftest.$ac_ext + eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_linker_boilerplate=`cat conftest.err` +-$rm conftest* ++$rm -r conftest* + + + + lt_prog_compiler_no_builtin_flag= + + if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + +@@ -7447,21 +7762,21 @@ + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:7467: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:7770: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:7471: \$? = $ac_status" >&5 ++ echo "$as_me:7774: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi +@@ -7721,53 +8036,53 @@ + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic"; then + + { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 + echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_pic_works+set}" = set; then ++if test "${lt_cv_prog_compiler_pic_works+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_pic_works=no ++ lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:7757: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:8060: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:7761: \$? = $ac_status" >&5 ++ echo "$as_me:8064: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_pic_works=yes ++ lt_cv_prog_compiler_pic_works=yes + fi + fi + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } + +-if test x"$lt_prog_compiler_pic_works" = xyes; then ++if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac + else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no + fi +@@ -7784,46 +8099,46 @@ + esac + + # + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" + { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 + echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_static_works+set}" = set; then ++if test "${lt_cv_prog_compiler_static_works+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_static_works=no ++ lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_static_works=yes ++ lt_cv_prog_compiler_static_works=yes + fi + else +- lt_prog_compiler_static_works=yes ++ lt_cv_prog_compiler_static_works=yes + fi + fi +- $rm conftest* ++ $rm -r conftest* + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 +-echo "${ECHO_T}$lt_prog_compiler_static_works" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } + +-if test x"$lt_prog_compiler_static_works" = xyes; then ++if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : + else + lt_prog_compiler_static= + fi + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 + echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +@@ -7841,21 +8156,21 @@ + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -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:7861: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:8164: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:7865: \$? = $ac_status" >&5 ++ echo "$as_me:8168: \$? = $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 + # So say no if there are warnings + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes +@@ -7925,22 +8240,23 @@ + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. +- exclude_expsyms="_GLOBAL_OFFSET_TABLE_" ++ exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. ++ # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; +@@ -7989,17 +8305,17 @@ + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in +- aix3* | aix4* | aix5*) ++ aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <&2 + + *** Warning: the GNU linker, at least up to release 2.9.1, is reported + *** to be unable to reliably create shared libraries on AIX. + *** Therefore, libtool is disabling shared libraries support. If you +@@ -8209,17 +8525,17 @@ + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + +- aix4* | aix5*) ++ aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. +@@ -8229,17 +8545,17 @@ + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. +- case $host_os in aix4.[23]|aix4.[23].*|aix5*) ++ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac +@@ -8501,21 +8817,20 @@ + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + whole_archive_flag_spec='' + link_all_deplibs=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' +- archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' +- module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' +- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds +- archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" ++ module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" ++ archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" ++ module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' + module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +@@ -9025,17 +9340,17 @@ + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +-aix4* | aix5*) ++aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH +@@ -9559,16 +9874,31 @@ + *) + dynamic_linker=no + ;; + esac + { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 + echo "${ECHO_T}$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + ++if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" ++fi ++ ++sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" ++if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" ++fi ++ ++sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" ++ + variables_saved_for_relink="PATH $shlibpath_var $runpath_var" + if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + + { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 + echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } + hardcode_action= +@@ -9878,17 +10208,17 @@ + + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi + { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 + echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } + if test $ac_cv_lib_dld_shl_load = yes; then +- lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" ++ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + else + { echo "$as_me:$LINENO: checking for dlopen" >&5 + echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } + if test "${ac_cv_func_dlopen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -10154,17 +10484,17 @@ + + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi + { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 + echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } + if test $ac_cv_lib_dld_dld_link = yes; then +- lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" ++ lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + fi + + + fi + + + fi + +@@ -10203,17 +10533,17 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross + else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext < + #endif + + #include + +@@ -10303,17 +10633,17 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross + else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext < + #endif + + #include + +@@ -10430,17 +10760,17 @@ + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + +-aix4* | aix5*) ++aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { echo "$as_me:$LINENO: result: $enable_shared" >&5 + echo "${ECHO_T}$enable_shared" >&6; } + +@@ -10486,16 +10816,17 @@ + enable_shared_with_static_runtimes \ + old_archive_cmds \ + old_archive_from_new_cmds \ + predep_objects \ + postdep_objects \ + predeps \ + postdeps \ + compiler_lib_search_path \ ++ compiler_lib_search_dirs \ + archive_cmds \ + archive_expsym_cmds \ + postinstall_cmds \ + postuninstall_cmds \ + old_archive_from_expsyms_cmds \ + allow_undefined_flag \ + no_undefined_flag \ + export_symbols_cmds \ +@@ -10546,17 +10877,17 @@ + + cat <<__EOF__ >> "$cfgfile" + #! $SHELL + + # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. + # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) + # NOTE: Changes made to this file will be lost: look at ltmain.sh. + # +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 + # Free Software Foundation, Inc. + # + # This file is part of GNU Libtool: + # Originally by Gordon Matzigkeit , 1996 + # + # This program is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation; either version 2 of the License, or +@@ -10782,16 +11113,20 @@ + # Dependencies to place before the objects being linked to create a + # shared library. + predeps=$lt_predeps + + # Dependencies to place after the objects being linked to create a + # shared library. + postdeps=$lt_postdeps + ++# The directories searched by this compiler when creating a shared ++# library ++compiler_lib_search_dirs=$lt_compiler_lib_search_dirs ++ + # The library search path used internally by the compiler when linking + # a shared library. + compiler_lib_search_path=$lt_compiler_lib_search_path + + # Method to check whether dependent libraries are shared objects. + deplibs_check_method=$lt_deplibs_check_method + + # Command to use when deplibs_check_method == file_magic. +@@ -11030,16 +11365,17 @@ + enable_shared_with_static_runtimes_CXX=no + + # Dependencies to place before and after the object being linked: + predep_objects_CXX= + postdep_objects_CXX= + predeps_CXX= + postdeps_CXX= + compiler_lib_search_path_CXX= ++compiler_lib_search_dirs_CXX= + + # Source file extension for C++ test sources. + ac_ext=cpp + + # Object file extension for compiled C++ test sources. + objext=o + objext_CXX=$objext + +@@ -11067,17 +11403,17 @@ + eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_compiler_boilerplate=`cat conftest.err` + $rm conftest* + + ac_outfile=conftest.$ac_objext + echo "$lt_simple_link_test_code" >conftest.$ac_ext + eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_linker_boilerplate=`cat conftest.err` +-$rm conftest* ++$rm -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld +@@ -11274,30 +11610,30 @@ + { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 + echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; +- aix4* | aix5*) ++ aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. +- case $host_os in aix4.[23]|aix4.[23].*|aix5*) ++ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done +@@ -11545,61 +11881,33 @@ + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + darwin* | rhapsody*) +- case $host_os in +- rhapsody* | darwin1.[012]) +- allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress' +- ;; +- *) # Darwin 1.3 on +- if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then +- allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' +- else +- case ${MACOSX_DEPLOYMENT_TARGET} in +- 10.[012]) +- allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' +- ;; +- 10.*) +- allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup' +- ;; +- esac +- fi +- ;; +- esac + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + whole_archive_flag_spec_CXX='' + link_all_deplibs_CXX=yes +- +- if test "$GXX" = yes ; then +- lt_int_apple_cc_single_mod=no ++ allow_undefined_flag_CXX="$_lt_dar_allow_undefined" ++ if test "$GXX" = yes ; then + output_verbose_link_cmd='echo' +- if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then +- lt_int_apple_cc_single_mod=yes ++ archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" ++ module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" ++ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" ++ module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" ++ if test "$lt_cv_apple_cc_single_mod" != "yes"; then ++ archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" ++ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +- if test "X$lt_int_apple_cc_single_mod" = Xyes ; then +- archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' +- else +- archive_cmds_CXX='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' +- fi +- module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' +- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds +- if test "X$lt_int_apple_cc_single_mod" = Xyes ; then +- archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- else +- archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- fi +- module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' + module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +@@ -11840,17 +12148,17 @@ + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; +- pgCC*) ++ pgCC* | pgcpp*) + # Portland Group C++ compiler + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + ;; +@@ -12247,17 +12555,16 @@ + esac + { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 + echo "${ECHO_T}$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$LD" + +- + cat > conftest.$ac_ext <&5 + echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_pic_works_CXX=no ++ lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:12743: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:13042: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:12747: \$? = $ac_status" >&5 ++ echo "$as_me:13046: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_pic_works_CXX=yes ++ lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +-if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then ++if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac + else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no + fi +@@ -12770,46 +13081,46 @@ + esac + + # + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" + { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 + echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_static_works_CXX+set}" = set; then ++if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_static_works_CXX=no ++ lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_static_works_CXX=yes ++ lt_cv_prog_compiler_static_works_CXX=yes + fi + else +- lt_prog_compiler_static_works_CXX=yes ++ lt_cv_prog_compiler_static_works_CXX=yes + fi + fi +- $rm conftest* ++ $rm -r conftest* + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_CXX" >&5 +-echo "${ECHO_T}$lt_prog_compiler_static_works_CXX" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; } + +-if test x"$lt_prog_compiler_static_works_CXX" = xyes; then ++if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : + else + lt_prog_compiler_static_CXX= + fi + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 + echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +@@ -12827,21 +13138,21 @@ + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -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:12847: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:13146: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:12851: \$? = $ac_status" >&5 ++ echo "$as_me:13150: \$? = $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 + # So say no if there are warnings + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes +@@ -12884,17 +13195,17 @@ + need_locks=no + fi + + { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 + echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in +- aix4* | aix5*) ++ aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | grep 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' + fi + ;; +@@ -12906,16 +13217,17 @@ + ;; + linux* | k*bsd*-gnu) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac ++ exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + + { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 + echo "${ECHO_T}$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + # + # Do we need to explicitly link libc? + # +@@ -13007,17 +13319,17 @@ + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +-aix4* | aix5*) ++aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH +@@ -13540,19 +13852,34 @@ + *) + dynamic_linker=no + ;; + esac + { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 + echo "${ECHO_T}$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +-variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +-if test "$GCC" = yes; then +- variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ++if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" ++fi ++ ++sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" ++if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" ++fi ++ ++sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" ++ ++variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ++if test "$GCC" = yes; then ++ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + + { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 + echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } + hardcode_action_CXX= + if test -n "$hardcode_libdir_flag_spec_CXX" || \ + test -n "$runpath_var_CXX" || \ + test "X$hardcode_automatic_CXX" = "Xyes" ; then +@@ -13623,16 +13950,17 @@ + enable_shared_with_static_runtimes_CXX \ + old_archive_cmds_CXX \ + old_archive_from_new_cmds_CXX \ + predep_objects_CXX \ + postdep_objects_CXX \ + predeps_CXX \ + postdeps_CXX \ + compiler_lib_search_path_CXX \ ++ compiler_lib_search_dirs_CXX \ + archive_cmds_CXX \ + archive_expsym_cmds_CXX \ + postinstall_cmds_CXX \ + postuninstall_cmds_CXX \ + old_archive_from_expsyms_cmds_CXX \ + allow_undefined_flag_CXX \ + no_undefined_flag_CXX \ + export_symbols_cmds_CXX \ +@@ -13871,16 +14199,20 @@ + # Dependencies to place before the objects being linked to create a + # shared library. + predeps=$lt_predeps_CXX + + # Dependencies to place after the objects being linked to create a + # shared library. + postdeps=$lt_postdeps_CXX + ++# The directories searched by this compiler when creating a shared ++# library ++compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX ++ + # The library search path used internally by the compiler when linking + # a shared library. + compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + + # Method to check whether dependent libraries are shared objects. + deplibs_check_method=$lt_deplibs_check_method + + # Command to use when deplibs_check_method == file_magic. +@@ -14085,17 +14417,17 @@ + eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_compiler_boilerplate=`cat conftest.err` + $rm conftest* + + ac_outfile=conftest.$ac_objext + echo "$lt_simple_link_test_code" >conftest.$ac_ext + eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_linker_boilerplate=`cat conftest.err` +-$rm conftest* ++$rm -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + CC=${F77-"f77"} + compiler=$CC + compiler_F77=$CC + for cc_temp in $compiler""; do +@@ -14123,17 +14455,17 @@ + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; +-aix4* | aix5*) ++aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { echo "$as_me:$LINENO: result: $enable_shared" >&5 + echo "${ECHO_T}$enable_shared" >&6; } + +@@ -14388,53 +14720,53 @@ + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_F77"; then + + { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 + echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_pic_works_F77+set}" = set; then ++if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_pic_works_F77=no ++ lt_cv_prog_compiler_pic_works_F77=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_F77" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:14424: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14744: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:14428: \$? = $ac_status" >&5 ++ echo "$as_me:14748: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_pic_works_F77=yes ++ lt_cv_prog_compiler_pic_works_F77=yes + fi + fi + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_F77" >&6; } + +-if test x"$lt_prog_compiler_pic_works_F77" = xyes; then ++if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then + case $lt_prog_compiler_pic_F77 in + "" | " "*) ;; + *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; + esac + else + lt_prog_compiler_pic_F77= + lt_prog_compiler_can_build_shared_F77=no + fi +@@ -14451,46 +14783,46 @@ + esac + + # + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" + { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 + echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_static_works_F77+set}" = set; then ++if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_static_works_F77=no ++ lt_cv_prog_compiler_static_works_F77=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_static_works_F77=yes ++ lt_cv_prog_compiler_static_works_F77=yes + fi + else +- lt_prog_compiler_static_works_F77=yes ++ lt_cv_prog_compiler_static_works_F77=yes + fi + fi +- $rm conftest* ++ $rm -r conftest* + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_F77" >&5 +-echo "${ECHO_T}$lt_prog_compiler_static_works_F77" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_static_works_F77" >&6; } + +-if test x"$lt_prog_compiler_static_works_F77" = xyes; then ++if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then + : + else + lt_prog_compiler_static_F77= + fi + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 + echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +@@ -14508,21 +14840,21 @@ + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -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:14528: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14848: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:14532: \$? = $ac_status" >&5 ++ echo "$as_me:14852: \$? = $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 + # So say no if there are warnings + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_F77=yes +@@ -14592,22 +14924,23 @@ + export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms_F77= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. +- exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_" ++ exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. ++ # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; +@@ -14656,17 +14989,17 @@ + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in +- aix3* | aix4* | aix5*) ++ aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs_F77=no + cat <&2 + + *** Warning: the GNU linker, at least up to release 2.9.1, is reported + *** to be unable to reliably create shared libraries on AIX. + *** Therefore, libtool is disabling shared libraries support. If you +@@ -14876,17 +15209,17 @@ + hardcode_minus_L_F77=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct_F77=unsupported + fi + ;; + +- aix4* | aix5*) ++ aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. +@@ -14896,17 +15229,17 @@ + else + export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. +- case $host_os in aix4.[23]|aix4.[23].*|aix5*) ++ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac +@@ -15148,21 +15481,20 @@ + archive_cmds_need_lc_F77=no + hardcode_direct_F77=no + hardcode_automatic_F77=yes + hardcode_shlibpath_var_F77=unsupported + whole_archive_flag_spec_F77='' + link_all_deplibs_F77=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' +- archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' +- module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' +- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds +- archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" ++ module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" ++ archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" ++ module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' + module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +@@ -15621,17 +15953,17 @@ + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +-aix4* | aix5*) ++aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH +@@ -16154,16 +16486,31 @@ + *) + dynamic_linker=no + ;; + esac + { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 + echo "${ECHO_T}$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + ++if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" ++fi ++ ++sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" ++if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" ++fi ++ ++sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" ++ + variables_saved_for_relink="PATH $shlibpath_var $runpath_var" + if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + + { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 + echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } + hardcode_action_F77= +@@ -16237,16 +16584,17 @@ + enable_shared_with_static_runtimes_F77 \ + old_archive_cmds_F77 \ + old_archive_from_new_cmds_F77 \ + predep_objects_F77 \ + postdep_objects_F77 \ + predeps_F77 \ + postdeps_F77 \ + compiler_lib_search_path_F77 \ ++ compiler_lib_search_dirs_F77 \ + archive_cmds_F77 \ + archive_expsym_cmds_F77 \ + postinstall_cmds_F77 \ + postuninstall_cmds_F77 \ + old_archive_from_expsyms_cmds_F77 \ + allow_undefined_flag_F77 \ + no_undefined_flag_F77 \ + export_symbols_cmds_F77 \ +@@ -16485,16 +16833,20 @@ + # Dependencies to place before the objects being linked to create a + # shared library. + predeps=$lt_predeps_F77 + + # Dependencies to place after the objects being linked to create a + # shared library. + postdeps=$lt_postdeps_F77 + ++# The directories searched by this compiler when creating a shared ++# library ++compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 ++ + # The library search path used internally by the compiler when linking + # a shared library. + compiler_lib_search_path=$lt_compiler_lib_search_path_F77 + + # Method to check whether dependent libraries are shared objects. + deplibs_check_method=$lt_deplibs_check_method + + # Command to use when deplibs_check_method == file_magic. +@@ -16659,17 +17011,17 @@ + eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_compiler_boilerplate=`cat conftest.err` + $rm conftest* + + ac_outfile=conftest.$ac_objext + echo "$lt_simple_link_test_code" >conftest.$ac_ext + eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_linker_boilerplate=`cat conftest.err` +-$rm conftest* ++$rm -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + CC=${GCJ-"gcj"} + compiler=$CC + compiler_GCJ=$CC + for cc_temp in $compiler""; do +@@ -16708,21 +17060,21 @@ + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:16728: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:17068: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:16732: \$? = $ac_status" >&5 ++ echo "$as_me:17072: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi +@@ -16772,17 +17124,17 @@ + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries +- lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ++ + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_GCJ='-fno-common' + ;; + +@@ -16842,17 +17194,17 @@ + lt_prog_compiler_wl_GCJ='-Wl,' + ;; + esac + ;; + + mingw* | cygwin* | pw32* | os2*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). +- lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ++ + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl_GCJ='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) +@@ -16982,53 +17334,53 @@ + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_GCJ"; then + + { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 + echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then ++if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_pic_works_GCJ=no ++ lt_cv_prog_compiler_pic_works_GCJ=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_GCJ" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:17018: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:17358: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:17022: \$? = $ac_status" >&5 ++ echo "$as_me:17362: \$? = $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. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_pic_works_GCJ=yes ++ lt_cv_prog_compiler_pic_works_GCJ=yes + fi + fi + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_GCJ" >&6; } + +-if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then ++if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then + case $lt_prog_compiler_pic_GCJ in + "" | " "*) ;; + *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; + esac + else + lt_prog_compiler_pic_GCJ= + lt_prog_compiler_can_build_shared_GCJ=no + fi +@@ -17045,46 +17397,46 @@ + esac + + # + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" + { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 + echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_prog_compiler_static_works_GCJ+set}" = set; then ++if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- lt_prog_compiler_static_works_GCJ=no ++ lt_cv_prog_compiler_static_works_GCJ=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then +- lt_prog_compiler_static_works_GCJ=yes ++ lt_cv_prog_compiler_static_works_GCJ=yes + fi + else +- lt_prog_compiler_static_works_GCJ=yes ++ lt_cv_prog_compiler_static_works_GCJ=yes + fi + fi +- $rm conftest* ++ $rm -r conftest* + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_GCJ" >&5 +-echo "${ECHO_T}$lt_prog_compiler_static_works_GCJ" >&6; } ++{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 ++echo "${ECHO_T}$lt_cv_prog_compiler_static_works_GCJ" >&6; } + +-if test x"$lt_prog_compiler_static_works_GCJ" = xyes; then ++if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then + : + else + lt_prog_compiler_static_GCJ= + fi + + + { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 + echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +@@ -17102,21 +17454,21 @@ + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -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:17122: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:17462: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:17126: \$? = $ac_status" >&5 ++ echo "$as_me:17466: \$? = $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 + # So say no if there are warnings + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_GCJ=yes +@@ -17186,22 +17538,23 @@ + export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms_GCJ= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. +- exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_" ++ exclude_expsyms_GCJ='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. ++ # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; +@@ -17250,17 +17603,17 @@ + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in +- aix3* | aix4* | aix5*) ++ aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs_GCJ=no + cat <&2 + + *** Warning: the GNU linker, at least up to release 2.9.1, is reported + *** to be unable to reliably create shared libraries on AIX. + *** Therefore, libtool is disabling shared libraries support. If you +@@ -17470,17 +17823,17 @@ + hardcode_minus_L_GCJ=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct_GCJ=unsupported + fi + ;; + +- aix4* | aix5*) ++ aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. +@@ -17490,17 +17843,17 @@ + else + export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. +- case $host_os in aix4.[23]|aix4.[23].*|aix5*) ++ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac +@@ -17762,21 +18115,20 @@ + archive_cmds_need_lc_GCJ=no + hardcode_direct_GCJ=no + hardcode_automatic_GCJ=yes + hardcode_shlibpath_var_GCJ=unsupported + whole_archive_flag_spec_GCJ='' + link_all_deplibs_GCJ=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' +- archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' +- module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' +- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds +- archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ archive_cmds_GCJ="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" ++ module_cmds_GCJ="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" ++ archive_expsym_cmds_GCJ="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" ++ module_expsym_cmds_GCJ="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' + module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +@@ -18235,17 +18587,17 @@ + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +-aix4* | aix5*) ++aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH +@@ -18768,16 +19120,31 @@ + *) + dynamic_linker=no + ;; + esac + { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 + echo "${ECHO_T}$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + ++if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" ++fi ++ ++sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" ++if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" ++fi ++ ++sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" ++ + variables_saved_for_relink="PATH $shlibpath_var $runpath_var" + if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + + { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 + echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } + hardcode_action_GCJ= +@@ -18851,16 +19218,17 @@ + enable_shared_with_static_runtimes_GCJ \ + old_archive_cmds_GCJ \ + old_archive_from_new_cmds_GCJ \ + predep_objects_GCJ \ + postdep_objects_GCJ \ + predeps_GCJ \ + postdeps_GCJ \ + compiler_lib_search_path_GCJ \ ++ compiler_lib_search_dirs_GCJ \ + archive_cmds_GCJ \ + archive_expsym_cmds_GCJ \ + postinstall_cmds_GCJ \ + postuninstall_cmds_GCJ \ + old_archive_from_expsyms_cmds_GCJ \ + allow_undefined_flag_GCJ \ + no_undefined_flag_GCJ \ + export_symbols_cmds_GCJ \ +@@ -19099,16 +19467,20 @@ + # Dependencies to place before the objects being linked to create a + # shared library. + predeps=$lt_predeps_GCJ + + # Dependencies to place after the objects being linked to create a + # shared library. + postdeps=$lt_postdeps_GCJ + ++# The directories searched by this compiler when creating a shared ++# library ++compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_GCJ ++ + # The library search path used internally by the compiler when linking + # a shared library. + compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ + + # Method to check whether dependent libraries are shared objects. + deplibs_check_method=$lt_deplibs_check_method + + # Command to use when deplibs_check_method == file_magic. +@@ -19272,17 +19644,17 @@ + eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_compiler_boilerplate=`cat conftest.err` + $rm conftest* + + ac_outfile=conftest.$ac_objext + echo "$lt_simple_link_test_code" >conftest.$ac_ext + eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err + _lt_linker_boilerplate=`cat conftest.err` +-$rm conftest* ++$rm -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + CC=${RC-"windres"} + compiler=$CC + compiler_RC=$CC + for cc_temp in $compiler""; do +@@ -19332,16 +19704,17 @@ + enable_shared_with_static_runtimes_RC \ + old_archive_cmds_RC \ + old_archive_from_new_cmds_RC \ + predep_objects_RC \ + postdep_objects_RC \ + predeps_RC \ + postdeps_RC \ + compiler_lib_search_path_RC \ ++ compiler_lib_search_dirs_RC \ + archive_cmds_RC \ + archive_expsym_cmds_RC \ + postinstall_cmds_RC \ + postuninstall_cmds_RC \ + old_archive_from_expsyms_cmds_RC \ + allow_undefined_flag_RC \ + no_undefined_flag_RC \ + export_symbols_cmds_RC \ +@@ -19580,16 +19953,20 @@ + # Dependencies to place before the objects being linked to create a + # shared library. + predeps=$lt_predeps_RC + + # Dependencies to place after the objects being linked to create a + # shared library. + postdeps=$lt_postdeps_RC + ++# The directories searched by this compiler when creating a shared ++# library ++compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_RC ++ + # The library search path used internally by the compiler when linking + # a shared library. + compiler_lib_search_path=$lt_compiler_lib_search_path_RC + + # Method to check whether dependent libraries are shared objects. + deplibs_check_method=$lt_deplibs_check_method + + # Command to use when deplibs_check_method == file_magic. +@@ -22916,32 +23293,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 +@@ -22951,16 +23330,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 +@@ -22979,32 +23359,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 +@@ -23014,16 +23396,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 +@@ -23048,16 +23431,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 " +@@ -23065,16 +23449,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 +@@ -23085,16 +23470,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 +@@ -23111,16 +23497,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 +@@ -23885,28 +24272,16 @@ + # 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 + +-{ 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 + # **************** + + if test "$gecko_cv_have_gecko" = "yes"; then + + case "$gecko_cv_gecko" in + mozilla) gecko_cv_gecko_flavour=mozilla ;; +@@ -24229,59 +24604,16 @@ + + 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; } + +-{ 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 + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + +@@ -26162,114 +26494,140 @@ + + fi # with_engine = mozilla + + + # Ensure we have an integer variable to compare with + 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 + HAVE_MOZILLA_TOOLKIT_TRUE='#' + 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 + HAVE_GECKO_DEBUG_TRUE='#' + 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 + HAVE_GECKO_1_7_TRUE='#' + 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 + HAVE_GECKO_1_8_TRUE='#' + 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 + HAVE_GECKO_1_8_1_TRUE='#' + 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 + HAVE_GECKO_1_9_TRUE='#' + HAVE_GECKO_1_9_FALSE= + fi + +- if test "x$_GECKO_HOME" != "x"; 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 "$gecko_cv_have_debug" = "yes"; then ++ ++ ++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 ++ ++ ++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 + + +- if test "$with_engine" = "mozilla"; then ++ ++ ++if test "$with_engine" = "mozilla"; then + WITH_GECKO_ENGINE_TRUE= + WITH_GECKO_ENGINE_FALSE='#' + else + WITH_GECKO_ENGINE_TRUE='#' + 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 + HAVE_XULRUNNER_TRUE='#' + 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 + HAVE_MOZILLA_PSM_TRUE='#' + HAVE_MOZILLA_PSM_FALSE= + fi + +- if test "$enable_filepicker" = "yes"; then ++ ++ ++if test "$enable_filepicker" = "yes"; then + ENABLE_FILEPICKER_TRUE= + ENABLE_FILEPICKER_FALSE='#' + else + ENABLE_FILEPICKER_TRUE='#' + ENABLE_FILEPICKER_FALSE= + fi + + +@@ -26724,36 +27082,42 @@ + WEASEL_UA_VERSION=3.0 + + + + fi + + + +- if test "$libxul_cv_have_libxul" = "yes"; then ++ ++ ++if test "$libxul_cv_have_libxul" = "yes"; then + HAVE_LIBXUL_TRUE= + HAVE_LIBXUL_FALSE='#' + else + HAVE_LIBXUL_TRUE='#' + 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 + HAVE_LIBXUL_DEBUG_TRUE='#' + HAVE_LIBXUL_DEBUG_FALSE= + fi + + + + +- if test "$with_engine" = "xulrunner"; then ++ ++ ++if test "$with_engine" = "xulrunner"; then + WITH_XULRUNNER_ENGINE_TRUE= + WITH_XULRUNNER_ENGINE_FALSE='#' + else + WITH_XULRUNNER_ENGINE_TRUE='#' + WITH_XULRUNNER_ENGINE_FALSE= + fi + + +@@ -26877,17 +27241,19 @@ + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + : + fi + + + 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 + WITH_WEBKIT_ENGINE_TRUE='#' + WITH_WEBKIT_ENGINE_FALSE= + fi + + +@@ -27420,53 +27786,16 @@ + have_python=no + else + PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS + PYGTK_LIBS=$pkg_cv_PYGTK_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 + 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 +- + + + + fi + + if test "$have_python" != "no"; then + { echo "$as_me:$LINENO: checking for pygtk defs" >&5 + echo $ECHO_N "checking for pygtk defs... $ECHO_C" >&6; } +@@ -27826,141 +28155,30 @@ + : + fi + fi + + + fi + + 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 . +-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 . +-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 + + cat >>confdefs.h <<\_ACEOF + #define HAVE_PRIVATE_PLUGINS 1 + _ACEOF + + fi + + else # with_engine = mozilla + 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 + ENABLE_DESKTOP_FILE_PLUGIN_TRUE='#' + ENABLE_DESKTOP_FILE_PLUGIN_FALSE= + fi + + +@@ -28074,17 +28292,19 @@ + if test "$enable_zeroconf" = "yes"; then + + cat >>confdefs.h <<\_ACEOF + #define ENABLE_ZEROCONF 1 + _ACEOF + + fi + +- if test "$enable_zeroconf" = "yes"; then ++ ++ ++if test "$enable_zeroconf" = "yes"; then + ENABLE_ZEROCONF_TRUE= + ENABLE_ZEROCONF_FALSE='#' + else + ENABLE_ZEROCONF_TRUE='#' + ENABLE_ZEROCONF_FALSE= + fi + + +@@ -28264,17 +28484,19 @@ + if test "$enable_network_manager" = "yes"; then + + cat >>confdefs.h <<\_ACEOF + #define ENABLE_NETWORK_MANAGER 1 + _ACEOF + + fi + +- if test "$enable_network_manager" = "yes"; then ++ ++ ++if test "$enable_network_manager" = "yes"; then + ENABLE_NETWORK_MANAGER_TRUE= + ENABLE_NETWORK_MANAGER_FALSE='#' + else + ENABLE_NETWORK_MANAGER_TRUE='#' + ENABLE_NETWORK_MANAGER_FALSE= + fi + + +@@ -28417,17 +28639,16 @@ + { (exit 1); exit 1; }; } + else + SPELLCHECKER_CFLAGS=$pkg_cv_SPELLCHECKER_CFLAGS + SPELLCHECKER_LIBS=$pkg_cv_SPELLCHECKER_LIBS + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + : + fi +- fi + + + + + cat >>confdefs.h <<\_ACEOF + #define ENABLE_SPELLCHECKER 1 + _ACEOF + +@@ -30499,30 +30720,16 @@ + + if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 + echo "$as_me: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined. + 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 + echo "$as_me: error: conditional \"HAVE_MOZILLA_TOOLKIT\" was never defined. + 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 +@@ -30576,23 +30783,16 @@ + 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_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 + echo "$as_me: error: conditional \"WITH_GECKO_ENGINE\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${HAVE_XULRUNNER_TRUE}" && test -z "${HAVE_XULRUNNER_FALSE}"; then +@@ -31409,16 +31609,18 @@ + + + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF + ECHO!$ECHO$ac_delim + AR!$AR$ac_delim + RANLIB!$RANLIB$ac_delim ++DSYMUTIL!$DSYMUTIL$ac_delim ++NMEDIT!$NMEDIT$ac_delim + CPP!$CPP$ac_delim + CXX!$CXX$ac_delim + CXXFLAGS!$CXXFLAGS$ac_delim + ac_ct_CXX!$ac_ct_CXX$ac_delim + CXXDEPMODE!$CXXDEPMODE$ac_delim + am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim + am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim + CXXCPP!$CXXCPP$ac_delim +@@ -31463,32 +31665,30 @@ + DBUS_LIBS!$DBUS_LIBS$ac_delim + DBUS_BINDING_TOOL!$DBUS_BINDING_TOOL$ac_delim + GCONF_SCHEMA_CONFIG_SOURCE!$GCONF_SCHEMA_CONFIG_SOURCE$ac_delim + GCONF_SCHEMA_FILE_DIR!$GCONF_SCHEMA_FILE_DIR$ac_delim + GCONF_SCHEMAS_INSTALL_TRUE!$GCONF_SCHEMAS_INSTALL_TRUE$ac_delim + 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 + GECKO_HOME!$GECKO_HOME$ac_delim + GECKO_PREFIX!$GECKO_PREFIX$ac_delim + GECKO_EXTRA_LIBS!$GECKO_EXTRA_LIBS$ac_delim + GECKO_GLUE_LIBS!$GECKO_GLUE_LIBS$ac_delim + GECKO_CFLAGS!$GECKO_CFLAGS$ac_delim + GECKO_LIBS!$GECKO_LIBS$ac_delim + 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 + HAVE_GECKO_1_8_FALSE!$HAVE_GECKO_1_8_FALSE$ac_delim + HAVE_GECKO_1_8_1_TRUE!$HAVE_GECKO_1_8_1_TRUE$ac_delim + 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 +@@ -31503,17 +31703,16 @@ + HAVE_MOZILLA_PSM_TRUE!$HAVE_MOZILLA_PSM_TRUE$ac_delim + HAVE_MOZILLA_PSM_FALSE!$HAVE_MOZILLA_PSM_FALSE$ac_delim + 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 +-LIBXUL_LIBDIR!$LIBXUL_LIBDIR$ac_delim + _ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 + echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } +@@ -31545,16 +31744,17 @@ + cat >>$CONFIG_STATUS <<_ACEOF + CEOF$ac_eof + _ACEOF + + + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF ++LIBXUL_LIBDIR!$LIBXUL_LIBDIR$ac_delim + LIBXUL_CXXCPPFLAGS!$LIBXUL_CXXCPPFLAGS$ac_delim + LIBXUL_CXXFLAGS!$LIBXUL_CXXFLAGS$ac_delim + LIBXUL_LDFLAGS!$LIBXUL_LDFLAGS$ac_delim + LIBXUL_LIBS!$LIBXUL_LIBS$ac_delim + HAVE_LIBXUL_TRUE!$HAVE_LIBXUL_TRUE$ac_delim + HAVE_LIBXUL_FALSE!$HAVE_LIBXUL_FALSE$ac_delim + HAVE_LIBXUL_DEBUG_TRUE!$HAVE_LIBXUL_DEBUG_TRUE$ac_delim + HAVE_LIBXUL_DEBUG_FALSE!$HAVE_LIBXUL_DEBUG_FALSE$ac_delim +@@ -31636,17 +31836,17 @@ + GTK_DOC_USE_LIBTOOL_FALSE!$GTK_DOC_USE_LIBTOOL_FALSE$ac_delim + SVN_ROOT!$SVN_ROOT$ac_delim + SVN_MODULE!$SVN_MODULE$ac_delim + SVN_BRANCH!$SVN_BRANCH$ac_delim + LIBOBJS!$LIBOBJS$ac_delim + LTLIBOBJS!$LTLIBOBJS$ac_delim + _ACEOF + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 92; then ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 90; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 + echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +@@ -32080,19 +32280,18 @@ + "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. +- # 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 10q "$mf" | grep '^#.*generated by automake' > /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\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || + echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ +Index: epiphany-2.22.1.1/doc/reference/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/doc/reference/Makefile.in ++++ epiphany-2.22.1.1/doc/reference/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -104,16 +104,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -155,19 +156,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -210,16 +238,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/embed/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/embed/Makefile.in ++++ epiphany-2.22.1.1/embed/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -83,50 +83,41 @@ + libephyembed_la-ephy-history-item.lo \ + libephyembed_la-ephy-password-manager.lo \ + libephyembed_la-ephy-permission-manager.lo $(am__objects_1) \ + $(am__objects_1) + am__objects_2 = libephyembed_la-ephy-embed-type-builtins.lo + 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. -I$(top_builddir)@am__isrc@ ++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/||"`;; \ + *) f=$$p;; \ + esac; + am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; + am__installdirs = "$(DESTDIR)$(headerdir)" + headerDATA_INSTALL = $(INSTALL_DATA) +@@ -171,16 +162,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -222,19 +214,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -277,16 +296,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/embed/mozilla/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/embed/mozilla/Makefile.in ++++ epiphany-2.22.1.1/embed/mozilla/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -156,41 +156,35 @@ + libephymozillaembed_la-mozilla-embed-event.lo \ + libephymozillaembed_la-mozilla-embed-find.lo \ + libephymozillaembed_la-mozilla-embed-persist.lo \ + libephymozillaembed_la-mozilla-embed-single.lo \ + libephymozillaembed_la-mozilla-history-item.lo \ + 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. -I$(top_builddir)@am__isrc@ ++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) + am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; + am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; + am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +@@ -237,16 +231,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -288,19 +283,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -343,16 +365,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -522,17 +545,17 @@ + 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\" \ ++ -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) \ +@@ -628,317 +651,321 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-embed-find.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-embed-persist.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-embed-single.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-embed.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libephymozillaembed_la-mozilla-history-item.Plo@am__quote@ + @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-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-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-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 + + clean-libtool: + -rm -rf .libs _libs ++ ++distclean-libtool: ++ -rm -f libtool ++uninstall-info-am: + install-xptDATA: $(xpt_DATA) + @$(NORMAL_INSTALL) +- test -z "$(xptdir)" || $(MKDIR_P) "$(DESTDIR)$(xptdir)" ++ test -z "$(xptdir)" || $(mkdir_p) "$(DESTDIR)$(xptdir)" + @list='$(xpt_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(xptDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(xptdir)/$$f'"; \ + $(xptDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(xptdir)/$$f"; \ + done + + uninstall-xptDATA: +@@ -1024,17 +1051,17 @@ + || exit 1; \ + fi; \ + done + check-am: all-am + check: check-am + all-am: Makefile $(LTLIBRARIES) $(DATA) + installdirs: + for dir in "$(DESTDIR)$(xptdir)"; do \ +- test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done + install: install-am + install-exec: install-exec-am + install-data: install-data-am + uninstall: uninstall-am + + install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am +@@ -1099,29 +1126,25 @@ + pdf: pdf-am + + pdf-am: + + ps: ps-am + + ps-am: + +-uninstall-am: uninstall-xptDATA +- +-.MAKE: install-am install-strip ++uninstall-am: uninstall-info-am uninstall-xptDATA + + .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 install-xptDATA 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-xptDATA ++ uninstall-am uninstall-info-am uninstall-xptDATA + + # 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-2.22.1.1/gtk-doc.make +=================================================================== +--- /dev/null ++++ epiphany-2.22.1.1/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-2.22.1.1/plugins/desktop-file/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/plugins/desktop-file/Makefile.in ++++ epiphany-2.22.1.1/plugins/desktop-file/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -59,32 +59,27 @@ + pluginLTLIBRARIES_INSTALL = $(INSTALL) + LTLIBRARIES = $(plugin_LTLIBRARIES) + am__DEPENDENCIES_1 = + libdesktopfileplugin_la_DEPENDENCIES = $(am__DEPENDENCIES_1) + am_libdesktopfileplugin_la_OBJECTS = \ + 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. -I$(top_builddir)@am__isrc@ ++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 + CTAGS = ctags + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ + ALL_LINGUAS = @ALL_LINGUAS@ +@@ -122,16 +117,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -173,19 +169,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -228,16 +251,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -400,28 +424,28 @@ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + 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) --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) --mode=uninstall rm -f '$(DESTDIR)$(plugindir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(plugindir)/$$p"; \ + done + + clean-pluginLTLIBRARIES: + -test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES) + @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ +@@ -470,16 +494,20 @@ + @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 + + 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; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +Index: epiphany-2.22.1.1/src/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/src/Makefile.in ++++ epiphany-2.22.1.1/src/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -181,65 +181,65 @@ + $(nodist_libpyphany_la_OBJECTS) + @ENABLE_PYTHON_TRUE@am_libpyphany_la_rpath = + am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(headerdir)" \ + "$(DESTDIR)$(pydefsdir)" + binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) + PROGRAMS = $(bin_PROGRAMS) + am_epiphany_OBJECTS = epiphany-ephy-main.$(OBJEXT) + epiphany_OBJECTS = $(am_epiphany_OBJECTS) +-@WITH_GECKO_ENGINE_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \ ++@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 = $(am__DEPENDENCIES_1) \ + @WITH_GECKO_ENGINE_TRUE@ $(top_builddir)/embed/mozilla/libephymozillaembed.la +-@WITH_XULRUNNER_ENGINE_TRUE@am__DEPENDENCIES_3 = \ ++@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_4 = $(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_5 = $(am__DEPENDENCIES_1) +-@ENABLE_PYTHON_TRUE@am__DEPENDENCIES_6 = 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__DEPENDENCIES_2) $(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_3) \ +- $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ ++ $(top_builddir)/lib/egg/libegg.la $(am__DEPENDENCIES_5) \ ++ $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ +- $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_6) \ ++ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_1) +-epiphany_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ +- $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ +- $(CXXFLAGS) $(epiphany_LDFLAGS) $(LDFLAGS) -o $@ +-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ ++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 $@ + 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 = $(libephymain_la_SOURCES) $(nodist_libephymain_la_SOURCES) \ + $(libpyphany_la_SOURCES) $(nodist_libpyphany_la_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 \ +@@ -296,16 +296,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -347,19 +348,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -402,16 +430,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -878,22 +907,22 @@ + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + 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) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ +@@ -911,17 +940,17 @@ + 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@ +@@ -1262,46 +1291,46 @@ + 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@ $(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 $@ $< + + epiphany-dummy.o: dummy.cpp +-@am__fastdepCXX_TRUE@ $(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@ mv -f $(DEPDIR)/epiphany-dummy.Tpo $(DEPDIR)/epiphany-dummy.Po ++@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@ $(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@ mv -f $(DEPDIR)/epiphany-dummy.Tpo $(DEPDIR)/epiphany-dummy.Po ++@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: +Index: epiphany-2.22.1.1/intltool-extract.in +=================================================================== +--- epiphany-2.22.1.1.orig/intltool-extract.in ++++ epiphany-2.22.1.1/intltool-extract.in +@@ -726,16 +726,28 @@ + my $before = $`; + $message =~ s/\\\"/\"/g; + $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 +Index: epiphany-2.22.1.1/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/Makefile.in ++++ epiphany-2.22.1.1/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -116,16 +116,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -167,19 +168,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -222,16 +250,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -782,36 +811,34 @@ + pdf: pdf-recursive + + pdf-am: + + ps: ps-recursive + + 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-shar dist-tarZ dist-zip distcheck distclean \ ++.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-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 ++ 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). + # Only build this when in an svn checkout. + + ChangeLog: + @if test -f $(top_srcdir)/.svn/entries; then \ + svn log -v --xml -r HEAD:7394 $(SVN_ROOT)/$(SVN_MODULE)/$(SVN_BRANCH) | \ +Index: epiphany-2.22.1.1/data/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/Makefile.in ++++ epiphany-2.22.1.1/data/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -127,16 +127,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -178,19 +179,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -233,16 +261,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/data/art/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/art/Makefile.in ++++ epiphany-2.22.1.1/data/art/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -99,16 +99,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -150,19 +151,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -205,16 +233,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/data/chrome/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/chrome/Makefile.in ++++ epiphany-2.22.1.1/data/chrome/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -103,16 +103,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -154,19 +155,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -209,16 +237,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/data/glade/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/glade/Makefile.in ++++ epiphany-2.22.1.1/data/glade/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -98,16 +98,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -149,19 +150,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -204,16 +232,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/data/icons/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/icons/Makefile.in ++++ epiphany-2.22.1.1/data/icons/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -90,16 +90,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -141,19 +142,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -196,16 +224,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/data/ui/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/data/ui/Makefile.in ++++ epiphany-2.22.1.1/data/ui/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -98,16 +98,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -149,19 +150,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -204,16 +232,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/doc/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/doc/Makefile.in ++++ epiphany-2.22.1.1/doc/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -101,16 +101,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -152,19 +153,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -207,16 +235,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/embed/webkit/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/embed/webkit/Makefile.in ++++ epiphany-2.22.1.1/embed/webkit/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -54,28 +54,27 @@ + am_libephywebkitembed_la_OBJECTS = \ + libephywebkitembed_la-webkit-embed.lo \ + libephywebkitembed_la-webkit-embed-find.lo \ + libephywebkitembed_la-webkit-embed-persist.lo \ + libephywebkitembed_la-webkit-embed-prefs.lo \ + libephywebkitembed_la-webkit-embed-single.lo \ + libephywebkitembed_la-webkit-history-item.lo + libephywebkitembed_la_OBJECTS = $(am_libephywebkitembed_la_OBJECTS) +-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ ++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 + CTAGS = ctags + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ + ALL_LINGUAS = @ALL_LINGUAS@ +@@ -113,16 +112,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -164,19 +164,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -219,16 +246,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -478,16 +506,20 @@ + @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 + + 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; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +Index: epiphany-2.22.1.1/help/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/help/Makefile.in ++++ epiphany-2.22.1.1/help/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -113,16 +113,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -164,19 +165,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -219,16 +247,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/lib/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/lib/Makefile.in ++++ epiphany-2.22.1.1/lib/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -102,40 +102,35 @@ + libephymisc_la-ephy-time-helpers.lo \ + libephymisc_la-ephy-zoom.lo $(am__objects_1) $(am__objects_1) \ + $(am__objects_2) + am__objects_3 = libephymisc_la-ephy-lib-type-builtins.lo \ + libephymisc_la-ephy-marshal.lo + 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. -I$(top_builddir)@am__isrc@ ++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/||"`;; \ + *) f=$$p;; \ + esac; + am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; + am__installdirs = "$(DESTDIR)$(headerdir)" + headerDATA_INSTALL = $(INSTALL_DATA) +@@ -181,16 +176,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -232,19 +228,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -287,16 +310,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/lib/egg/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/lib/egg/Makefile.in ++++ epiphany-2.22.1.1/lib/egg/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -60,31 +60,27 @@ + libegg_la-eel-app-launch-context.lo + am__objects_2 = + am_libegg_la_OBJECTS = $(am__objects_1) $(am__objects_2) + am__objects_3 = libegg_la-eggmarshalers.lo \ + libegg_la-eggtypebuiltins.lo + 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. -I$(top_builddir)@am__isrc@ ++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) + ETAGS = etags + CTAGS = ctags + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +@@ -123,16 +119,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -174,19 +171,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -229,16 +253,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -526,16 +551,20 @@ + @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 + + 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; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +Index: epiphany-2.22.1.1/lib/widgets/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/lib/widgets/Makefile.in ++++ epiphany-2.22.1.1/lib/widgets/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -57,32 +57,27 @@ + libephywidgets_la-ephy-search-entry.lo \ + libephywidgets_la-ephy-spinner.lo \ + libephywidgets_la-ephy-spinner-tool-item.lo \ + libephywidgets_la-ephy-tree-model-node.lo \ + libephywidgets_la-ephy-tree-model-sort.lo \ + 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. -I$(top_builddir)@am__isrc@ ++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 + CTAGS = ctags + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ + ALL_LINGUAS = @ALL_LINGUAS@ +@@ -120,16 +115,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -171,19 +167,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -226,16 +249,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +@@ -525,16 +549,20 @@ + @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 + + 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; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +Index: epiphany-2.22.1.1/plugins/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/plugins/Makefile.in ++++ epiphany-2.22.1.1/plugins/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -97,16 +97,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -148,19 +149,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -203,16 +231,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ +Index: epiphany-2.22.1.1/src/bookmarks/Makefile.in +=================================================================== +--- epiphany-2.22.1.1.orig/src/bookmarks/Makefile.in ++++ epiphany-2.22.1.1/src/bookmarks/Makefile.in +@@ -1,13 +1,13 @@ +-# Makefile.in generated by automake 1.10 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 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. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY, to the extent permitted by law; without + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. +@@ -81,32 +81,27 @@ + libephybookmarks_la-ephy-topics-palette.lo \ + libephybookmarks_la-ephy-nodes-cover.lo $(am__objects_1) \ + $(am__objects_1) + am__objects_2 = libephybookmarks_la-ephy-bookmarks-type-builtins.lo + am__objects_3 = $(am__objects_2) + 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. -I$(top_builddir)@am__isrc@ ++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) + am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; + am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +@@ -154,16 +149,17 @@ + DEFS = @DEFS@ + DEPDIR = @DEPDIR@ + DEPENDENCIES_CFLAGS = @DEPENDENCIES_CFLAGS@ + DEPENDENCIES_LIBS = @DEPENDENCIES_LIBS@ + DESKTOP_FILE_PLUGIN_DEP_CFLAGS = @DESKTOP_FILE_PLUGIN_DEP_CFLAGS@ + DESKTOP_FILE_PLUGIN_DEP_LIBS = @DESKTOP_FILE_PLUGIN_DEP_LIBS@ + DISABLE_DEPRECATED = @DISABLE_DEPRECATED@ + DOC_USER_FORMATS = @DOC_USER_FORMATS@ ++DSYMUTIL = @DSYMUTIL@ + ECHO = @ECHO@ + ECHO_C = @ECHO_C@ + 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@ +@@ -205,19 +201,46 @@ + GECKO_LIBS = @GECKO_LIBS@ + GECKO_PREFIX = @GECKO_PREFIX@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ + GLIB_MKENUMS = @GLIB_MKENUMS@ + GMOFILES = @GMOFILES@ + GMSGFMT = @GMSGFMT@ + GREP = @GREP@ ++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@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ + INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ + INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +@@ -260,16 +283,17 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ + MAKEINFO = @MAKEINFO@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++NMEDIT = @NMEDIT@ + NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@ + OBJEXT = @OBJEXT@ + OMF_DIR = @OMF_DIR@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ --- epiphany-browser-2.22.1.1.orig/debian/patches/11_useragent-weasel.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/98_ephy-boot-xul-early.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/06_ssl_weak_ciphers.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/04_move_tabs.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/patches/07_bookmarks.patch +++ epiphany-browser-2.22.1.1/debian/patches/07_bookmarks.patch @@ -0,0 +1,16 @@ +Index: epiphany-browser-2.22.0/src/bookmarks/ephy-bookmarks.c +=================================================================== +--- epiphany-browser-2.22.0.orig/src/bookmarks/ephy-bookmarks.c 2008-03-09 21:55:53.000000000 +0100 ++++ epiphany-browser-2.22.0/src/bookmarks/ephy-bookmarks.c 2008-03-13 14:19:22.000000000 +0100 +@@ -108,6 +108,11 @@ + * 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_("Ubuntu"), N_("http://www.ubuntu.com/") }, ++ { N_("Planet Ubuntu"), N_("http://planet.ubuntu.com/") }, ++ { N_("Ubuntu Wiki (community-edited website)"), N_("https://wiki.ubuntu.com/") }, + { N_("Search the web"), N_("http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8") } + }; + --- epiphany-browser-2.22.1.1.orig/debian/patches/09_download_dialog.patch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-gecko.menu +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-browser-dev.dirs +++ epiphany-browser-2.22.1.1/debian/epiphany-browser-dev.dirs @@ -0,0 +1,2 @@ +/usr/lib +/usr/share --- epiphany-browser-2.22.1.1.orig/debian/epiphany-browser.install +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-gecko.prerm +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/watch +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-browser-data.gconf-defaults +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/copyright +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/epiphany-gecko.postinst +++ epiphany-browser-2.22.1.1/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.1.1.orig/debian/rules +++ epiphany-browser-2.22.1.1/debian/rules @@ -0,0 +1,178 @@ +#!/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 $@ + cd po; intltool-update -p + +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 -f po/epiphany.pot + 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.1.1.orig/debian/control +++ epiphany-browser-2.22.1.1/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.15.6), + 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~rc), + 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 (>= 0.1.17), + 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~rc), + ${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.1.1.orig/debian/changelog +++ epiphany-browser-2.22.1.1/debian/changelog @@ -0,0 +1,1526 @@ +epiphany-browser (2.22.1.1-0ubuntu2~8.04.1) hardy-proposed; urgency=low + + * package transition for xulrunner-1.9 RC1 -> raise depends and build-depends + bar for real (bump versioned depends in control.in file as well) + (LP: #233922) + - update debian/control.in + + -- Alexander Sack Fri, 23 May 2008 15:25:30 +0200 + +epiphany-browser (2.22.1.1-0ubuntu2~8.04.0mt1) hardy; urgency=low + + * package transition for xulrunner-1.9 RC1 -> raise depends and build-depends + bar because of ABI breakage introduced by xulrunner b5 to rc1 transition + (LP: #233922) + - update debian/control + * API transition for xulrunner-1.9 - implement new signature for + nsIHelperAppLauncherDialog::PromptForSaveToFile + - add debian/patches/98a_xul_b5_rc1_api_transition.patch + - update debian/patches/series + + -- Alexander Sack Thu, 22 May 2008 09:37:16 +0200 + +epiphany-browser (2.22.1.1-0ubuntu1) hardy; urgency=low + + * New upstream release 2.22.1.1 + * update liblaunchpad-integration-dev build-depends to 0.1.17 + * remove 's from 06_lpi.patch + * adjust 05_libexecdir.patch to modified upstream code base + * drop 80_from_bugzilla_no_avahi_bookmark_crash.patch applied upstream + * drop xulrunner patches from debian/patches and debian/patches/series + * disable 98a_nsipromptservice2_workaround.patch patch in quilt series + - applied upstream + * rerun autoreconf and refresh 99_autoreconf.patch accordingly + + -- Alexander Sack Tue, 08 Apr 2008 23:04:58 +0200 + +epiphany-browser (2.22.0-0ubuntu5) hardy; urgency=low + + * fix embed/mozilla/FilePicker.cpp because of changed signature of + GFilePicker::GetFileURL function (use nsIURI instead nsIFileURL) + - add debian/patches/98c_fix_filepicker_function_signature.patch + - update debian/patches/series + * bump versioned (build-)depends on xulrunner accordingly + - update debian/control{.in} + + -- Alexander Sack Thu, 13 Mar 2008 17:51:52 +0100 + +epiphany-browser (2.22.0-0ubuntu4) hardy; urgency=low + + * debian/patches/07_bookmarks.patch: + - updated the bookmarks to ubuntu (lp: #137491) + * debian/patches/80_from_bugzilla_no_avahi_bookmark_crash.patch: + - change from bugzilla, fix crasher in the avahi bookmark code (lp: #189272) + + -- Sebastien Bacher Thu, 13 Mar 2008 13:41:35 +0100 + +epiphany-browser (2.22.0-0ubuntu3) hardy; urgency=low + + * debian/control.in: + - updated libglib requirement (lp: #201126) + * debian/rules: + - update translations template + + -- Sebastien Bacher Wed, 12 Mar 2008 11:53:27 +0100 + +epiphany-browser (2.22.0-0ubuntu2) hardy; urgency=low + + * fix "entering bad url into location bar, just does nothing" + - update debian/patches/98a_nsipromptservice2_workaround.patch + + -- Alexander Sack Mon, 10 Mar 2008 11:47:44 +0100 + +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.1.1.orig/debian/epiphany-webkit.prerm +++ epiphany-browser-2.22.1.1/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.1.1.orig/compile +++ epiphany-browser-2.22.1.1/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.1.1.orig/help/Makefile.in +++ epiphany-browser-2.22.1.1/help/Makefile.in @@ -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@ @@ -117,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@ @@ -128,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@ @@ -194,8 +218,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@ @@ -246,14 +271,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@ @@ -265,7 +296,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -297,11 +327,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)) @@ -451,6 +478,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -459,21 +490,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; \ @@ -521,7 +554,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 @@ -535,20 +569,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 @@ -569,22 +595,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.1.1.orig/config.guess +++ epiphany-browser-2.22.1.1/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2007-03-06' +timestamp='2007-07-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -330,7 +330,7 @@ sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) @@ -793,7 +793,7 @@ exit ;; *:Interix*:[3456]*) case ${UNAME_MACHINE} in - x86) + x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T | authenticamd) --- epiphany-browser-2.22.1.1.orig/configure +++ epiphany-browser-2.22.1.1/configure @@ -817,7 +817,6 @@ INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA -am__isrc CYGPATH_W PACKAGE VERSION @@ -924,6 +923,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 @@ -936,8 +939,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 @@ -2234,8 +2235,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 @@ -2418,53 +2418,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 @@ -2547,16 +2532,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 @@ -2599,7 +2580,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 @@ -2703,7 +2684,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. @@ -2810,7 +2791,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 @@ -3033,7 +3016,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 @@ -3042,6 +3027,7 @@ fi + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -4028,7 +4014,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 @@ -4058,7 +4043,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= @@ -5958,7 +5945,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 @@ -5988,7 +5974,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= @@ -20611,7 +20599,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 @@ -20641,7 +20628,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= @@ -21395,7 +21384,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 @@ -21425,7 +21413,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= @@ -22045,7 +22035,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 @@ -22075,7 +22064,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= @@ -23387,7 +23378,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 @@ -23897,6 +23890,18 @@ gecko_cv_gecko_home=$with_gecko_home +{ 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 # **************** @@ -24229,6 +24234,49 @@ { echo "$as_me:$LINENO: result: $gecko_cv_have_xpcom_glue" >&5 echo "${ECHO_T}$gecko_cv_have_xpcom_glue" >&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 @@ -27377,6 +27425,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 + @@ -27481,7 +27566,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 @@ -27744,6 +27831,119 @@ fi 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 cat >>confdefs.h <<\_ACEOF #define HAVE_PRIVATE_PLUGINS 1 @@ -28222,6 +28422,7 @@ echo "${ECHO_T}yes" >&6; } : fi + fi @@ -28237,7 +28438,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 @@ -29994,7 +30197,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 @@ -30003,7 +30208,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 @@ -30101,7 +30308,9 @@ fi fi - 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 @@ -30109,7 +30318,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 @@ -30293,6 +30504,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 @@ -30356,6 +30581,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 @@ -30839,7 +31071,6 @@ ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF @@ -31090,7 +31321,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 @@ -31139,6 +31369,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 @@ -31180,7 +31411,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 @@ -31238,6 +31468,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 @@ -31250,8 +31484,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 @@ -31409,7 +31641,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 @@ -31636,11 +31868,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 @@ -31694,7 +31921,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 --- epiphany-browser-2.22.1.1.orig/data/icons/Makefile.in +++ epiphany-browser-2.22.1.1/data/icons/Makefile.in @@ -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@ @@ -94,6 +100,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@ @@ -105,6 +127,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@ @@ -171,8 +195,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@ @@ -223,14 +248,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@ @@ -242,7 +273,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -274,11 +304,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 = \ @@ -402,6 +429,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -410,21 +441,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; \ @@ -469,7 +501,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -483,20 +515,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 @@ -515,21 +539,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.1.1.orig/data/glade/Makefile.in +++ epiphany-browser-2.22.1.1/data/glade/Makefile.in @@ -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@ @@ -102,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@ @@ -113,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@ @@ -179,8 +203,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@ @@ -231,14 +256,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@ @@ -250,7 +281,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -282,11 +312,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 = \ @@ -335,9 +362,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) \ @@ -360,21 +391,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; \ @@ -390,7 +422,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 @@ -422,7 +454,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -436,20 +468,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 @@ -468,21 +492,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.1.1.orig/data/art/Makefile.in +++ epiphany-browser-2.22.1.1/data/art/Makefile.in @@ -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@ @@ -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@ @@ -180,8 +204,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@ @@ -232,14 +257,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@ @@ -251,7 +282,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -283,11 +313,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 @@ -333,9 +360,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) \ @@ -352,7 +383,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) \ @@ -375,21 +406,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; \ @@ -405,7 +437,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 @@ -437,7 +469,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -453,20 +485,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 @@ -485,22 +509,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.1.1.orig/data/chrome/Makefile.in +++ epiphany-browser-2.22.1.1/data/chrome/Makefile.in @@ -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 @@ -65,6 +69,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@ @@ -184,8 +208,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 +261,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 +286,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -287,11 +317,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 = app-chrome.manifest.in @@ -358,9 +385,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) \ @@ -377,7 +408,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) \ @@ -394,7 +425,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) \ @@ -417,21 +448,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; \ @@ -447,7 +479,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 @@ -481,7 +513,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -496,20 +528,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 @@ -529,23 +553,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.1.1.orig/data/ui/Makefile.in +++ epiphany-browser-2.22.1.1/data/ui/Makefile.in @@ -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@ @@ -102,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@ @@ -113,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@ @@ -179,8 +203,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@ @@ -231,14 +256,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@ @@ -250,7 +281,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -282,11 +312,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 = \ @@ -336,9 +363,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) \ @@ -361,21 +392,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; \ @@ -391,7 +423,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 @@ -423,7 +455,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -437,20 +469,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 @@ -469,21 +493,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.1.1.orig/data/Makefile.in +++ epiphany-browser-2.22.1.1/data/Makefile.in @@ -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@ @@ -134,6 +137,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@ @@ -145,6 +164,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@ @@ -211,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@ @@ -263,14 +285,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@ @@ -282,7 +310,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -314,11 +341,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 = \ @@ -424,9 +448,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) \ @@ -443,7 +471,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) \ @@ -460,7 +488,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) \ @@ -477,7 +505,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) \ @@ -494,7 +522,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) \ @@ -511,7 +539,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) \ @@ -528,7 +556,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) \ @@ -545,7 +573,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) \ @@ -562,7 +590,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) \ @@ -579,7 +607,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) \ @@ -626,7 +654,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 \ @@ -727,21 +756,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; \ @@ -755,7 +785,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`; \ @@ -763,8 +793,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -775,7 +803,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 @@ -808,7 +836,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 @@ -826,20 +855,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 @@ -860,35 +881,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.1.1.orig/plugins/Makefile.in +++ epiphany-browser-2.22.1.1/plugins/Makefile.in @@ -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@ @@ -104,6 +107,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 +134,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@ @@ -181,8 +202,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@ @@ -233,14 +255,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@ @@ -252,7 +280,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -284,11 +311,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 @@ -331,6 +355,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, @@ -362,7 +390,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 \ @@ -463,21 +492,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; \ @@ -491,7 +521,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`; \ @@ -499,8 +529,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -540,7 +568,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 @@ -554,20 +583,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 @@ -586,24 +607,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.1.1.orig/plugins/desktop-file/Makefile.in +++ epiphany-browser-2.22.1.1/plugins/desktop-file/Makefile.in @@ -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 @@ -84,6 +88,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@ @@ -126,6 +132,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@ @@ -137,6 +159,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@ @@ -203,8 +227,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@ @@ -255,14 +280,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@ @@ -274,7 +305,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -306,11 +336,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 @@ -404,7 +431,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) @@ -415,32 +442,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 @@ -497,21 +524,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; \ @@ -527,7 +555,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 @@ -562,7 +590,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -576,20 +604,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 @@ -610,23 +630,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 @HAVE_GECKO_XPCOM_GLUE_FALSE@ libdesktopfileplugin_la_LDFLAGS += \ --- epiphany-browser-2.22.1.1.orig/src/bookmarks/Makefile.in +++ epiphany-browser-2.22.1.1/src/bookmarks/Makefile.in @@ -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 @@ -116,6 +120,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@ @@ -158,6 +164,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@ @@ -169,6 +191,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@ @@ -235,8 +259,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@ @@ -287,14 +312,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@ @@ -306,7 +337,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -338,11 +368,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 @@ -465,7 +492,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) @@ -494,167 +521,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) \ @@ -719,21 +750,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; \ @@ -750,7 +782,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 @@ -790,7 +822,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -804,20 +836,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 @@ -838,23 +862,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.1.1.orig/src/Makefile.in +++ epiphany-browser-2.22.1.1/src/Makefile.in @@ -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 @@ -157,9 +161,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) \ @@ -178,9 +179,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)" @@ -244,11 +242,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/||"`;; \ @@ -258,8 +255,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) @@ -267,6 +262,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@ @@ -309,6 +306,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@ @@ -320,6 +333,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@ @@ -386,8 +401,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@ @@ -438,14 +454,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@ @@ -457,7 +479,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -489,11 +510,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 = @@ -898,7 +916,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) @@ -948,302 +966,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` @@ -1288,9 +1306,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) \ @@ -1307,7 +1329,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) \ @@ -1354,7 +1376,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 \ @@ -1455,21 +1478,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; \ @@ -1483,7 +1507,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`; \ @@ -1491,8 +1515,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -1504,7 +1526,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 @@ -1544,7 +1566,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -1558,20 +1580,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 @@ -1593,27 +1607,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.1.1.orig/embed/webkit/Makefile.in +++ epiphany-browser-2.22.1.1/embed/webkit/Makefile.in @@ -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 @@ -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@ @@ -117,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@ @@ -128,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@ @@ -194,8 +218,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@ @@ -246,14 +271,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@ @@ -265,7 +296,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -297,11 +327,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 = \ @@ -372,7 +399,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) @@ -388,67 +415,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 @@ -505,21 +532,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; \ @@ -567,7 +595,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -581,20 +609,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 @@ -615,22 +635,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.1.1.orig/embed/mozilla/Makefile.in +++ epiphany-browser-2.22.1.1/embed/mozilla/Makefile.in @@ -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 @@ -199,6 +203,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@ @@ -241,6 +247,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@ @@ -252,6 +274,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@ @@ -318,8 +342,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@ @@ -370,14 +395,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@ @@ -389,7 +420,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -421,11 +451,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 \ @@ -557,7 +584,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) @@ -971,21 +998,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; \ @@ -1036,7 +1064,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -1050,20 +1078,12 @@ install-data-am: install-xptDATA -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 --- epiphany-browser-2.22.1.1.orig/embed/Makefile.in +++ epiphany-browser-2.22.1.1/embed/Makefile.in @@ -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 @@ -127,14 +131,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@ @@ -177,6 +181,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@ @@ -188,6 +208,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@ @@ -254,8 +276,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@ @@ -306,14 +329,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@ @@ -325,7 +354,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -357,11 +385,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 @@ -508,9 +533,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) @@ -544,202 +569,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) \ @@ -786,7 +815,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 \ @@ -887,21 +917,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; \ @@ -915,7 +946,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`; \ @@ -923,8 +954,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -936,7 +965,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 @@ -976,7 +1005,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -990,20 +1019,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 @@ -1024,26 +1045,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.1.1.orig/mkinstalldirs +++ epiphany-browser-2.22.1.1/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.1.1.orig/aclocal.m4 +++ epiphany-browser-2.22.1.1/aclocal.m4 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10 -*- Autoconf -*- +# generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006 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,11 +11,6 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. -m4_if(m4_PACKAGE_VERSION, [2.61],, -[m4_fatal([this file was generated for autoconf 2.61. -You have another version of autoconf. If you want to use that, -you should regenerate the build system entirely.], [63])]) - 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 @@ -56,322 +51,754 @@ AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no]) ]) -# gnome-common.m4 -# - -dnl GNOME_COMMON_INIT +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, Inc. +# +# This file is free software, distributed under the terms of the GNU +# General Public License. As a special exception to the GNU General +# Public License, this file may be distributed as part of a program +# that contains a configuration script generated by Autoconf, under +# the same distribution terms as the rest of that program. +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# +# Macro to add for using GNU gettext. +# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 +# +# Modified to never use included libintl. +# Owen Taylor <otaylor@redhat.com>, 12/15/1998 +# +# Major rework to remove unused code +# Owen Taylor <otaylor@redhat.com>, 12/11/2002 +# +# Added better handling of ALL_LINGUAS from GNU gettext version +# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 +# +# Modified to require ngettext +# Matthias Clasen <mclasen@redhat.com> 08/06/2004 +# +# We need this here as well, since someone might use autoconf-2.5x +# to configure GLib then an older version to configure a package +# using AM_GLIB_GNU_GETTEXT +AC_PREREQ(2.53) -AC_DEFUN([GNOME_COMMON_INIT], -[ - dnl this macro should come after AC_CONFIG_MACRO_DIR - AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) +dnl +dnl We go to great lengths to make sure that aclocal won't +dnl try to pull in the installed version of these macros +dnl when running aclocal in the glib directory. +dnl +m4_copy([AC_DEFUN],[glib_DEFUN]) +m4_copy([AC_REQUIRE],[glib_REQUIRE]) +dnl +dnl At the end, if we're not within glib, we'll define the public +dnl definitions in terms of our private definitions. +dnl - dnl ensure that when the Automake generated makefile calls aclocal, - dnl it honours the $ACLOCAL_FLAGS environment variable - ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" - if test -n "$ac_macro_dir"; then - ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" - fi +# GLIB_LC_MESSAGES +#-------------------- +glib_DEFUN([GLIB_LC_MESSAGES], + [AC_CHECK_HEADERS([locale.h]) + if test $ac_cv_header_locale_h = yes; then + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your <locale.h> file defines LC_MESSAGES.]) + fi + fi]) - AC_SUBST([ACLOCAL_AMFLAGS]) +# GLIB_PATH_PROG_WITH_TEST +#---------------------------- +dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl ]) -AC_DEFUN([GNOME_DEBUG_CHECK], -[ - AC_ARG_ENABLE([debug], - AC_HELP_STRING([--enable-debug], - [turn on debugging]),, - [enable_debug=no]) +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) - if test x$enable_debug = xyes ; then - AC_DEFINE(GNOME_ENABLE_DEBUG, 1, - [Enable additional debugging at the expense of performance and size]) - fi -]) + gt_cv_have_gettext=no -dnl GNOME_MAINTAINER_MODE_DEFINES () -dnl define DISABLE_DEPRECATED -dnl -AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], -[ - AC_REQUIRE([AM_MAINTAINER_MODE]) + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= - if test $USE_MAINTAINER_MODE = yes; then - DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" - else - DISABLE_DEPRECATED="" - fi - AC_SUBST(DISABLE_DEPRECATED) -]) + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" -dnl GNOME_COMPILE_WARNINGS -dnl Turn on many useful compiler warnings -dnl For now, only works on GCC -AC_DEFUN([GNOME_COMPILE_WARNINGS],[ - dnl ****************************** - dnl More compiler warnings - dnl ****************************** + # + # First check in libc + # + AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, + [AC_TRY_LINK([ +#include <libintl.h> +], + [return !ngettext ("","", 1)], + gt_cv_func_ngettext_libc=yes, + gt_cv_func_ngettext_libc=no) + ]) + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, + [AC_TRY_LINK([ +#include <libintl.h> +], + [return !dgettext ("","")], + gt_cv_func_dgettext_libc=yes, + gt_cv_func_dgettext_libc=no) + ]) + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CHECK_FUNCS(bind_textdomain_codeset) + fi - AC_ARG_ENABLE(compile-warnings, - AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], - [Turn on compiler warnings]),, - [enable_compile_warnings="m4_default([$1],[yes])"]) + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) - warnCFLAGS= - if test "x$GCC" != xyes; then - enable_compile_warnings=no - fi + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) + AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], + :,-liconv) + fi - warning_flags= - realsave_CFLAGS="$CFLAGS" + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + AC_CHECK_FUNCS(bind_textdomain_codeset) + LIBS="$glib_save_LIBS" - case "$enable_compile_warnings" in - no) - warning_flags= - ;; - minimum) - warning_flags="-Wall" - ;; - yes) - warning_flags="-Wall -Wmissing-prototypes" - ;; - maximum|error) - warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith" - CFLAGS="$warning_flags $CFLAGS" - for option in -Wno-sign-compare; do - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $option" - AC_MSG_CHECKING([whether gcc understands $option]) - AC_TRY_COMPILE([], [], - has_option=yes, - has_option=no,) - CFLAGS="$SAVE_CFLAGS" - AC_MSG_RESULT($has_option) - if test $has_option = yes; then - warning_flags="$warning_flags $option" - fi - unset has_option - unset SAVE_CFLAGS - done - unset option - if test "$enable_compile_warnings" = "error" ; then - warning_flags="$warning_flags -Werror" - fi - ;; - *) - AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) - ;; - esac - CFLAGS="$realsave_CFLAGS" - AC_MSG_CHECKING(what warning flags to pass to the C compiler) - AC_MSG_RESULT($warning_flags) - - AC_ARG_ENABLE(iso-c, - AC_HELP_STRING([--enable-iso-c], - [Try to warn if code is not ISO C ]),, - [enable_iso_c=no]) + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi - AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) - complCFLAGS= - if test "x$enable_iso_c" != "xno"; then - if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) complCFLAGS="$complCFLAGS -ansi" ;; - esac - case " $CFLAGS " in - *[\ \ ]-pedantic[\ \ ]*) ;; - *) complCFLAGS="$complCFLAGS -pedantic" ;; - esac + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + AC_DEFINE(HAVE_GETTEXT,1, + [Define if the GNU gettext() function is already present or preinstalled.]) + GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + AC_CHECK_FUNCS(dcgettext) + MSGFMT_OPTS= + AC_MSG_CHECKING([if msgfmt accepts -c]) + GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test <foo@bar.xx>\n" +"Language-Team: C <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) + AC_SUBST(MSGFMT_OPTS) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr], + [CATOBJEXT=.gmo + DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share and + dnl and CATOBJEXT=.gmo in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo + DATADIRNAME=lib]) + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no fi + fi + ]) + + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) fi - AC_MSG_RESULT($complCFLAGS) - WARN_CFLAGS="$warning_flags $complCFLAGS" - AC_SUBST(WARN_CFLAGS) -]) + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is not GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + fi -dnl For C++, do basically the same thing. + # We need to process the po/ directory. + POSUB=po -AC_DEFUN([GNOME_CXX_WARNINGS],[ - AC_ARG_ENABLE(cxx-warnings, - AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] - [Turn on compiler warnings.]),, - [enable_cxx_warnings="m4_default([$1],[minimum])"]) + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) - AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) - warnCXXFLAGS= - if test "x$GXX" != xyes; then - enable_cxx_warnings=no - fi - if test "x$enable_cxx_warnings" != "xno"; then - if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) warnCXXFLAGS="-Wall -Wno-unused" ;; - esac + dnl These rules are solely for the distribution goal. While doing this + dnl we only have to keep exactly one list of the available catalogs + dnl in configure.in. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done - ## -W is not all that useful. And it cannot be controlled - ## with individual -Wno-xxx flags, unlike -Wall - if test "x$enable_cxx_warnings" = "xyes"; then - warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" - fi - fi - fi - AC_MSG_RESULT($warnCXXFLAGS) + dnl Make all variables we use known to autoconf. + AC_SUBST(CATALOGS) + AC_SUBST(CATOBJEXT) + AC_SUBST(DATADIRNAME) + AC_SUBST(GMOFILES) + AC_SUBST(INSTOBJEXT) + AC_SUBST(INTLLIBS) + AC_SUBST(PO_IN_DATADIR_TRUE) + AC_SUBST(PO_IN_DATADIR_FALSE) + AC_SUBST(POFILES) + AC_SUBST(POSUB) + ]) - AC_ARG_ENABLE(iso-cxx, - AC_HELP_STRING([--enable-iso-cxx], - [Try to warn if code is not ISO C++ ]),, - [enable_iso_cxx=no]) +# AM_GLIB_GNU_GETTEXT +# ------------------- +# Do checks necessary for use of gettext. If a suitable implementation +# of gettext is found in either in libintl or in the C library, +# it will set INTLLIBS to the libraries needed for use of gettext +# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +# on various variables needed by the Makefile.in.in installed by +# glib-gettextize. +dnl +glib_DEFUN([GLIB_GNU_GETTEXT], + [AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + + GLIB_LC_MESSAGES + GLIB_WITH_NLS - AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) - complCXXFLAGS= - if test "x$enable_iso_cxx" != "xno"; then - if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; - esac + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + AC_MSG_CHECKING(for catalogs to be installed) + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + AC_MSG_RESULT($LINGUAS) + fi - case " $CXXFLAGS " in - *[\ \ ]-pedantic[\ \ ]*) ;; - *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; - esac + dnl Construct list of names of catalog files to be constructed. + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi - AC_MSG_RESULT($complCXXFLAGS) - - WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" - AC_SUBST(WARN_CXXFLAGS) -]) - -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- - -# serial 51 Debian 1.5.24-1ubuntu1 AC_PROG_LIBTOOL + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -# ----------------------------------------------------------- -# If this macro is not defined by Autoconf, define it here. -m4_ifdef([AC_PROVIDE_IFELSE], - [], - [m4_define([AC_PROVIDE_IFELSE], - [m4_ifdef([AC_PROVIDE_$1], - [$2], [$3])])]) + dnl Generate list of files to be processed by xgettext which will + dnl be included in po/Makefile. + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + ]) +# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +# ------------------------------- +# Define VARIABLE to the location where catalog files will +# be installed by po/Makefile. +glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +glib_save_prefix="$prefix" +glib_save_exec_prefix="$exec_prefix" +glib_save_datarootdir="$datarootdir" +test "x$prefix" = xNONE && prefix=$ac_default_prefix +test "x$exec_prefix" = xNONE && exec_prefix=$prefix +datarootdir=`eval echo "${datarootdir}"` +if test "x$CATOBJEXT" = "x.mo" ; then + localedir=`eval echo "${libdir}/locale"` +else + localedir=`eval echo "${datadir}/locale"` +fi +prefix="$glib_save_prefix" +exec_prefix="$glib_save_exec_prefix" +datarootdir="$glib_save_datarootdir" +AC_DEFINE_UNQUOTED($1, "$localedir", + [Define the location where the catalogs will be installed]) +]) -# AC_PROG_LIBTOOL -# --------------- -AC_DEFUN([AC_PROG_LIBTOOL], -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. - AC_PROVIDE_IFELSE([AC_PROG_CXX], - [AC_LIBTOOL_CXX], - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX - ])]) -dnl And a similar setup for Fortran 77 support - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LIBTOOL_F77], - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 -])]) +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_in,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) -])])# AC_PROG_LIBTOOL +# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) +# +# Create a temporary file with TEST-FILE as its contents and pass the +# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with +# 0 and perform ACTION-IF-FAIL for any other exit status. +AC_DEFUN([GLIB_RUN_PROG], +[cat >conftest.foo <<_ACEOF +$2 +_ACEOF +if AC_RUN_LOG([$1 conftest.foo]); then + m4_ifval([$3], [$3], [:]) +m4_ifvaln([$4], [else $4])dnl +echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD +sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD +fi]) -# _AC_PROG_LIBTOOL -# ---------------- -AC_DEFUN([_AC_PROG_LIBTOOL], -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl +# gnome-common.m4 +# -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" +dnl GNOME_COMMON_INIT -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl +AC_DEFUN([GNOME_COMMON_INIT], +[ + dnl this macro should come after AC_CONFIG_MACRO_DIR + AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) -# Prevent multiple expansion -define([AC_PROG_LIBTOOL], []) -])# _AC_PROG_LIBTOOL + dnl ensure that when the Automake generated makefile calls aclocal, + dnl it honours the $ACLOCAL_FLAGS environment variable + ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" + if test -n "$ac_macro_dir"; then + ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" + fi + AC_SUBST([ACLOCAL_AMFLAGS]) +]) -# AC_LIBTOOL_SETUP -# ---------------- -AC_DEFUN([AC_LIBTOOL_SETUP], -[AC_PREREQ(2.50)dnl -AC_REQUIRE([AC_ENABLE_SHARED])dnl -AC_REQUIRE([AC_ENABLE_STATIC])dnl -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_LD])dnl -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl -AC_REQUIRE([AC_PROG_NM])dnl +AC_DEFUN([GNOME_DEBUG_CHECK], +[ + AC_ARG_ENABLE([debug], + AC_HELP_STRING([--enable-debug], + [turn on debugging]),, + [enable_debug=no]) -AC_REQUIRE([AC_PROG_LN_S])dnl -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -AC_REQUIRE([AC_OBJEXT])dnl -AC_REQUIRE([AC_EXEEXT])dnl + if test x$enable_debug = xyes ; then + AC_DEFINE(GNOME_ENABLE_DEBUG, 1, + [Enable additional debugging at the expense of performance and size]) + fi +]) + +dnl GNOME_MAINTAINER_MODE_DEFINES () +dnl define DISABLE_DEPRECATED dnl +AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], +[ + AC_REQUIRE([AM_MAINTAINER_MODE]) -AC_LIBTOOL_SYS_MAX_CMD_LEN -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -AC_LIBTOOL_OBJDIR + if test $USE_MAINTAINER_MODE = yes; then + DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" + else + DISABLE_DEPRECATED="" + fi + AC_SUBST(DISABLE_DEPRECATED) +]) -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -_LT_AC_PROG_ECHO_BACKSLASH +dnl GNOME_COMPILE_WARNINGS +dnl Turn on many useful compiler warnings +dnl For now, only works on GCC +AC_DEFUN([GNOME_COMPILE_WARNINGS],[ + dnl ****************************** + dnl More compiler warnings + dnl ****************************** -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac + AC_ARG_ENABLE(compile-warnings, + AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], + [Turn on compiler warnings]),, + [enable_compile_warnings="m4_default([$1],[yes])"]) -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='sed -e 1s/^X//' -[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] + warnCFLAGS= + if test "x$GCC" != xyes; then + enable_compile_warnings=no + fi -# Same as above, but do not quote variable references. -[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] + warning_flags= + realsave_CFLAGS="$CFLAGS" -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + case "$enable_compile_warnings" in + no) + warning_flags= + ;; + minimum) + warning_flags="-Wall" + ;; + yes) + warning_flags="-Wall -Wmissing-prototypes" + ;; + maximum|error) + warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith" + CFLAGS="$warning_flags $CFLAGS" + for option in -Wno-sign-compare; do + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $option" + AC_MSG_CHECKING([whether gcc understands $option]) + AC_TRY_COMPILE([], [], + has_option=yes, + has_option=no,) + CFLAGS="$SAVE_CFLAGS" + AC_MSG_RESULT($has_option) + if test $has_option = yes; then + warning_flags="$warning_flags $option" + fi + unset has_option + unset SAVE_CFLAGS + done + unset option + if test "$enable_compile_warnings" = "error" ; then + warning_flags="$warning_flags -Werror" + fi + ;; + *) + AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) + ;; + esac + CFLAGS="$realsave_CFLAGS" + AC_MSG_CHECKING(what warning flags to pass to the C compiler) + AC_MSG_RESULT($warning_flags) -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' + AC_ARG_ENABLE(iso-c, + AC_HELP_STRING([--enable-iso-c], + [Try to warn if code is not ISO C ]),, + [enable_iso_c=no]) -# Constants: + AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) + complCFLAGS= + if test "x$enable_iso_c" != "xno"; then + if test "x$GCC" = "xyes"; then + case " $CFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) complCFLAGS="$complCFLAGS -ansi" ;; + esac + case " $CFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) complCFLAGS="$complCFLAGS -pedantic" ;; + esac + fi + fi + AC_MSG_RESULT($complCFLAGS) + + WARN_CFLAGS="$warning_flags $complCFLAGS" + AC_SUBST(WARN_CFLAGS) +]) + +dnl For C++, do basically the same thing. + +AC_DEFUN([GNOME_CXX_WARNINGS],[ + AC_ARG_ENABLE(cxx-warnings, + AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] + [Turn on compiler warnings.]),, + [enable_cxx_warnings="m4_default([$1],[minimum])"]) + + AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) + warnCXXFLAGS= + if test "x$GXX" != xyes; then + enable_cxx_warnings=no + fi + if test "x$enable_cxx_warnings" != "xno"; then + if test "x$GXX" = "xyes"; then + case " $CXXFLAGS " in + *[\ \ ]-Wall[\ \ ]*) ;; + *) warnCXXFLAGS="-Wall -Wno-unused" ;; + esac + + ## -W is not all that useful. And it cannot be controlled + ## with individual -Wno-xxx flags, unlike -Wall + if test "x$enable_cxx_warnings" = "xyes"; then + warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" + fi + fi + fi + AC_MSG_RESULT($warnCXXFLAGS) + + AC_ARG_ENABLE(iso-cxx, + AC_HELP_STRING([--enable-iso-cxx], + [Try to warn if code is not ISO C++ ]),, + [enable_iso_cxx=no]) + + AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) + complCXXFLAGS= + if test "x$enable_iso_cxx" != "xno"; then + if test "x$GXX" = "xyes"; then + case " $CXXFLAGS " in + *[\ \ ]-ansi[\ \ ]*) ;; + *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; + esac + + case " $CXXFLAGS " in + *[\ \ ]-pedantic[\ \ ]*) ;; + *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; + esac + fi + fi + AC_MSG_RESULT($complCXXFLAGS) + + WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" + AC_SUBST(WARN_CXXFLAGS) +]) + +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- + +# serial 52 Debian 1.5.26-1ubuntu1 AC_PROG_LIBTOOL + + +# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) +# ----------------------------------------------------------- +# If this macro is not defined by Autoconf, define it here. +m4_ifdef([AC_PROVIDE_IFELSE], + [], + [m4_define([AC_PROVIDE_IFELSE], + [m4_ifdef([AC_PROVIDE_$1], + [$2], [$3])])]) + + +# AC_PROG_LIBTOOL +# --------------- +AC_DEFUN([AC_PROG_LIBTOOL], +[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl +dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX +dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. + AC_PROVIDE_IFELSE([AC_PROG_CXX], + [AC_LIBTOOL_CXX], + [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX + ])]) +dnl And a similar setup for Fortran 77 support + AC_PROVIDE_IFELSE([AC_PROG_F77], + [AC_LIBTOOL_F77], + [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 +])]) + +dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. +dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run +dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. + AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [ifdef([AC_PROG_GCJ], + [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) + ifdef([A][M_PROG_GCJ], + [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) + ifdef([LT_AC_PROG_GCJ], + [define([LT_AC_PROG_GCJ], + defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) +])])# AC_PROG_LIBTOOL + + +# _AC_PROG_LIBTOOL +# ---------------- +AC_DEFUN([_AC_PROG_LIBTOOL], +[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl +AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl +AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl +AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +# Prevent multiple expansion +define([AC_PROG_LIBTOOL], []) +])# _AC_PROG_LIBTOOL + + +# AC_LIBTOOL_SETUP +# ---------------- +AC_DEFUN([AC_LIBTOOL_SETUP], +[AC_PREREQ(2.50)dnl +AC_REQUIRE([AC_ENABLE_SHARED])dnl +AC_REQUIRE([AC_ENABLE_STATIC])dnl +AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_LD])dnl +AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl +AC_REQUIRE([AC_PROG_NM])dnl + +AC_REQUIRE([AC_PROG_LN_S])dnl +AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl +# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! +AC_REQUIRE([AC_OBJEXT])dnl +AC_REQUIRE([AC_EXEEXT])dnl +dnl +AC_LIBTOOL_SYS_MAX_CMD_LEN +AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE +AC_LIBTOOL_OBJDIR + +AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl +_LT_AC_PROG_ECHO_BACKSLASH + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed='sed -e 1s/^X//' +[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] + +# Same as above, but do not quote variable references. +[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +# Constants: rm="rm -f" # Global variables: @@ -438,6 +865,8 @@ ;; esac +_LT_REQUIRED_DARWIN_CHECKS + AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) @@ -517,9 +946,80 @@ echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` -$rm conftest* +$rm -r conftest* ])# _LT_LINKER_BOILERPLATE +# _LT_REQUIRED_DARWIN_CHECKS +# -------------------------- +# Check for some things on darwin +AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + echo "int foo(void){return 1;}" > conftest.c + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib ${wl}-single_module conftest.c + if test -f libconftest.dylib; then + lt_cv_apple_cc_single_mod=yes + rm -rf libconftest.dylib* + fi + rm conftest.c + fi]) + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + case $host_os in + rhapsody* | darwin1.[[0123]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" + fi + if test "$DSYMUTIL" != ":"; then + _lt_dsymutil="~$DSYMUTIL \$lib || :" + else + _lt_dsymutil= + fi + ;; + esac +]) # _LT_AC_SYS_LIBPATH_AIX # ---------------------- @@ -844,7 +1344,11 @@ *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) LD="${LD-ld} -64" ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; esac ;; esac @@ -937,7 +1441,7 @@ $2=yes fi fi - $rm conftest* + $rm -r conftest* LDFLAGS="$save_LDFLAGS" ]) @@ -1208,7 +1712,7 @@ AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], @@ -1216,7 +1720,7 @@ [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) @@ -1533,7 +2037,7 @@ soname_spec='${libname}${release}${shared_ext}$major' ;; -aix4* | aix5*) +aix[[4-9]]*) version_type=linux need_lib_prefix=no need_version=no @@ -2066,6 +2570,13 @@ AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no +AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec], +[lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"]) +sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec], +[lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"]) +sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" @@ -2565,7 +3076,7 @@ # whether `pass_all' will *always* work, you probably want this one. case $host_os in -aix4* | aix5*) +aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; @@ -3001,7 +3512,7 @@ fi ;; -aix4* | aix5*) +aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi @@ -3058,6 +3569,7 @@ _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= +_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= # Source file extension for C++ test sources. ac_ext=cpp @@ -3167,7 +3679,7 @@ # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - aix4* | aix5*) + aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. @@ -3180,7 +3692,7 @@ # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) @@ -3326,51 +3838,23 @@ fi ;; darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GXX" = yes ; then - lt_int_apple_cc_single_mod=no + _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + if test "$GXX" = yes ; then output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes + _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else case $cc_basename in xlc*) @@ -3621,7 +4105,7 @@ _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; - pgCC*) + pgCC* | pgcpp*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' @@ -4056,7 +4540,8 @@ # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. -AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ +AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], +[AC_REQUIRE([LT_AC_PROG_SED])dnl dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each @@ -4181,6 +4666,11 @@ $rm -f confest.$objext +_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_AC_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + # PORTME: override above test on systems where it is broken ifelse([$1],[CXX], [case $host_os in @@ -4237,7 +4727,6 @@ ;; esac ]) - case " $_LT_AC_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac @@ -4322,7 +4811,7 @@ postinstall_cmds='$RANLIB $lib' fi ;; -aix4* | aix5*) +aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi @@ -4499,6 +4988,7 @@ _LT_AC_TAGVAR(predeps, $1) \ _LT_AC_TAGVAR(postdeps, $1) \ _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ + _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \ _LT_AC_TAGVAR(archive_cmds, $1) \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ _LT_AC_TAGVAR(postinstall_cmds, $1) \ @@ -4561,7 +5051,7 @@ # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: @@ -4798,6 +5288,10 @@ # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) +# The directories searched by this compiler when creating a shared +# library +compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1) + # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) @@ -5147,7 +5641,7 @@ echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi - rm -f conftest* conftst* + rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then @@ -5204,7 +5698,8 @@ # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' + m4_if([$1], [GCJ], [], + [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -5241,7 +5736,7 @@ esac else case $host_os in - aix4* | aix5*) + aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor @@ -5337,7 +5832,7 @@ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; - pgCC*) + pgCC* | pgcpp*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' @@ -5488,7 +5983,8 @@ # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' + m4_if([$1], [GCJ], [], + [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) @@ -5558,7 +6054,8 @@ mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' + m4_if([$1], [GCJ], [], + [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) @@ -5695,7 +6192,7 @@ # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], - _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), + _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; @@ -5719,7 +6216,7 @@ # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), + _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) @@ -5735,7 +6232,7 @@ ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in - aix4* | aix5*) + aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then @@ -5757,6 +6254,7 @@ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac + _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= @@ -5787,12 +6285,14 @@ # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. - _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" + _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) @@ -5842,7 +6342,7 @@ # See if GNU ld supports shared libraries. case $host_os in - aix3* | aix4* | aix5*) + aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no @@ -6062,7 +6562,7 @@ fi ;; - aix4* | aix5*) + aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. @@ -6082,7 +6582,7 @@ # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes @@ -6242,11 +6742,10 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) @@ -6985,7 +7484,7 @@ fi[]dnl ])# PKG_CHECK_MODULES -# Copyright (C) 2002, 2003, 2005, 2006 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, @@ -6995,29 +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], [], - [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])dnl -_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) + [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- @@ -7097,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) # ------------------------------------- @@ -7113,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='#' @@ -7130,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, @@ -7165,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=]) @@ -7231,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 @@ -7284,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 -*- @@ -7310,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 10q "$mf" | grep '^#.*generated by automake' > /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 @@ -7359,8 +7838,8 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006 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, @@ -7383,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 @@ -7416,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 @@ -7454,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 ]) ]) @@ -7493,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. @@ -7600,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) # ------------------------------ @@ -7623,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 @@ -7634,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, @@ -7642,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 -*- @@ -7951,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 outputing 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. @@ -8062,439 +8554,6 @@ AC_SUBST([am__untar]) ]) # _AM_PROG_TAR -# Copyright (C) 1995-2002 Free Software Foundation, Inc. -# Copyright (C) 2001-2003,2004 Red Hat, Inc. -# -# This file is free software, distributed under the terms of the GNU -# General Public License. As a special exception to the GNU General -# Public License, this file may be distributed as part of a program -# that contains a configuration script generated by Autoconf, under -# the same distribution terms as the rest of that program. -# -# This file can be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License -# but which still want to provide support for the GNU gettext functionality. -# -# Macro to add for using GNU gettext. -# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 -# -# Modified to never use included libintl. -# Owen Taylor <otaylor@redhat.com>, 12/15/1998 -# -# Major rework to remove unused code -# Owen Taylor <otaylor@redhat.com>, 12/11/2002 -# -# Added better handling of ALL_LINGUAS from GNU gettext version -# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 -# -# Modified to require ngettext -# Matthias Clasen <mclasen@redhat.com> 08/06/2004 -# -# We need this here as well, since someone might use autoconf-2.5x -# to configure GLib then an older version to configure a package -# using AM_GLIB_GNU_GETTEXT -AC_PREREQ(2.53) - -dnl -dnl We go to great lengths to make sure that aclocal won't -dnl try to pull in the installed version of these macros -dnl when running aclocal in the glib directory. -dnl -m4_copy([AC_DEFUN],[glib_DEFUN]) -m4_copy([AC_REQUIRE],[glib_REQUIRE]) -dnl -dnl At the end, if we're not within glib, we'll define the public -dnl definitions in terms of our private definitions. -dnl - -# GLIB_LC_MESSAGES -#-------------------- -glib_DEFUN([GLIB_LC_MESSAGES], - [AC_CHECK_HEADERS([locale.h]) - if test $ac_cv_header_locale_h = yes; then - AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, - [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], - am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) - if test $am_cv_val_LC_MESSAGES = yes; then - AC_DEFINE(HAVE_LC_MESSAGES, 1, - [Define if your <locale.h> file defines LC_MESSAGES.]) - fi - fi]) - -# GLIB_PATH_PROG_WITH_TEST -#---------------------------- -dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, -dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], -[# Extract the first word of "$2", so it can be a program name with args. -set dummy $2; ac_word=[$]2 -AC_MSG_CHECKING([for $ac_word]) -AC_CACHE_VAL(ac_cv_path_$1, -[case "[$]$1" in - /*) - ac_cv_path_$1="[$]$1" # Let the user override the test with a path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in ifelse([$5], , $PATH, [$5]); do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if [$3]; then - ac_cv_path_$1="$ac_dir/$ac_word" - break - fi - fi - done - IFS="$ac_save_ifs" -dnl If no 4th arg is given, leave the cache variable unset, -dnl so AC_PATH_PROGS will keep looking. -ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" -])dnl - ;; -esac])dnl -$1="$ac_cv_path_$1" -if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then - AC_MSG_RESULT([$]$1) -else - AC_MSG_RESULT(no) -fi -AC_SUBST($1)dnl -]) - -# GLIB_WITH_NLS -#----------------- -glib_DEFUN([GLIB_WITH_NLS], - dnl NLS is obligatory - [USE_NLS=yes - AC_SUBST(USE_NLS) - - gt_cv_have_gettext=no - - CATOBJEXT=NONE - XGETTEXT=: - INTLLIBS= - - AC_CHECK_HEADER(libintl.h, - [gt_cv_func_dgettext_libintl="no" - libintl_extra_libs="" - - # - # First check in libc - # - AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, - [AC_TRY_LINK([ -#include <libintl.h> -], - [return !ngettext ("","", 1)], - gt_cv_func_ngettext_libc=yes, - gt_cv_func_ngettext_libc=no) - ]) - - if test "$gt_cv_func_ngettext_libc" = "yes" ; then - AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, - [AC_TRY_LINK([ -#include <libintl.h> -], - [return !dgettext ("","")], - gt_cv_func_dgettext_libc=yes, - gt_cv_func_dgettext_libc=no) - ]) - fi - - if test "$gt_cv_func_ngettext_libc" = "yes" ; then - AC_CHECK_FUNCS(bind_textdomain_codeset) - fi - - # - # If we don't have everything we want, check in libintl - # - if test "$gt_cv_func_dgettext_libc" != "yes" \ - || test "$gt_cv_func_ngettext_libc" != "yes" \ - || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then - - AC_CHECK_LIB(intl, bindtextdomain, - [AC_CHECK_LIB(intl, ngettext, - [AC_CHECK_LIB(intl, dgettext, - gt_cv_func_dgettext_libintl=yes)])]) - - if test "$gt_cv_func_dgettext_libintl" != "yes" ; then - AC_MSG_CHECKING([if -liconv is needed to use gettext]) - AC_MSG_RESULT([]) - AC_CHECK_LIB(intl, ngettext, - [AC_CHECK_LIB(intl, dcgettext, - [gt_cv_func_dgettext_libintl=yes - libintl_extra_libs=-liconv], - :,-liconv)], - :,-liconv) - fi - - # - # If we found libintl, then check in it for bind_textdomain_codeset(); - # we'll prefer libc if neither have bind_textdomain_codeset(), - # and both have dgettext and ngettext - # - if test "$gt_cv_func_dgettext_libintl" = "yes" ; then - glib_save_LIBS="$LIBS" - LIBS="$LIBS -lintl $libintl_extra_libs" - unset ac_cv_func_bind_textdomain_codeset - AC_CHECK_FUNCS(bind_textdomain_codeset) - LIBS="$glib_save_LIBS" - - if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then - gt_cv_func_dgettext_libc=no - else - if test "$gt_cv_func_dgettext_libc" = "yes" \ - && test "$gt_cv_func_ngettext_libc" = "yes"; then - gt_cv_func_dgettext_libintl=no - fi - fi - fi - fi - - if test "$gt_cv_func_dgettext_libc" = "yes" \ - || test "$gt_cv_func_dgettext_libintl" = "yes"; then - gt_cv_have_gettext=yes - fi - - if test "$gt_cv_func_dgettext_libintl" = "yes"; then - INTLLIBS="-lintl $libintl_extra_libs" - fi - - if test "$gt_cv_have_gettext" = "yes"; then - AC_DEFINE(HAVE_GETTEXT,1, - [Define if the GNU gettext() function is already present or preinstalled.]) - GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl - if test "$MSGFMT" != "no"; then - glib_save_LIBS="$LIBS" - LIBS="$LIBS $INTLLIBS" - AC_CHECK_FUNCS(dcgettext) - MSGFMT_OPTS= - AC_MSG_CHECKING([if msgfmt accepts -c]) - GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: test 1.0\n" -"PO-Revision-Date: 2007-02-15 12:01+0100\n" -"Last-Translator: test <foo@bar.xx>\n" -"Language-Team: C <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) - AC_SUBST(MSGFMT_OPTS) - AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) - GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) - AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; - return _nl_msg_cat_cntr], - [CATOBJEXT=.gmo - DATADIRNAME=share], - [case $host in - *-*-solaris*) - dnl On Solaris, if bind_textdomain_codeset is in libc, - dnl GNU format message catalog is always supported, - dnl since both are added to the libc all together. - dnl Hence, we'd like to go with DATADIRNAME=share and - dnl and CATOBJEXT=.gmo in this case. - AC_CHECK_FUNC(bind_textdomain_codeset, - [CATOBJEXT=.gmo - DATADIRNAME=share], - [CATOBJEXT=.mo - DATADIRNAME=lib]) - ;; - *) - CATOBJEXT=.mo - DATADIRNAME=lib - ;; - esac]) - LIBS="$glib_save_LIBS" - INSTOBJEXT=.mo - else - gt_cv_have_gettext=no - fi - fi - ]) - - if test "$gt_cv_have_gettext" = "yes" ; then - AC_DEFINE(ENABLE_NLS, 1, - [always defined to indicate that i18n is enabled]) - fi - - dnl Test whether we really found GNU xgettext. - if test "$XGETTEXT" != ":"; then - dnl If it is not GNU xgettext we define it as : so that the - dnl Makefiles still can work. - if $XGETTEXT --omit-header /dev/null 2> /dev/null; then - : ; - else - AC_MSG_RESULT( - [found xgettext program is not GNU xgettext; ignore it]) - XGETTEXT=":" - fi - fi - - # We need to process the po/ directory. - POSUB=po - - AC_OUTPUT_COMMANDS( - [case "$CONFIG_FILES" in *po/Makefile.in*) - sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile - esac]) - - dnl These rules are solely for the distribution goal. While doing this - dnl we only have to keep exactly one list of the available catalogs - dnl in configure.in. - for lang in $ALL_LINGUAS; do - GMOFILES="$GMOFILES $lang.gmo" - POFILES="$POFILES $lang.po" - done - - dnl Make all variables we use known to autoconf. - AC_SUBST(CATALOGS) - AC_SUBST(CATOBJEXT) - AC_SUBST(DATADIRNAME) - AC_SUBST(GMOFILES) - AC_SUBST(INSTOBJEXT) - AC_SUBST(INTLLIBS) - AC_SUBST(PO_IN_DATADIR_TRUE) - AC_SUBST(PO_IN_DATADIR_FALSE) - AC_SUBST(POFILES) - AC_SUBST(POSUB) - ]) - -# AM_GLIB_GNU_GETTEXT -# ------------------- -# Do checks necessary for use of gettext. If a suitable implementation -# of gettext is found in either in libintl or in the C library, -# it will set INTLLIBS to the libraries needed for use of gettext -# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable -# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() -# on various variables needed by the Makefile.in.in installed by -# glib-gettextize. -dnl -glib_DEFUN([GLIB_GNU_GETTEXT], - [AC_REQUIRE([AC_PROG_CC])dnl - AC_REQUIRE([AC_HEADER_STDC])dnl - - GLIB_LC_MESSAGES - GLIB_WITH_NLS - - if test "$gt_cv_have_gettext" = "yes"; then - if test "x$ALL_LINGUAS" = "x"; then - LINGUAS= - else - AC_MSG_CHECKING(for catalogs to be installed) - NEW_LINGUAS= - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - NEW_LINGUAS="$NEW_LINGUAS $presentlang" - fi - done - LINGUAS=$NEW_LINGUAS - AC_MSG_RESULT($LINGUAS) - fi - - dnl Construct list of names of catalog files to be constructed. - if test -n "$LINGUAS"; then - for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done - fi - fi - - dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly - dnl find the mkinstalldirs script in another subdir but ($top_srcdir). - dnl Try to locate is. - MKINSTALLDIRS= - if test -n "$ac_aux_dir"; then - MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" - fi - if test -z "$MKINSTALLDIRS"; then - MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" - fi - AC_SUBST(MKINSTALLDIRS) - - dnl Generate list of files to be processed by xgettext which will - dnl be included in po/Makefile. - test -d po || mkdir po - if test "x$srcdir" != "x."; then - if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then - posrcprefix="$srcdir/" - else - posrcprefix="../$srcdir/" - fi - else - posrcprefix="../" - fi - rm -f po/POTFILES - sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ - < $srcdir/po/POTFILES.in > po/POTFILES - ]) - -# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) -# ------------------------------- -# Define VARIABLE to the location where catalog files will -# be installed by po/Makefile. -glib_DEFUN([GLIB_DEFINE_LOCALEDIR], -[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl -glib_save_prefix="$prefix" -glib_save_exec_prefix="$exec_prefix" -glib_save_datarootdir="$datarootdir" -test "x$prefix" = xNONE && prefix=$ac_default_prefix -test "x$exec_prefix" = xNONE && exec_prefix=$prefix -datarootdir=`eval echo "${datarootdir}"` -if test "x$CATOBJEXT" = "x.mo" ; then - localedir=`eval echo "${libdir}/locale"` -else - localedir=`eval echo "${datadir}/locale"` -fi -prefix="$glib_save_prefix" -exec_prefix="$glib_save_exec_prefix" -datarootdir="$glib_save_datarootdir" -AC_DEFINE_UNQUOTED($1, "$localedir", - [Define the location where the catalogs will be installed]) -]) - -dnl -dnl Now the definitions that aclocal will find -dnl -ifdef(glib_configure_in,[],[ -AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) -AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) -])dnl - -# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) -# -# Create a temporary file with TEST-FILE as its contents and pass the -# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with -# 0 and perform ACTION-IF-FAIL for any other exit status. -AC_DEFUN([GLIB_RUN_PROG], -[cat >conftest.foo <<_ACEOF -$2 -_ACEOF -if AC_RUN_LOG([$1 conftest.foo]); then - m4_ifval([$3], [$3], [:]) -m4_ifvaln([$4], [else $4])dnl -echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD -sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD -fi]) - - m4_include([m4/gecko.m4]) m4_include([m4/gnome-doc-utils.m4]) m4_include([m4/gtk-doc.m4]) --- epiphany-browser-2.22.1.1.orig/doc/reference/Makefile.in +++ epiphany-browser-2.22.1.1/doc/reference/Makefile.in @@ -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@ @@ -108,6 +114,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@ @@ -119,6 +141,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@ @@ -185,8 +209,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 +262,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 +287,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -288,11 +318,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 @@ -529,6 +556,10 @@ clean-libtool: -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: tags: TAGS TAGS: @@ -537,21 +568,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; \ @@ -601,7 +633,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am @@ -615,20 +647,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 @@ -648,22 +672,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.1.1.orig/doc/Makefile.in +++ epiphany-browser-2.22.1.1/doc/Makefile.in @@ -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@ @@ -108,6 +111,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@ @@ -119,6 +138,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@ @@ -185,8 +206,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 +259,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 +284,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -288,11 +315,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 = @@ -341,9 +365,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 \ @@ -418,7 +446,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 \ @@ -519,21 +548,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; \ @@ -547,7 +577,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`; \ @@ -555,8 +585,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -567,7 +595,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 @@ -599,7 +627,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 @@ -613,20 +642,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 @@ -645,27 +666,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.1.1.orig/install-sh +++ epiphany-browser-2.22.1.1/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2006-10-14.15 +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,24 +39,15 @@ # 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 -# 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. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" @@ -67,13 +58,7 @@ rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" -posix_glob= -posix_mkdir= - -# Desired mode of installed file. -mode=0755 - -chmodcmd=$chmodprog +chmodcmd="$chmodprog 0755" chowncmd= chgrpcmd= stripcmd= @@ -110,7 +95,7 @@ CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " -while test $# -ne 0; do +while test -n "$1"; do case $1 in -c) shift continue;; @@ -126,15 +111,9 @@ --help) echo "$usage"; exit $?;; - -m) mode=$2 + -m) chmodcmd="$chmodprog $2" shift shift - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac continue;; -o) chowncmd="$chownprog $2" @@ -157,33 +136,25 @@ --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 done -if test $# -ne 0 && test -z "$dir_arg$dstarg"; 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 "$dstarg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dstarg" - shift # fnord - fi - shift # arg - dstarg=$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 @@ -193,33 +164,6 @@ 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 `-'. @@ -229,11 +173,15 @@ 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 '*'. @@ -260,188 +208,53 @@ 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 + # This sed command emulates the dirname command. + dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` - 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 + # Make sure that the destination directory exists. - if - $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" - ) - then : - else + # 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 - # 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 - - case $posix_glob in - '') - if (set -f) 2>/dev/null; then - posix_glob=true - else - posix_glob=false - fi ;; - esac - - oIFS=$IFS - IFS=/ - $posix_glob && set -f - set fnord $dstdir - shift - $posix_glob && set +f - IFS=$oIFS + pathcomp= - prefixes= - - 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.$$_ @@ -449,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. # @@ -462,10 +276,10 @@ { 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"; } && + && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && # Now rename the file to the real destination. - { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \ + { $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 @@ -477,12 +291,11 @@ # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { - if test -f "$dst"; then - $doit $rmcmd -f "$dst" 2>/dev/null \ - || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \ - && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\ + 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 $dst" >&2 + echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 (exit 1); exit 1 } else @@ -491,14 +304,17 @@ } && # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" + $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" } - } || exit 1 - - trap '' 0 - fi + } + 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.1.1.orig/config.sub +++ epiphany-browser-2.22.1.1/config.sub @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2007-01-18' +timestamp='2007-06-28' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -475,8 +475,8 @@ basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -683,6 +683,10 @@ basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; --- epiphany-browser-2.22.1.1.orig/depcomp +++ epiphany-browser-2.22.1.1/depcomp @@ -1,10 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2006-10-15.18 +scriptversion=2005-07-09.11 -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 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 @@ -290,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'. @@ -342,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.1.1.orig/Makefile.in +++ epiphany-browser-2.22.1.1/Makefile.in @@ -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@ @@ -123,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@ @@ -134,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@ @@ -200,8 +221,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@ @@ -252,14 +274,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@ @@ -271,7 +299,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -303,11 +330,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 = @@ -388,7 +412,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 @@ -410,6 +434,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. @@ -442,7 +467,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 \ @@ -544,22 +570,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; \ @@ -573,7 +601,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`; \ @@ -581,8 +609,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -590,7 +616,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 @@ -664,7 +690,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 \ @@ -735,20 +761,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 --- epiphany-browser-2.22.1.1.orig/lib/widgets/Makefile.in +++ epiphany-browser-2.22.1.1/lib/widgets/Makefile.in @@ -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 @@ -82,6 +86,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@ @@ -124,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@ @@ -135,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@ @@ -201,8 +225,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@ @@ -253,14 +278,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@ @@ -272,7 +303,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -304,11 +334,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 = \ @@ -387,7 +414,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) @@ -407,95 +434,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 @@ -552,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; \ @@ -614,7 +642,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -628,20 +656,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 @@ -662,22 +682,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.1.1.orig/lib/egg/Makefile.in +++ epiphany-browser-2.22.1.1/lib/egg/Makefile.in @@ -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 @@ -85,6 +89,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 +133,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 +160,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@ @@ -204,8 +228,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 +281,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 +306,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -307,11 +337,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 \ @@ -412,7 +439,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) @@ -429,74 +456,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 @@ -553,21 +580,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; \ @@ -621,7 +649,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-am @@ -635,20 +663,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 @@ -669,22 +689,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.1.1.orig/lib/Makefile.in +++ epiphany-browser-2.22.1.1/lib/Makefile.in @@ -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 @@ -136,8 +140,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 +147,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@ @@ -187,6 +191,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@ @@ -198,6 +218,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@ @@ -264,8 +286,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@ @@ -316,14 +339,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@ @@ -335,7 +364,6 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ -builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ @@ -367,11 +395,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 @@ -500,7 +525,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) @@ -536,216 +561,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) \ @@ -792,7 +821,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 \ @@ -893,21 +923,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; \ @@ -921,7 +952,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`; \ @@ -929,8 +960,6 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ @@ -942,7 +971,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 @@ -982,7 +1011,7 @@ -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags + distclean-libtool distclean-tags dvi: dvi-recursive @@ -996,20 +1025,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 @@ -1030,26 +1051,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 --- epiphany-browser-2.22.1.1.orig/ltmain.sh +++ epiphany-browser-2.22.1.1/ltmain.sh @@ -2,7 +2,7 @@ # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007 Free Software Foundation, Inc. +# 2007, 2008 Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 # # This program is free software; you can redistribute it and/or modify @@ -43,8 +43,8 @@ PROGRAM=ltmain.sh PACKAGE=libtool -VERSION="1.5.24 Debian 1.5.24-1ubuntu1" -TIMESTAMP=" (1.1220.2.456 2007/06/24 02:25:32)" +VERSION="1.5.26 Debian 1.5.26-1ubuntu1" +TIMESTAMP=" (1.1220.2.493 2008/02/01 16:58:18)" # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then @@ -113,15 +113,21 @@ # These must not be set unconditionally because not all systems understand # e.g. LANG=C (notably SCO). # We save the old values to restore during execute mode. -for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +lt_env= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var + lt_env=\"$lt_var=\$$lt_var \$lt_env\" $lt_var=C export $lt_var fi" done +if test -n "$lt_env"; then + lt_env="env $lt_env" +fi + # Make sure IFS has a sensible default lt_nl=' ' @@ -485,7 +491,7 @@ echo "\ $PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP -Copyright (C) 2007 Free Software Foundation, Inc. +Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." exit $? @@ -788,6 +794,7 @@ *.for) xform=for ;; *.java) xform=java ;; *.obj) xform=obj ;; + *.sx) xform=sx ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` @@ -956,7 +963,7 @@ $run $rm "$lobj" "$output_obj" $show "$command" - if $run eval "$command"; then : + if $run eval $lt_env "$command"; then : else test -n "$output_obj" && $run $rm $removelist exit $EXIT_FAILURE @@ -1028,7 +1035,7 @@ command="$command$suppress_output" $run $rm "$obj" "$output_obj" $show "$command" - if $run eval "$command"; then : + if $run eval $lt_env "$command"; then : else $run $rm $removelist exit $EXIT_FAILURE @@ -1161,6 +1168,7 @@ thread_safe=no vinfo= vinfo_number=no + single_module="${wl}-single_module" func_infer_tag $base_compile @@ -1646,6 +1654,11 @@ continue ;; + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + -module) module=yes continue @@ -2152,7 +2165,12 @@ continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` - for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" @@ -2948,12 +2966,18 @@ # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + eval deplibdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done - if test -f "$path/$depdepl" ; then + if test -f "$deplibdir/$depdepl" ; then + depdepl="$deplibdir/$depdepl" + elif test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" + else + # Can't find it, oh well... + depdepl= fi # do not add paths which are already there case " $newlib_search_path " in @@ -3101,9 +3125,10 @@ case $linkmode in oldlib) - if test -n "$deplibs"; then - $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 - fi + case " $deplibs" in + *\ -l* | *\ -L*) + $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 ;; + esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 @@ -4245,9 +4270,10 @@ ;; obj) - if test -n "$deplibs"; then - $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 - fi + case " $deplibs" in + *\ -l* | *\ -L*) + $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 ;; + esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 @@ -6486,7 +6512,7 @@ fi # Restore saved environment variables - for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var