diff -Nru webkitgtk-2.4.9/aclocal.m4 webkitgtk-2.4.10/aclocal.m4 --- webkitgtk-2.4.9/aclocal.m4 2015-05-20 09:29:20.000000000 +0000 +++ webkitgtk-2.4.10/aclocal.m4 2016-03-14 07:36:57.000000000 +0000 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.14.1 -*- Autoconf -*- +# generated automatically by aclocal 1.15 -*- Autoconf -*- -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,32 +20,63 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- +dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +dnl serial 11 (pkg-config-0.29) +dnl +dnl Copyright © 2004 Scott James Remnant . +dnl Copyright © 2012-2015 Dan Nicholson +dnl +dnl This program is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 2 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +dnl 02111-1307, USA. +dnl +dnl As a special exception to the GNU General Public License, if you +dnl distribute this file as part of a program that contains a +dnl configuration script generated by Autoconf, you may include it under +dnl the same distribution terms that you use for the rest of that +dnl program. + +dnl PKG_PREREQ(MIN-VERSION) +dnl ----------------------- +dnl Since: 0.29 +dnl +dnl Verify that the version of the pkg-config macros are at least +dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's +dnl installed version of pkg-config, this checks the developer's version +dnl of pkg.m4 when generating configure. +dnl +dnl To ensure that this macro is defined, also add: +dnl m4_ifndef([PKG_PREREQ], +dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) +dnl +dnl See the "Since" comment for each macro you use to see what version +dnl of the macros you require. +m4_defun([PKG_PREREQ], +[m4_define([PKG_MACROS_VERSION], [0.29]) +m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, + [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) +])dnl PKG_PREREQ + +dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) +dnl ---------------------------------- +dnl Since: 0.16 +dnl +dnl Search for the pkg-config tool and set the PKG_CONFIG variable to +dnl first found in the path. Checks that the version of pkg-config found +dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is +dnl used since that's the first version where most current features of +dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) @@ -67,18 +98,19 @@ PKG_CONFIG="" fi fi[]dnl -])# PKG_PROG_PKG_CONFIG +])dnl PKG_PROG_PKG_CONFIG -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- +dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------------------------------- +dnl Since: 0.18 +dnl +dnl Check to see whether a particular set of modules exists. Similar to +dnl PKG_CHECK_MODULES(), but does not set variables or print errors. +dnl +dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +dnl only at the first occurence in configure.ac, so if the first place +dnl it's called might be skipped (such as if it is within an "if", you +dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ @@ -88,8 +120,10 @@ $3])dnl fi]) -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- +dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +dnl --------------------------------------------- +dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting +dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" @@ -101,10 +135,11 @@ else pkg_failed=untried fi[]dnl -])# _PKG_CONFIG +])dnl _PKG_CONFIG -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- +dnl _PKG_SHORT_ERRORS_SUPPORTED +dnl --------------------------- +dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then @@ -112,19 +147,17 @@ else _pkg_short_errors_supported=no fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED +])dnl _PKG_SHORT_ERRORS_SUPPORTED -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- +dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl -------------------------------------------------------------- +dnl Since: 0.4.0 +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES might not happen, you should be sure to include an +dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl @@ -178,16 +211,40 @@ AC_MSG_RESULT([yes]) $3 fi[]dnl -])# PKG_CHECK_MODULES +])dnl PKG_CHECK_MODULES -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC + + +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -198,16 +255,18 @@ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR +])dnl PKG_INSTALLDIR -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -218,13 +277,15 @@ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR +])dnl PKG_NOARCH_INSTALLDIR -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl @@ -233,7 +294,7 @@ AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl -])# PKG_CHECK_VAR +])dnl PKG_CHECK_VAR # Configure paths for GLIB # Owen Taylor 1997-2001 @@ -536,7 +597,7 @@ AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) ]) -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -548,10 +609,10 @@ # 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.14' +[am__api_version='1.15' 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.14.1], [], +m4_if([$1], [1.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -567,14 +628,14 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.14.1])dnl +[AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -626,7 +687,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -657,7 +718,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -848,7 +909,7 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -924,7 +985,7 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1014,8 +1075,8 @@ # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl @@ -1089,6 +1150,9 @@ AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi +dnl The trailing newline in this macro's definition is deliberate, for +dnl backward compatibility and to allow trailing 'dnl'-style comments +dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not @@ -1118,7 +1182,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1129,7 +1193,7 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then +if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; @@ -1139,7 +1203,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1161,7 +1225,7 @@ # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1196,7 +1260,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1246,7 +1310,7 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1285,7 +1349,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1314,7 +1378,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1361,7 +1425,7 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1380,7 +1444,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1461,7 +1525,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1521,7 +1585,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1549,7 +1613,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1568,7 +1632,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -Nru webkitgtk-2.4.9/autotoolsconfig.h.in webkitgtk-2.4.10/autotoolsconfig.h.in --- webkitgtk-2.4.9/autotoolsconfig.h.in 2015-05-20 09:29:43.000000000 +0000 +++ webkitgtk-2.4.10/autotoolsconfig.h.in 2016-03-14 07:37:51.000000000 +0000 @@ -101,8 +101,7 @@ /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* */ diff -Nru webkitgtk-2.4.9/ChangeLog webkitgtk-2.4.10/ChangeLog --- webkitgtk-2.4.9/ChangeLog 2015-05-20 09:27:57.000000000 +0000 +++ webkitgtk-2.4.10/ChangeLog 2016-03-14 07:35:55.000000000 +0000 @@ -1,3 +1,18 @@ +2016-03-14 Carlos Garcia Campos + + Unreviewed. Update NEWS and Versions.m4 for 2.4.10 release. + + * Source/autotools/Versions.m4: Bump version numbers. + +2014-03-25 Gabor Rapcsanyi + + [EFL] Add ARM64 build support + https://bugs.webkit.org/show_bug.cgi?id=130506 + + Rubber stamped by Gyuyoung Kim. + + * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined. + 2015-05-20 Carlos Garcia Campos Unreviewed. Update NEWS and Versions.m4 for 2.4.9 release. diff -Nru webkitgtk-2.4.9/configure webkitgtk-2.4.10/configure --- webkitgtk-2.4.9/configure 2015-05-20 09:29:21.000000000 +0000 +++ webkitgtk-2.4.10/configure 2016-03-14 07:37:02.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for WebKitGTK 2.4.9. +# Generated by GNU Autoconf 2.69 for WebKitGTK 2.4.10. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='WebKitGTK' PACKAGE_TARNAME='webkitgtk' -PACKAGE_VERSION='2.4.9' -PACKAGE_STRING='WebKitGTK 2.4.9' +PACKAGE_VERSION='2.4.10' +PACKAGE_STRING='WebKitGTK 2.4.10' PACKAGE_BUGREPORT='http://bugs.webkit.org/' PACKAGE_URL='' @@ -869,6 +869,7 @@ PKG_CONFIG_PATH PKG_CONFIG CXXCPP +LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO @@ -954,6 +955,7 @@ docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -981,6 +983,7 @@ enable_shared with_pic enable_fast_install +with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock @@ -1038,6 +1041,7 @@ CXXFLAGS CCC CPP +LT_SYS_LIBRARY_PATH CXXCPP PKG_CONFIG PKG_CONFIG_PATH @@ -1144,6 +1148,7 @@ sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' @@ -1396,6 +1401,15 @@ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1533,7 +1547,7 @@ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1646,7 +1660,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures WebKitGTK 2.4.9 to adapt to many kinds of systems. +\`configure' configures WebKitGTK 2.4.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1686,6 +1700,7 @@ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] @@ -1716,7 +1731,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of WebKitGTK 2.4.9:";; + short | recursive ) echo "Configuration of WebKitGTK 2.4.10:";; esac cat <<\_ACEOF @@ -1792,11 +1807,14 @@ Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-pic try to use only PIC/non-PIC objects [default=use + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] + --with-aix-soname=aix|svr4|both + shared library versioning (aka "SONAME") variant to + provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-sysroot=DIR Search for dependent libraries within DIR - (or the compiler's sysroot if not specified). + --with-sysroot[=DIR] Search for dependent libraries within DIR (or the + compiler's sysroot if not specified). --with-gtk=2.0|3.0 the GTK+ version to use (default: 3.0) --with-html-dir=PATH path to installed docs @@ -1811,6 +1829,8 @@ CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor + LT_SYS_LIBRARY_PATH + User-defined run-time library search path. CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH @@ -1998,7 +2018,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -WebKitGTK configure 2.4.9 +WebKitGTK configure 2.4.10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2542,7 +2562,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by WebKitGTK $as_me 2.4.9, which was +It was created by WebKitGTK $as_me 2.4.10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2928,7 +2948,7 @@ WEBKIT_MAJOR_VERSION=2 WEBKIT_MINOR_VERSION=4 -WEBKIT_MICRO_VERSION=9 +WEBKIT_MICRO_VERSION=10 WEBKIT_USER_AGENT_MAJOR_VERSION=538 WEBKIT_USER_AGENT_MINOR_VERSION=15 @@ -5492,9 +5512,9 @@ fi -LIBWEBKITGTK_VERSION=22:15:22 -LIBJAVASCRIPTCOREGTK_VERSION=16:17:16 -LIBWEBKIT2GTK_VERSION=35:12:10 +LIBWEBKITGTK_VERSION=22:16:22 +LIBJAVASCRIPTCOREGTK_VERSION=16:18:16 +LIBWEBKIT2GTK_VERSION=35:13:10 @@ -5718,14 +5738,14 @@ *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -6051,8 +6071,8 @@ -macro_version='2.4.2' -macro_revision='1.3337' +macro_version='2.4.6' +macro_revision='2.4.6' @@ -6066,7 +6086,7 @@ -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # Backslashify metacharacters that are still active within # double-quoted strings. @@ -6115,7 +6135,7 @@ $ECHO "" } -case "$ECHO" in +case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 @@ -6308,19 +6328,19 @@ # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -6334,7 +6354,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -6345,7 +6365,7 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -6356,32 +6376,32 @@ $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -6424,33 +6444,38 @@ else if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -6461,15 +6486,15 @@ esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : @@ -6575,9 +6600,9 @@ fi fi - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -6585,8 +6610,8 @@ esac fi - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -6637,7 +6662,7 @@ $as_echo_n "(cached) " >&6 else i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -6677,7 +6702,7 @@ lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -6696,6 +6721,11 @@ lt_cv_sys_max_cmd_len=196608 ;; + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not @@ -6722,22 +6752,23 @@ ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -6755,7 +6786,7 @@ fi -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else @@ -6773,30 +6804,6 @@ : ${MV="mv -f"} : ${RM="rm -f"} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -$as_echo "$xsi_shell" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -lt_shell_append=no -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -$as_echo "$lt_shell_append" >&6; } - - if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else @@ -6919,13 +6926,13 @@ reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) - if test "$GCC" != yes; then + if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + if test yes = "$GCC"; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi @@ -7050,13 +7057,13 @@ # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # '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. +# that 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 aix[4-9]*) @@ -7083,8 +7090,7 @@ # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -7120,10 +7126,6 @@ fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -7161,8 +7163,8 @@ lt_cv_deplibs_check_method=pass_all ;; -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -7184,8 +7186,8 @@ lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' @@ -7238,6 +7240,9 @@ tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac fi @@ -7392,8 +7397,8 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -7405,7 +7410,7 @@ ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac @@ -7559,7 +7564,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 @@ -7567,7 +7572,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -7580,7 +7585,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -7797,14 +7802,14 @@ if test -n "$RANLIB"; then case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + bitrig* | openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in @@ -7887,7 +7892,7 @@ symcode='[ABCDGISTW]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; @@ -7920,14 +7925,44 @@ symcode='[ABCDGIRSTW]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -7945,20 +7980,24 @@ # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -8006,11 +8045,11 @@ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else @@ -8036,7 +8075,7 @@ { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -8056,13 +8095,13 @@ mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then + test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -8083,7 +8122,7 @@ rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -8136,6 +8175,16 @@ + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } @@ -8148,9 +8197,9 @@ lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -8160,8 +8209,8 @@ no|'') ;; #( *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 -$as_echo "${with_sysroot}" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 +$as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac @@ -8173,18 +8222,99 @@ +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 +$as_echo_n "checking for a working dd... " >&6; } +if ${ac_cv_path_lt_DD+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +if test -z "$lt_DD"; then + ac_path_lt_DD_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + 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_prog in dd; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_lt_DD" || continue +if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi + $ac_path_lt_DD_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_lt_DD"; then + : + fi +else + ac_cv_path_lt_DD=$lt_DD +fi + +rm -f conftest.i conftest2.i conftest.out +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 +$as_echo "$ac_cv_path_lt_DD" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 +$as_echo_n "checking how to truncate binary pipes... " >&6; } +if ${lt_cv_truncate_bin+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 +$as_echo "$lt_cv_truncate_bin" >&6; } + + + + + + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -8193,24 +8323,25 @@ test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -8239,9 +8370,50 @@ rm -rf conftest* ;; -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -8255,9 +8427,19 @@ LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" ;; - ppc64-*linux*|powerpc64-*linux*) + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -8276,7 +8458,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - ppc*-*linux*|powerpc*-*linux*) + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -8294,7 +8479,7 @@ *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } @@ -8334,13 +8519,14 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; -sparc*-*solaris*) - # Find out which ABI we are using. +*-*solaris*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -8350,7 +8536,20 @@ case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; + yes*) + case $host in + i?86-*-solaris*|x86_64-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD=${LD-ld}_sol2 + fi + ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" @@ -8364,7 +8563,7 @@ ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. @@ -8475,7 +8674,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi @@ -8978,7 +9177,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + 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 @@ -8990,7 +9189,13 @@ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 @@ -9001,6 +9206,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : @@ -9028,11 +9234,12 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : @@ -9054,7 +9261,9 @@ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? - if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 @@ -9067,32 +9276,32 @@ $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # 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' ;; + _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' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; 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' + if test yes = "$lt_cv_ld_exported_symbols_list"; 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}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -9100,6 +9309,41 @@ ;; esac +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default @@ -9117,9 +9361,9 @@ func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; esac } # func_stripname_cnf @@ -9144,14 +9388,14 @@ *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -9170,14 +9414,27 @@ # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : - withval=$with_pic; pic_mode="$withval" + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for lt_pkg in $withval; do + IFS=$lt_save_ifs + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS=$lt_save_ifs + ;; + esac else pic_mode=default fi -test -z "$pic_mode" && pic_mode=default - @@ -9193,14 +9450,14 @@ *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -9214,11 +9471,63 @@ + shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[5-9]*,yes) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 +$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } + +# Check whether --with-aix-soname was given. +if test "${with_aix_soname+set}" = set; then : + withval=$with_aix_soname; case $withval in + aix|svr4|both) + ;; + *) + as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname +else + if ${lt_cv_with_aix_soname+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_with_aix_soname=aix +fi + + with_aix_soname=$lt_cv_with_aix_soname +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 +$as_echo "$with_aix_soname" >&6; } + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + + + + + + + # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -9248,6 +9557,10 @@ + + + + test -z "$LN_S" && LN_S="ln -s" @@ -9263,7 +9576,7 @@ -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -9302,7 +9615,7 @@ # 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 + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -9313,14 +9626,14 @@ ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -9329,15 +9642,8 @@ test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +func_cc_basename $compiler +cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it @@ -9352,22 +9658,22 @@ else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -f "$ac_dir/${ac_tool_prefix}file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -9390,13 +9696,13 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -9418,22 +9724,22 @@ else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -f "$ac_dir/file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -9456,13 +9762,13 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -9483,7 +9789,7 @@ # Use C for the default configuration in the libtool script -lt_save_CC="$CC" +lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9545,7 +9851,7 @@ lt_prog_compiler_no_builtin_flag= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; @@ -9561,7 +9867,7 @@ lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" + lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # 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 @@ -9591,7 +9897,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then +if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : @@ -9609,17 +9915,18 @@ lt_prog_compiler_static= - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi + lt_prog_compiler_pic='-fPIC' ;; amigaos*) @@ -9630,8 +9937,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -9647,6 +9954,11 @@ # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -9707,7 +10019,9 @@ case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' - lt_prog_compiler_pic='-Xcompiler -fPIC' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi ;; esac else @@ -9715,7 +10029,7 @@ case $host_os in aix*) lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else @@ -9723,10 +10037,29 @@ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # 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='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -9742,7 +10075,7 @@ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' + lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -9751,9 +10084,9 @@ lt_prog_compiler_static='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' @@ -9778,6 +10111,12 @@ lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -9798,18 +10137,33 @@ ;; *) case `$CC -V 2>&1 | sed 5q` in - *Sun\ F* | *Sun*Fortran*) + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; esac ;; esac @@ -9860,7 +10214,7 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi @@ -9889,7 +10243,7 @@ fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; @@ -9921,7 +10275,7 @@ 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" + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # 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 @@ -9951,7 +10305,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; @@ -9983,7 +10337,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" + 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 @@ -10002,13 +10356,13 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } -if test x"$lt_cv_prog_compiler_static_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= @@ -10128,8 +10482,8 @@ -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -10141,9 +10495,9 @@ ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -10171,7 +10525,6 @@ hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported @@ -10187,9 +10540,9 @@ # 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'. + # 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_|_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 @@ -10204,7 +10557,7 @@ # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -10212,7 +10565,7 @@ # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) @@ -10225,7 +10578,7 @@ # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -10247,24 +10600,24 @@ esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -10277,7 +10630,7 @@ case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 @@ -10296,7 +10649,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -10312,7 +10665,7 @@ allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi @@ -10322,7 +10675,7 @@ # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' - export_dynamic_flag_spec='${wl}--export-all-symbols' + export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes @@ -10330,61 +10683,89 @@ exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -10395,43 +10776,47 @@ lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + export_dynamic_flag_spec='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld='-rpath $libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -10445,8 +10830,8 @@ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -10464,8 +10849,8 @@ _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -10477,7 +10862,7 @@ ld_shlibs=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -10492,9 +10877,9 @@ # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -10511,15 +10896,15 @@ *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac - if test "$ld_shlibs" = no; then + if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= @@ -10535,7 +10920,7 @@ # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported @@ -10543,34 +10928,57 @@ ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; 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="" + no_entry_flag= else # 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 - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' 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' + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | 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. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive 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 + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -10589,13 +10997,21 @@ hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes - file_list_spec='${wl}-f,' + file_list_spec='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct=no + hardcode_direct_absolute=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -10614,36 +11030,42 @@ ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi - link_all_deplibs=no + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec='${wl}-bexpall' + export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -10678,7 +11100,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -10686,17 +11108,17 @@ aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -10731,7 +11153,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -10739,21 +11161,33 @@ aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag=' $wl-bernotok' + allow_undefined_flag=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -10762,7 +11196,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -10792,35 +11226,37 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -10829,7 +11265,7 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -10848,23 +11284,24 @@ hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + else whole_archive_flag_spec='' fi link_all_deplibs=yes - allow_undefined_flag="$_lt_dar_allow_undefined" + allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - 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}" + 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 ld_shlibs=no @@ -10878,10 +11315,6 @@ hardcode_shlibpath_var=no ;; - freebsd1*) - ld_shlibs=no - ;; - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little @@ -10894,7 +11327,7 @@ ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) + freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes @@ -10910,34 +11343,33 @@ ;; hpux9*) - if test "$GCC" = yes; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_flag_spec_ld='+b $libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes @@ -10945,25 +11377,25 @@ ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) @@ -10975,7 +11407,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -10994,14 +11426,14 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } -if test x"$lt_cv_prog_compiler__b" = xyes; then - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +if test yes = "$lt_cv_prog_compiler__b"; then + archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi @@ -11009,8 +11441,8 @@ ;; esac fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in @@ -11021,7 +11453,7 @@ *) hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -11032,8 +11464,8 @@ ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. @@ -11043,8 +11475,8 @@ if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } @@ -11056,24 +11488,35 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } - if test "$lt_cv_irix_exported_symbol" = yes; then - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + if test yes = "$lt_cv_irix_exported_symbol"; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + link_all_deplibs=no else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + ld_shlibs=yes + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -11088,7 +11531,7 @@ newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; @@ -11096,27 +11539,19 @@ *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no @@ -11127,33 +11562,53 @@ hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported - archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes ;; osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' @@ -11164,24 +11619,24 @@ solaris*) no_undefined_flag=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -11191,11 +11646,11 @@ solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi @@ -11205,10 +11660,10 @@ ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -11257,43 +11712,43 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' + no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' + no_undefined_flag='$wl-z,text' + allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' + export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -11308,10 +11763,10 @@ ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='${wl}-Blargedynsym' + export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi @@ -11319,7 +11774,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no +test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld @@ -11345,7 +11800,7 @@ # Assume -lc should be added archive_cmds_need_lc=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -11557,22 +12012,17 @@ - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -11588,28 +12038,35 @@ ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -11623,7 +12080,7 @@ # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([A-Za-z]:\),\1,g'` ;; + $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -11632,7 +12089,7 @@ library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -11649,56 +12106,108 @@ # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + version_type=linux # correct to gnu/linux during the next big refactor + 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' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -11708,27 +12217,27 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -11740,7 +12249,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -11749,8 +12258,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -11766,17 +12275,17 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -11785,8 +12294,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -11813,7 +12322,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -11826,8 +12335,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -11840,7 +12349,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -11853,8 +12362,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -11864,18 +12373,14 @@ ;; dgux*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; -freebsd1*) - dynamic_linker=no - ;; - freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. @@ -11883,25 +12388,26 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[123]*) objformat=aout ;; + freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2*) + freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) @@ -11920,26 +12426,15 @@ esac ;; -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -11957,14 +12452,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -11972,8 +12468,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -11982,8 +12478,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -11993,11 +12489,11 @@ ;; interix[3-9]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -12008,16 +12504,16 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -12036,23 +12532,43 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. hardcode_into_libs=yes - ;; -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec='-L$libdir' ;; -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -12096,7 +12612,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -12128,12 +12649,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -12142,8 +12663,8 @@ ;; newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -12152,58 +12673,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -12211,11 +12742,11 @@ ;; solaris*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -12225,20 +12756,20 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -12259,24 +12790,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -12291,19 +12822,19 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -12313,20 +12844,35 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + @@ -12423,15 +12969,15 @@ hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || - test "X$hardcode_automatic" = "Xyes" ; then + test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. - if test "$hardcode_direct" != no && + if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && + test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else @@ -12446,12 +12992,12 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } -if test "$hardcode_action" = relink || - test "$inherit_rpath" = yes; then +if test relink = "$hardcode_action" || + test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -12461,7 +13007,7 @@ - if test "x$enable_dlopen" != xyes; then + if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -12471,23 +13017,23 @@ case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : @@ -12525,10 +13071,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else - lt_cv_dlopen="dyld" + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes @@ -12536,10 +13082,18 @@ ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" + lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } @@ -12578,11 +13132,11 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } @@ -12621,7 +13175,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } @@ -12660,7 +13214,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } @@ -12699,7 +13253,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi @@ -12720,21 +13274,21 @@ ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 @@ -12742,7 +13296,7 @@ if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12789,9 +13343,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12821,7 +13375,7 @@ (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12841,14 +13395,14 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12895,9 +13449,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12927,7 +13481,7 @@ (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12948,9 +13502,9 @@ $as_echo "$lt_cv_dlopen_self_static" >&6; } fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -12994,7 +13548,7 @@ # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 @@ -13022,7 +13576,7 @@ - # Report which library types will actually be built + # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 @@ -13030,13 +13584,13 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -13044,8 +13598,12 @@ ;; aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -13055,7 +13613,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } @@ -13069,11 +13627,11 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -CC="$lt_save_CC" +CC=$lt_save_CC - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then + if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -13226,7 +13784,6 @@ hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= -hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported @@ -13253,7 +13810,7 @@ # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -13314,46 +13871,39 @@ CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + func_cc_basename $compiler +cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -13367,7 +13917,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -13378,7 +13928,7 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -13389,32 +13939,32 @@ $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -13450,22 +14000,22 @@ # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $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' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi @@ -13502,18 +14052,30 @@ ld_shlibs_CXX=no ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; 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="" + 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. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -13523,6 +14085,13 @@ ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -13541,13 +14110,21 @@ hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - file_list_spec_CXX='${wl}-f,' + file_list_spec_CXX='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct_CXX=no + hardcode_direct_absolute_CXX=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -13565,36 +14142,44 @@ fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec_CXX='${wl}-bexpall' + export_dynamic_flag_spec_CXX='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - allow_undefined_flag_CXX='-berok' + # The "-G" linker flag allows undefined symbols. + no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -13629,7 +14214,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -13637,18 +14222,18 @@ aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -13683,7 +14268,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -13691,22 +14276,34 @@ aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' ${wl}-bernotok' - allow_undefined_flag_CXX=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag_CXX=' $wl-bernotok' + allow_undefined_flag_CXX=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -13716,7 +14313,7 @@ allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi @@ -13744,57 +14341,58 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - 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' + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + 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 @@ -13808,26 +14406,27 @@ hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes - allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - 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}" + 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 yes != "$lt_cv_apple_cc_single_mod"; 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 else @@ -13836,6 +14435,34 @@ ;; + os2*) + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_minus_L_CXX=yes + allow_undefined_flag_CXX=unsupported + shrext_cmds=.dll + archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes_CXX=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -13854,7 +14481,7 @@ esac ;; - freebsd[12]*) + freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no @@ -13870,18 +14497,15 @@ ld_shlibs_CXX=yes ;; - gnu*) - ;; - haiku*) - archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default @@ -13893,7 +14517,7 @@ ld_shlibs_CXX=no ;; aCC*) - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -13902,11 +14526,11 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -13916,15 +14540,15 @@ ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi @@ -13950,13 +14574,13 @@ aCC*) case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -13967,20 +14591,20 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -13995,22 +14619,22 @@ interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -14019,22 +14643,22 @@ old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -14042,8 +14666,8 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -14052,10 +14676,10 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -14069,59 +14693,59 @@ # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - 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' + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + 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' + 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* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - 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' + 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' ;; esac - 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; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + 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; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' @@ -14135,18 +14759,18 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -14154,10 +14778,10 @@ *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on @@ -14215,22 +14839,17 @@ ld_shlibs_CXX=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - ld_shlibs_CXX=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='${wl}-E' - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='$wl-E' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -14246,9 +14865,9 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using @@ -14266,17 +14885,17 @@ cxx*) case $host in osf3*) - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac @@ -14291,21 +14910,21 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists @@ -14351,9 +14970,9 @@ # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no @@ -14361,7 +14980,7 @@ solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; @@ -14378,30 +14997,30 @@ ;; gcx*) # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -14409,11 +15028,11 @@ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -14422,52 +15041,52 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='${wl}-z,text' + no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag_CXX='${wl}-z,text' - allow_undefined_flag_CXX='${wl}-z,nodefs' + no_undefined_flag_CXX='$wl-z,text' + allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='${wl}-Bexport' + export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ - '"$old_archive_cmds_CXX" + '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ - '"$reload_cmds_CXX" + '"$reload_cmds_CXX" ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -14499,10 +15118,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } - test "$ld_shlibs_CXX" = no && can_build_shared=no + test no = "$ld_shlibs_CXX" && can_build_shared=no - GCC_CXX="$GXX" - LD_CXX="$LD" + GCC_CXX=$GXX + LD_CXX=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -14530,6 +15149,7 @@ case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 @@ -14545,13 +15165,13 @@ pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -14567,16 +15187,16 @@ case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX="${prev}${p}" + compiler_lib_search_path_CXX=$prev$p else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -14584,9 +15204,9 @@ esac else if test -z "$postdeps_CXX"; then - postdeps_CXX="${prev}${p}" + postdeps_CXX=$prev$p else - postdeps_CXX="${postdeps_CXX} ${prev}${p}" + postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= @@ -14601,15 +15221,15 @@ continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then - predep_objects_CXX="$p" + predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX="$p" + postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi @@ -14639,51 +15259,6 @@ postdep_objects_CXX= postdeps_CXX= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac @@ -14692,7 +15267,7 @@ esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi @@ -14731,17 +15306,18 @@ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi + lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) @@ -14752,8 +15328,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -14768,6 +15344,11 @@ # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static_CXX='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -14817,7 +15398,7 @@ case $host_os in aix[4-9]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else @@ -14857,14 +15438,14 @@ case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -14893,7 +15474,7 @@ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -14901,7 +15482,7 @@ lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' @@ -15046,7 +15627,7 @@ fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; @@ -15078,7 +15659,7 @@ 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" + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # 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 @@ -15108,7 +15689,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; @@ -15134,7 +15715,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS="$LDFLAGS" + 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 @@ -15153,13 +15734,13 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= @@ -15273,8 +15854,8 @@ -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -15286,9 +15867,9 @@ ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -15305,21 +15886,27 @@ case $host_os in 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 - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX 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") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { 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' + export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - export_symbols_cmds_CXX="$ltdll_cmds" + export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in - cl*) ;; + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' @@ -15336,7 +15923,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no +test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld @@ -15353,7 +15940,7 @@ # Assume -lc should be added archive_cmds_need_lc_CXX=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -15475,15 +16062,13 @@ - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -15500,56 +16085,108 @@ # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + version_type=linux # correct to gnu/linux during the next big refactor + 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' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -15559,27 +16196,27 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -15591,7 +16228,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -15600,8 +16237,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -15617,16 +16254,16 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -15635,8 +16272,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -15663,7 +16300,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -15676,8 +16313,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -15690,7 +16327,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -15703,8 +16340,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -15713,18 +16350,14 @@ ;; dgux*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; -freebsd1*) - dynamic_linker=no - ;; - freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. @@ -15732,25 +16365,26 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[123]*) objformat=aout ;; + freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2*) + freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) @@ -15769,26 +16403,15 @@ esac ;; -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -15806,14 +16429,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -15821,8 +16445,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -15831,8 +16455,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -15842,11 +16466,11 @@ ;; interix[3-9]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15857,16 +16481,16 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -15885,8 +16509,8 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -15895,13 +16519,33 @@ dynamic_linker=no ;; -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux +linux*android*) + version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec_CXX='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15945,7 +16589,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -15977,12 +16626,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -15991,8 +16640,8 @@ ;; newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -16001,58 +16650,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -16060,11 +16719,11 @@ ;; solaris*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -16074,20 +16733,20 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -16108,24 +16767,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -16140,19 +16799,19 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -16162,20 +16821,32 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + @@ -16218,15 +16889,15 @@ hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || - test "X$hardcode_automatic_CXX" = "Xyes" ; then + test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. - if test "$hardcode_direct_CXX" != no && + if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && - test "$hardcode_minus_L_CXX" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && + test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else @@ -16241,12 +16912,12 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } -if test "$hardcode_action_CXX" = relink || - test "$inherit_rpath_CXX" = yes; then +if test relink = "$hardcode_action_CXX" || + test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -16269,7 +16940,7 @@ lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -16289,6 +16960,8 @@ + + ac_config_commands="$ac_config_commands libtool" @@ -21981,6 +22654,41 @@ CFLAGS="$CFLAGS -O0" fi +# Some architectures need to add libatomic explicitly +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +int main() { + std::atomic i(0); + i++; + return 0; +} + +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + has_atomic=yes +else + has_atomic=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +if test "$has_atomic" = "no"; then + LIBS="$LIBS -latomic" +fi + # Configuration flags that are used throughout WebKitGTK+. cat >>confdefs.h <<_ACEOF @@ -22389,7 +23097,7 @@ # We would put AM_INIT_AUTOMAKE into SetupAutomake.m4, but seems to cause autoconf errors. -am__api_version='1.14' +am__api_version='1.15' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } @@ -22485,7 +23193,7 @@ $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi -if test x"${install_sh}" != xset; then +if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; @@ -22800,7 +23508,7 @@ # Define the identity of the package. PACKAGE='webkitgtk' - VERSION='2.4.9' + VERSION='2.4.10' cat >>confdefs.h <<_ACEOF @@ -22834,8 +23542,8 @@ # mkdir_p='$(MKDIR_P)' -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' @@ -24483,7 +25191,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by WebKitGTK $as_me 2.4.9, which was +This file was extended by WebKitGTK $as_me 2.4.10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -24549,7 +25257,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -WebKitGTK config.status 2.4.9 +WebKitGTK config.status 2.4.10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -24686,8 +25394,10 @@ enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' @@ -24732,10 +25442,13 @@ GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' @@ -24768,7 +25481,6 @@ allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' @@ -24801,7 +25513,8 @@ finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' +configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' @@ -24840,7 +25553,6 @@ allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' @@ -24882,6 +25594,7 @@ OBJDUMP \ SHELL \ ECHO \ +PATH_SEPARATOR \ SED \ GREP \ EGREP \ @@ -24907,9 +25620,12 @@ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +lt_cv_nm_interface \ nm_file_list_spec \ +lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ @@ -24930,7 +25646,6 @@ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ -hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ @@ -24964,7 +25679,6 @@ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ -hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ @@ -24977,7 +25691,7 @@ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -25004,7 +25718,8 @@ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ -sys_lib_dlsearch_path_spec \ +configure_time_dlsearch_path \ +configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ @@ -25018,7 +25733,7 @@ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -25027,19 +25742,16 @@ done ac_aux_dir='$ac_aux_dir' -xsi_shell='$xsi_shell' -lt_shell_append='$lt_shell_append' -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' @@ -25666,55 +26378,53 @@ case $ac_file$ac_mode in "libtool":C) - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 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. + +# GNU Libtool 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 of the License, or +# (at your option) any later version. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool 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. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # The names of the tagged configurations supported by this script. -available_tags="CXX " +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG @@ -25743,12 +26453,18 @@ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + # The host system. host_alias=$host_alias host=$host @@ -25851,18 +26567,27 @@ # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec -# The root where to search for dependent libraries,and in which our libraries should be installed. +# The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + # The name of the directory that contains temporary libtool files. objdir=$objdir @@ -25953,8 +26678,11 @@ # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen @@ -26044,20 +26772,16 @@ # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld - # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute @@ -26123,13 +26847,72 @@ _LT_EOF + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # 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 +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -26138,7 +26921,7 @@ esac -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if @@ -26148,165 +26931,6 @@ sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - if test x"$xsi_shell" = xyes; then - sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ -func_dirname ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_basename ()$/,/^} # func_basename /c\ -func_basename ()\ -{\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ -func_dirname_and_basename ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ -func_stripname ()\ -{\ -\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ -\ # positional parameters, so assign one to ordinary parameter first.\ -\ func_stripname_result=${3}\ -\ func_stripname_result=${func_stripname_result#"${1}"}\ -\ func_stripname_result=${func_stripname_result%"${2}"}\ -} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ -func_split_long_opt ()\ -{\ -\ func_split_long_opt_name=${1%%=*}\ -\ func_split_long_opt_arg=${1#*=}\ -} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ -func_split_short_opt ()\ -{\ -\ func_split_short_opt_arg=${1#??}\ -\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ -} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ -func_lo2o ()\ -{\ -\ case ${1} in\ -\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ -\ *) func_lo2o_result=${1} ;;\ -\ esac\ -} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_xform ()$/,/^} # func_xform /c\ -func_xform ()\ -{\ - func_xform_result=${1%.*}.lo\ -} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_arith ()$/,/^} # func_arith /c\ -func_arith ()\ -{\ - func_arith_result=$(( $* ))\ -} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_len ()$/,/^} # func_len /c\ -func_len ()\ -{\ - func_len_result=${#1}\ -} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - -fi - -if test x"$lt_shell_append" = xyes; then - sed -e '/^func_append ()$/,/^} # func_append /c\ -func_append ()\ -{\ - eval "${1}+=\\${2}"\ -} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ -func_append_quoted ()\ -{\ -\ func_quote_for_eval "${2}"\ -\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ -} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 -$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} -fi - - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -26390,20 +27014,16 @@ # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX - # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX diff -Nru webkitgtk-2.4.9/debian/changelog webkitgtk-2.4.10/debian/changelog --- webkitgtk-2.4.9/debian/changelog 2015-08-12 17:14:13.000000000 +0000 +++ webkitgtk-2.4.10/debian/changelog 2016-03-16 12:02:30.000000000 +0000 @@ -1,3 +1,20 @@ +webkitgtk (2.4.10-0ubuntu0.15.10.1) wily-security; urgency=medium + + * SECURITY UPDATE: Updated to 2.4.10 to fix multiple security issues + (LP: #1556964) + - CVE-2015-1120, CVE-2015-1076, CVE-2015-1071, CVE-2015-1081, + CVE-2015-1122, CVE-2015-1155, CVE-2014-1748, CVE-2015-3752, + CVE-2015-5809, CVE-2015-5928, CVE-2015-3749, CVE-2015-3659, + CVE-2015-3748, CVE-2015-3743, CVE-2015-3731, CVE-2015-3745, + CVE-2015-5822, CVE-2015-3658, CVE-2015-3741, CVE-2015-3727, + CVE-2015-5801, CVE-2015-5788, CVE-2015-3747, CVE-2015-5794, + CVE-2015-1127, CVE-2015-1153, CVE-2015-1083 + * Dropped upstreamed patches: + - fix-gtkdoc-error.patch, atomic_build_fix.patch, ppc64-align.patch, + fix-cloop.patch, use-abi64-for-mips64el.patch. + + -- Marc Deslauriers Wed, 16 Mar 2016 07:47:51 -0400 + webkitgtk (2.4.9-2ubuntu2) wily; urgency=medium * Merge with Debian, remaining changes: diff -Nru webkitgtk-2.4.9/debian/patches/atomic_build_fix.patch webkitgtk-2.4.10/debian/patches/atomic_build_fix.patch --- webkitgtk-2.4.9/debian/patches/atomic_build_fix.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/atomic_build_fix.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -From: Alberto Garcia -Subject: Some architectures need to add -latomic explicitly -Index: webkit/Source/autotools/SetupCompilerFlags.m4 -=================================================================== ---- webkit.orig/Source/autotools/SetupCompilerFlags.m4 -+++ webkit/Source/autotools/SetupCompilerFlags.m4 -@@ -57,3 +57,18 @@ else - CXXFLAGS="$CXXFLAGS -O0" - CFLAGS="$CFLAGS -O0" - fi -+ -+# Some architectures need to add libatomic explicitly -+AC_LANG_PUSH([C++]) -+AC_LINK_IFELSE([AC_LANG_SOURCE([[ -+#include -+int main() { -+ std::atomic i(0); -+ i++; -+ return 0; -+} -+]])], has_atomic=yes, has_atomic=no) -+AC_LANG_POP([C++]) -+if test "$has_atomic" = "no"; then -+ LIBS="$LIBS -latomic" -+fi diff -Nru webkitgtk-2.4.9/debian/patches/fix-cloop.patch webkitgtk-2.4.10/debian/patches/fix-cloop.patch --- webkitgtk-2.4.9/debian/patches/fix-cloop.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/fix-cloop.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,240 +0,0 @@ -From: Tomas Popela -Subject: Fix crash on powerpc -Bug-Debian: https://bugs.debian.org/771841 -Origin: http://pkgs.fedoraproject.org/cgit/webkitgtk3.git/tree/ -Index: webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -+++ webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -@@ -2002,7 +2002,7 @@ _llint_op_next_pname: - loadi 20[PC], t2 - loadi PayloadOffset[cfr, t2, 8], t2 - loadp JSPropertyNameIterator::m_jsStrings[t2], t3 -- loadi [t3, t0, 8], t3 -+ loadi PayloadOffset[t3, t0, 8], t3 - addi 1, t0 - storei t0, PayloadOffset[cfr, t1, 8] - loadi 4[PC], t1 -Index: webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/llint/LowLevelInterpreter.asm -+++ webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm -@@ -299,13 +299,13 @@ macro assertNotConstant(index) - end - - macro functionForCallCodeBlockGetter(targetRegister) -- loadp Callee[cfr], targetRegister -+ loadp Callee + PayloadOffset[cfr], targetRegister - loadp JSFunction::m_executable[targetRegister], targetRegister - loadp FunctionExecutable::m_codeBlockForCall[targetRegister], targetRegister - end - - macro functionForConstructCodeBlockGetter(targetRegister) -- loadp Callee[cfr], targetRegister -+ loadp Callee + PayloadOffset[cfr], targetRegister - loadp JSFunction::m_executable[targetRegister], targetRegister - loadp FunctionExecutable::m_codeBlockForConstruct[targetRegister], targetRegister - end -Index: webkitgtk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/interpreter/ProtoCallFrame.h -+++ webkitgtk/Source/JavaScriptCore/interpreter/ProtoCallFrame.h -@@ -36,7 +36,7 @@ struct ProtoCallFrame { - Register calleeValue; - Register argCountAndCodeOriginValue; - Register thisArg; -- size_t paddedArgCount; -+ uint32_t paddedArgCount; - JSValue *args; - - void init(CodeBlock*, JSScope*, JSObject*, JSValue, int, JSValue* otherArgs = 0); -@@ -53,7 +53,7 @@ struct ProtoCallFrame { - int argumentCountIncludingThis() const { return argCountAndCodeOriginValue.payload(); } - int argumentCount() const { return argumentCountIncludingThis() - 1; } - void setArgumentCountIncludingThis(int count) { argCountAndCodeOriginValue.payload() = count; } -- void setPaddedArgsCount(size_t argCount) { paddedArgCount = argCount; } -+ void setPaddedArgsCount(uint32_t argCount) { paddedArgCount = argCount; } - - void clearCurrentVPC() { argCountAndCodeOriginValue.tag() = 0; } - -Index: webkitgtk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp -+++ webkitgtk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp -@@ -1354,7 +1354,7 @@ LLINT_SLOW_PATH_DECL(slow_path_get_from_ - CodeBlock* codeBlock = exec->codeBlock(); - ConcurrentJITLocker locker(codeBlock->m_lock); - pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), scope->structure()); -- pc[6].u.operand = slot.cachedOffset(); -+ pc[6].u.pointer = reinterpret_cast(slot.cachedOffset()); - } - } - -@@ -1381,7 +1381,7 @@ LLINT_SLOW_PATH_DECL(slow_path_put_to_sc - if (slot.isCacheable() && slot.base() == scope && scope->structure()->propertyAccessesAreCacheable()) { - ConcurrentJITLocker locker(codeBlock->m_lock); - pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), scope->structure()); -- pc[6].u.operand = slot.cachedOffset(); -+ pc[6].u.pointer = reinterpret_cast(slot.cachedOffset()); - } - } - -Index: webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -+++ webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm -@@ -282,7 +282,7 @@ macro doCallToJavaScript(makeCall, doRet - storep temp3, CodeBlock+4[cfr, temp1, 8] - btinz temp1, .copyHeaderLoop - -- loadi ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 -+ loadi PayloadOffset + ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 - subi 1, temp2 - loadi ProtoCallFrame::paddedArgCount[protoCallFrame], temp3 - subi 1, temp3 -@@ -321,7 +321,7 @@ macro doCallToJavaScript(makeCall, doRet - - .calleeFramePopped: - loadp Callee[cfr], temp3 # VM.topCallFrame -- loadp ScopeChain[cfr], temp4 -+ loadp ScopeChain + PayloadOffset[cfr], temp4 - storep temp4, [temp3] - - doReturn(extraStackSpace) -@@ -598,7 +598,7 @@ end - - - macro branchIfException(label) -- loadp ScopeChain[cfr], t3 -+ loadp ScopeChain + PayloadOffset[cfr], t3 - andp MarkedBlockMask, t3 - loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 - bieq VM::m_exception + TagOffset[t3], EmptyValueTag, .noException -@@ -2039,7 +2039,7 @@ _llint_op_catch: - # the interpreter's throw trampoline (see _llint_throw_trampoline). - # The throwing code must have known that we were throwing to the interpreter, - # and have set VM::targetInterpreterPCForThrow. -- loadp ScopeChain[cfr], t3 -+ loadp ScopeChain + PayloadOffset[cfr], t3 - andp MarkedBlockMask, t3 - loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 - loadp VM::callFrameForThrow[t3], cfr -@@ -2159,7 +2159,7 @@ macro nativeCallTrampoline(executableOff - andp MarkedBlockMask, t3 - loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 - elsif C_LOOP -- loadp ScopeChain[cfr], t3 -+ loadp ScopeChain + PayloadOffset[cfr], t3 - andp MarkedBlockMask, t3 - loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 - storep cfr, VM::topCallFrame[t3] -@@ -2172,7 +2172,7 @@ macro nativeCallTrampoline(executableOff - move t2, cfr - cloopCallNative executableOffsetToFunction[t1] - restoreReturnAddressBeforeReturn(t3) -- loadp ScopeChain[cfr], t3 -+ loadp ScopeChain + PayloadOffset[cfr], t3 - andp MarkedBlockMask, t3 - loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 - else -@@ -2212,7 +2212,7 @@ macro resolveScope() - addi 1, t2 - - .resolveScopeAfterActivationCheck: -- loadp ScopeChain[cfr], t0 -+ loadp ScopeChain + PayloadOffset[cfr], t0 - btiz t2, .resolveScopeLoopEnd - - .resolveScopeLoop: -@@ -2271,13 +2271,13 @@ _llint_op_resolve_scope: - - macro loadWithStructureCheck(operand, slowPath) - loadisFromInstruction(operand, t0) -- loadp [cfr, t0, 8], t0 -+ loadp PayloadOffset[cfr, t0, 8], t0 - loadpFromInstruction(5, t1) - bpneq JSCell::m_structure[t0], t1, slowPath - end - - macro getProperty() -- loadisFromInstruction(6, t3) -+ loadpFromInstruction(6, t3) - loadPropertyAtVariableOffset(t3, t0, t1, t2) - valueProfile(t1, t2, 28, t0) - loadisFromInstruction(1, t0) -@@ -2297,7 +2297,7 @@ end - - macro getClosureVar() - loadp JSVariableObject::m_registers[t0], t0 -- loadisFromInstruction(6, t3) -+ loadpFromInstruction(6, t3) - loadp TagOffset[t0, t3, 8], t1 - loadp PayloadOffset[t0, t3, 8], t2 - valueProfile(t1, t2, 28, t0) -@@ -2356,7 +2356,7 @@ _llint_op_get_from_scope: - macro putProperty() - loadisFromInstruction(3, t1) - loadConstantOrVariable(t1, t2, t3) -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - storePropertyAtVariableOffset(t1, t0, t2, t3) - end - -@@ -2374,7 +2374,7 @@ macro putClosureVar() - loadisFromInstruction(3, t1) - loadConstantOrVariable(t1, t2, t3) - loadp JSVariableObject::m_registers[t0], t0 -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - storei t2, TagOffset[t0, t1, 8] - storei t3, PayloadOffset[t0, t1, 8] - end -Index: webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm -+++ webkitgtk/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm -@@ -171,7 +171,7 @@ macro doCallToJavaScript(makeCall, doRet - storep temp3, CodeBlock[cfr, temp1, 8] - btinz temp1, .copyHeaderLoop - -- loadi ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 -+ loadi PayloadOffset + ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 - subi 1, temp2 - loadi ProtoCallFrame::paddedArgCount[protoCallFrame], temp3 - subi 1, temp3 -@@ -2047,7 +2047,7 @@ macro loadWithStructureCheck(operand, sl - end - - macro getProperty() -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - loadPropertyAtVariableOffset(t1, t0, t2) - valueProfile(t2, 7, t0) - loadisFromInstruction(1, t0) -@@ -2064,7 +2064,7 @@ end - - macro getClosureVar() - loadp JSVariableObject::m_registers[t0], t0 -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - loadq [t0, t1, 8], t0 - valueProfile(t0, 7, t1) - loadisFromInstruction(1, t1) -@@ -2121,7 +2121,7 @@ _llint_op_get_from_scope: - macro putProperty() - loadisFromInstruction(3, t1) - loadConstantOrVariable(t1, t2) -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - storePropertyAtVariableOffset(t1, t0, t2) - end - -@@ -2138,7 +2138,7 @@ macro putClosureVar() - loadisFromInstruction(3, t1) - loadConstantOrVariable(t1, t2) - loadp JSVariableObject::m_registers[t0], t0 -- loadisFromInstruction(6, t1) -+ loadpFromInstruction(6, t1) - storeq t2, [t0, t1, 8] - end - diff -Nru webkitgtk-2.4.9/debian/patches/fix-gtkdoc-error.patch webkitgtk-2.4.10/debian/patches/fix-gtkdoc-error.patch --- webkitgtk-2.4.9/debian/patches/fix-gtkdoc-error.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/fix-gtkdoc-error.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -From: Alberto Garcia -Subject: Fix gtk-doc generation error -Bug: https://bugs.webkit.org/show_bug.cgi?id=128927 -Index: webkitgtk/Tools/gtk/gtkdoc.py -=================================================================== ---- webkitgtk.orig/Tools/gtk/gtkdoc.py -+++ webkitgtk/Tools/gtk/gtkdoc.py -@@ -195,9 +195,9 @@ class GTKDoc(object): - - if print_output: - if stdout: -- sys.stdout.write(stdout) -+ sys.stdout.write(stdout.encode("utf-8")) - if stderr: -- sys.stderr.write(stderr) -+ sys.stderr.write(stderr.encode("utf-8")) - - if process.returncode != 0: - raise Exception('%s produced a non-zero return code %i' diff -Nru webkitgtk-2.4.9/debian/patches/ppc64-align.patch webkitgtk-2.4.10/debian/patches/ppc64-align.patch --- webkitgtk-2.4.9/debian/patches/ppc64-align.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/ppc64-align.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -From: Michel Normand -Subject: Fix crash in ppc64el -Bug: https://bugs.webkit.org/show_bug.cgi?id=130237 -Bug-Debian: https://bugs.debian.org/762670 -Origin: http://pkgs.fedoraproject.org/cgit/webkitgtk3.git/tree/webkitgtk-2.4.1-ppc64_align.patch -Index: webkitgtk/Source/JavaScriptCore/heap/CopiedBlock.h -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/heap/CopiedBlock.h -+++ webkitgtk/Source/JavaScriptCore/heap/CopiedBlock.h -@@ -81,7 +81,11 @@ public: - size_t size(); - size_t capacity(); - -+#if CPU(PPC64) -+ static const size_t blockSize = 64 * KB; -+#else - static const size_t blockSize = 32 * KB; -+#endif - - bool hasWorkList(); - CopyWorkList& workList(); -Index: webkitgtk/Source/JavaScriptCore/interpreter/JSStack.cpp -=================================================================== ---- webkitgtk.orig/Source/JavaScriptCore/interpreter/JSStack.cpp -+++ webkitgtk/Source/JavaScriptCore/interpreter/JSStack.cpp -@@ -49,7 +49,11 @@ JSStack::JSStack(VM& vm, size_t capacity - { - ASSERT(capacity && isPageAligned(capacity)); - -+#if CPU(PPC64) -+ m_reservation = PageReservation::reserve(roundUpAllocationSize(capacity * sizeof(Register), pageSize()), OSAllocator::JSVMStackPages); -+#else - m_reservation = PageReservation::reserve(roundUpAllocationSize(capacity * sizeof(Register), commitSize), OSAllocator::JSVMStackPages); -+#endif - updateStackLimit(highAddress()); - m_commitEnd = highAddress(); - -@@ -78,7 +82,11 @@ bool JSStack::growSlowCase(Register* new - // Compute the chunk size of additional memory to commit, and see if we - // have it is still within our budget. If not, we'll fail to grow and - // return false. -+#if CPU(PPC64) -+ long delta = roundUpAllocationSize(reinterpret_cast(m_commitEnd) - reinterpret_cast(newEnd), pageSize()); -+#else - long delta = roundUpAllocationSize(reinterpret_cast(m_commitEnd) - reinterpret_cast(newEnd), commitSize); -+#endif - if (reinterpret_cast(m_commitEnd) - delta <= reinterpret_cast(m_useableEnd)) - return false; - -@@ -134,7 +142,11 @@ void JSStack::enableErrorStackReserve() - - void JSStack::disableErrorStackReserve() - { -+#if CPU(PPC64) -+ char* useableEnd = reinterpret_cast(reservationEnd()) + pageSize(); -+#else - char* useableEnd = reinterpret_cast(reservationEnd()) + commitSize; -+#endif - m_useableEnd = reinterpret_cast_ptr(useableEnd); - - // By the time we get here, we are guaranteed to be destructing the last diff -Nru webkitgtk-2.4.9/debian/patches/series webkitgtk-2.4.10/debian/patches/series --- webkitgtk-2.4.9/debian/patches/series 2015-08-12 17:15:16.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/series 2016-03-15 15:38:02.000000000 +0000 @@ -1,12 +1,7 @@ -fix-gtkdoc-error.patch install-minibrowser.patch -atomic_build_fix.patch restore_sparc_code.patch 02_notebook_scroll.patch ftbfs-armhf.patch x32_support.patch fix-arm64-build.patch -ppc64-align.patch -fix-cloop.patch -use-abi64-for-mips64el.patch bugzilla_clear_surface.patch diff -Nru webkitgtk-2.4.9/debian/patches/use-abi64-for-mips64el.patch webkitgtk-2.4.10/debian/patches/use-abi64-for-mips64el.patch --- webkitgtk-2.4.9/debian/patches/use-abi64-for-mips64el.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/use-abi64-for-mips64el.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -From: YunQiang Su <​wzssyqa@gmail.com> -Subject: Use _ABI64 instead of _MIPS_SIM_ABI64 for mips64el -Bug: https://bugs.webkit.org/show_bug.cgi?id=145113 -Bug-Debian: https://bugs.debian.org/789261 -Origin: https://trac.webkit.org/changeset/185863 -Index: webkitgtk/Source/WTF/wtf/Platform.h -=================================================================== ---- webkitgtk.orig/Source/WTF/wtf/Platform.h -+++ webkitgtk/Source/WTF/wtf/Platform.h -@@ -82,7 +82,7 @@ - - /* CPU(MIPS) - MIPS 32-bit and 64-bit */ - #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_) || defined(__mips64)) --#if defined(_MIPS_SIM_ABI64) && (_MIPS_SIM == _MIPS_SIM_ABI64) -+#if defined(_ABI64) && (_MIPS_SIM == _ABI64) - #define WTF_CPU_MIPS64 1 - #define WTF_MIPS_ARCH __mips64 - #else diff -Nru webkitgtk-2.4.9/debian/patches/x32_support.patch webkitgtk-2.4.10/debian/patches/x32_support.patch --- webkitgtk-2.4.9/debian/patches/x32_support.patch 2015-06-24 14:14:55.000000000 +0000 +++ webkitgtk-2.4.10/debian/patches/x32_support.patch 2016-03-15 15:34:42.000000000 +0000 @@ -1,10 +1,10 @@ From: Daniel Schepler Subject: Fix FTBFS in x32 Bug-Debian: https://bugs.debian.org/700795 -Index: webkitgtk/Source/WTF/wtf/Platform.h +Index: webkitgtk-2.4.10/Source/WTF/wtf/Platform.h =================================================================== ---- webkitgtk.orig/Source/WTF/wtf/Platform.h -+++ webkitgtk/Source/WTF/wtf/Platform.h +--- webkitgtk-2.4.10.orig/Source/WTF/wtf/Platform.h 2016-03-15 11:34:38.873482939 -0400 ++++ webkitgtk-2.4.10/Source/WTF/wtf/Platform.h 2016-03-15 11:34:38.869482891 -0400 @@ -182,8 +182,12 @@ /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */ #if defined(__x86_64__) \ @@ -17,4 +17,4 @@ +#endif /* CPU(ARM64) - Apple */ - #if defined(__arm64__) && defined(__APPLE__) + #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__) diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/annotation-glossary.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/annotation-glossary.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/annotation-glossary.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/annotation-glossary.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,12 +2,12 @@ -WebKit2GTK+ Reference Manual: Annotation Glossary - +Annotation Glossary: WebKit2GTK+ Reference Manual + - + @@ -57,7 +57,6 @@

Don't free data after the code is done.

+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/api-index-2-2.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/api-index-2-2.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/api-index-2-2.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/api-index-2-2.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: Index of new symbols in 2.2 - +Index of new symbols in 2.2: WebKit2GTK+ Reference Manual + - + @@ -192,7 +192,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/api-index-2-4.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/api-index-2-4.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/api-index-2-4.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/api-index-2-4.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: Index of new symbols in 2.4 - +Index of new symbols in 2.4: WebKit2GTK+ Reference Manual + - + @@ -121,7 +121,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/ch01.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/ch01.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/ch01.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/ch01.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: Class Overview - +Class Overview: WebKit2GTK+ Reference Manual + - + @@ -24,7 +24,7 @@ Class Overview
-WebKitWebContextManages aspects common to all WebKitWebViews +WebKitWebContext — Manages aspects common to all WebKitWebViews
WebKitWebView — The central class of the WebKit2GTK+ API @@ -36,10 +36,10 @@ WebKitBackForwardList — List of visited pages
-WebKitBackForwardListItemOne item of the WebKitBackForwardList +WebKitBackForwardListItem — One item of the WebKitBackForwardList
-WebKitSettingsControl the behaviour of WebKitWebViews +WebKitSettings — Control the behaviour of WebKitWebViews
WebKitURIRequest — Represents a URI request @@ -48,7 +48,7 @@ WebKitURIResponse — Represents a URI response
-WebKitWindowPropertiesWindow properties of a WebKitWebView +WebKitWindowProperties — Window properties of a WebKitWebView
WebKitDownload — Object used to communicate with the application when downloading @@ -87,10 +87,10 @@ WebKitFileChooserRequest — A request to open a file chooser
-WebKitFindControllerControls text search in a WebKitWebView +WebKitFindController — Controls text search in a WebKitWebView
-WebKitCookieManagerDefines how to handle cookies in a WebKitWebContext +WebKitCookieManager — Defines how to handle cookies in a WebKitWebContext
WebKitPlugin — Represents a plugin, enabling fine-grained control @@ -105,16 +105,16 @@ WebKitVersion
-WebKitContextMenuRepresents the context menu in a WebKitWebView +WebKitContextMenu — Represents the context menu in a WebKitWebView
-WebKitContextMenuItemOne item of the WebKitContextMenu +WebKitContextMenuItem — One item of the WebKitContextMenu
WebKitFormSubmissionRequest — Represents a form submission request
-WebKitSecurityManagerControls security settings in a WebKitWebContext +WebKitSecurityManager — Controls security settings in a WebKitWebContext
WebKitWebViewGroup — Group of web views @@ -125,7 +125,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/ch02.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/ch02.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/ch02.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/ch02.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: Web Extensions - +Web Extensions: WebKit2GTK+ Reference Manual + - + @@ -38,7 +38,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/index-all.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/index-all.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/index-all.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/index-all.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: Index - +Index: WebKit2GTK+ Reference Manual + - + @@ -22,1393 +22,1392 @@

Index

-
+

A

-
WebKitAuthenticationRequest, struct WebKitAuthenticationRequest +
WebKitAuthenticationRequest, struct WebKitAuthenticationRequest
-
WebKitAuthenticationRequest::cancelled, The “cancelled” signal +
WebKitAuthenticationRequest::cancelled, The “cancelled” signal
-
WebKitAuthenticationScheme, enum WebKitAuthenticationScheme +
WebKitAuthenticationScheme, enum WebKitAuthenticationScheme
-
webkit_authentication_request_authenticate, webkit_authentication_request_authenticate () +
webkit_authentication_request_authenticate, webkit_authentication_request_authenticate ()
-
webkit_authentication_request_cancel, webkit_authentication_request_cancel () +
webkit_authentication_request_cancel, webkit_authentication_request_cancel ()
-
webkit_authentication_request_can_save_credentials, webkit_authentication_request_can_save_credentials () +
webkit_authentication_request_can_save_credentials, webkit_authentication_request_can_save_credentials ()
-
webkit_authentication_request_get_host, webkit_authentication_request_get_host () +
webkit_authentication_request_get_host, webkit_authentication_request_get_host ()
-
webkit_authentication_request_get_port, webkit_authentication_request_get_port () +
webkit_authentication_request_get_port, webkit_authentication_request_get_port ()
-
webkit_authentication_request_get_proposed_credential, webkit_authentication_request_get_proposed_credential () +
webkit_authentication_request_get_proposed_credential, webkit_authentication_request_get_proposed_credential ()
-
webkit_authentication_request_get_realm, webkit_authentication_request_get_realm () +
webkit_authentication_request_get_realm, webkit_authentication_request_get_realm ()
-
webkit_authentication_request_get_scheme, webkit_authentication_request_get_scheme () +
webkit_authentication_request_get_scheme, webkit_authentication_request_get_scheme ()
-
webkit_authentication_request_is_for_proxy, webkit_authentication_request_is_for_proxy () +
webkit_authentication_request_is_for_proxy, webkit_authentication_request_is_for_proxy ()
-
webkit_authentication_request_is_retry, webkit_authentication_request_is_retry () +
webkit_authentication_request_is_retry, webkit_authentication_request_is_retry ()

B

-
WebKitBackForwardList, struct WebKitBackForwardList +
WebKitBackForwardList, struct WebKitBackForwardList
-
WebKitBackForwardList::changed, The “changed” signal +
WebKitBackForwardList::changed, The “changed” signal
-
WebKitBackForwardListItem, struct WebKitBackForwardListItem +
WebKitBackForwardListItem, struct WebKitBackForwardListItem
-
webkit_back_forward_list_get_back_item, webkit_back_forward_list_get_back_item () +
webkit_back_forward_list_get_back_item, webkit_back_forward_list_get_back_item ()
-
webkit_back_forward_list_get_back_list, webkit_back_forward_list_get_back_list () +
webkit_back_forward_list_get_back_list, webkit_back_forward_list_get_back_list ()
-
webkit_back_forward_list_get_back_list_with_limit, webkit_back_forward_list_get_back_list_with_limit () +
webkit_back_forward_list_get_back_list_with_limit, webkit_back_forward_list_get_back_list_with_limit ()
-
webkit_back_forward_list_get_current_item, webkit_back_forward_list_get_current_item () +
webkit_back_forward_list_get_current_item, webkit_back_forward_list_get_current_item ()
-
webkit_back_forward_list_get_forward_item, webkit_back_forward_list_get_forward_item () +
webkit_back_forward_list_get_forward_item, webkit_back_forward_list_get_forward_item ()
-
webkit_back_forward_list_get_forward_list, webkit_back_forward_list_get_forward_list () +
webkit_back_forward_list_get_forward_list, webkit_back_forward_list_get_forward_list ()
-
webkit_back_forward_list_get_forward_list_with_limit, webkit_back_forward_list_get_forward_list_with_limit () +
webkit_back_forward_list_get_forward_list_with_limit, webkit_back_forward_list_get_forward_list_with_limit ()
-
webkit_back_forward_list_get_length, webkit_back_forward_list_get_length () +
webkit_back_forward_list_get_length, webkit_back_forward_list_get_length ()
-
webkit_back_forward_list_get_nth_item, webkit_back_forward_list_get_nth_item () +
webkit_back_forward_list_get_nth_item, webkit_back_forward_list_get_nth_item ()
-
webkit_back_forward_list_item_get_original_uri, webkit_back_forward_list_item_get_original_uri () +
webkit_back_forward_list_item_get_original_uri, webkit_back_forward_list_item_get_original_uri ()
-
webkit_back_forward_list_item_get_title, webkit_back_forward_list_item_get_title () +
webkit_back_forward_list_item_get_title, webkit_back_forward_list_item_get_title ()
-
webkit_back_forward_list_item_get_uri, webkit_back_forward_list_item_get_uri () +
webkit_back_forward_list_item_get_uri, webkit_back_forward_list_item_get_uri ()

C

-
WebKitCacheModel, enum WebKitCacheModel +
WebKitCacheModel, enum WebKitCacheModel
-
WebKitCertificateInfo, WebKitCertificateInfo +
WebKitCertificateInfo, WebKitCertificateInfo
-
webkit_certificate_info_copy, webkit_certificate_info_copy () +
webkit_certificate_info_copy, webkit_certificate_info_copy ()
-
webkit_certificate_info_free, webkit_certificate_info_free () +
webkit_certificate_info_free, webkit_certificate_info_free ()
-
webkit_certificate_info_get_tls_certificate, webkit_certificate_info_get_tls_certificate () +
webkit_certificate_info_get_tls_certificate, webkit_certificate_info_get_tls_certificate ()
-
webkit_certificate_info_get_tls_errors, webkit_certificate_info_get_tls_errors () +
webkit_certificate_info_get_tls_errors, webkit_certificate_info_get_tls_errors ()
-
WEBKIT_CHECK_VERSION, WEBKIT_CHECK_VERSION() +
WEBKIT_CHECK_VERSION, WEBKIT_CHECK_VERSION()
-
WebKitContextMenu, WebKitContextMenu +
WebKitContextMenu, WebKitContextMenu
-
WebKitContextMenuAction, enum WebKitContextMenuAction +
WebKitContextMenuAction, enum WebKitContextMenuAction
-
WebKitContextMenuItem, WebKitContextMenuItem +
WebKitContextMenuItem, WebKitContextMenuItem
-
webkit_context_menu_append, webkit_context_menu_append () +
webkit_context_menu_append, webkit_context_menu_append ()
-
webkit_context_menu_first, webkit_context_menu_first () +
webkit_context_menu_first, webkit_context_menu_first ()
-
webkit_context_menu_get_items, webkit_context_menu_get_items () +
webkit_context_menu_get_items, webkit_context_menu_get_items ()
-
webkit_context_menu_get_item_at_position, webkit_context_menu_get_item_at_position () +
webkit_context_menu_get_item_at_position, webkit_context_menu_get_item_at_position ()
-
webkit_context_menu_get_n_items, webkit_context_menu_get_n_items () +
webkit_context_menu_get_n_items, webkit_context_menu_get_n_items ()
-
webkit_context_menu_insert, webkit_context_menu_insert () +
webkit_context_menu_insert, webkit_context_menu_insert ()
-
webkit_context_menu_item_get_action, webkit_context_menu_item_get_action () +
webkit_context_menu_item_get_action, webkit_context_menu_item_get_action ()
-
webkit_context_menu_item_get_stock_action, webkit_context_menu_item_get_stock_action () +
webkit_context_menu_item_get_stock_action, webkit_context_menu_item_get_stock_action ()
-
webkit_context_menu_item_get_submenu, webkit_context_menu_item_get_submenu () +
webkit_context_menu_item_get_submenu, webkit_context_menu_item_get_submenu ()
-
webkit_context_menu_item_is_separator, webkit_context_menu_item_is_separator () +
webkit_context_menu_item_is_separator, webkit_context_menu_item_is_separator ()
-
webkit_context_menu_item_new, webkit_context_menu_item_new () +
webkit_context_menu_item_new, webkit_context_menu_item_new ()
-
webkit_context_menu_item_new_from_stock_action, webkit_context_menu_item_new_from_stock_action () +
webkit_context_menu_item_new_from_stock_action, webkit_context_menu_item_new_from_stock_action ()
-
webkit_context_menu_item_new_from_stock_action_with_label, webkit_context_menu_item_new_from_stock_action_with_label () +
webkit_context_menu_item_new_from_stock_action_with_label, webkit_context_menu_item_new_from_stock_action_with_label ()
-
webkit_context_menu_item_new_separator, webkit_context_menu_item_new_separator () +
webkit_context_menu_item_new_separator, webkit_context_menu_item_new_separator ()
-
webkit_context_menu_item_new_with_submenu, webkit_context_menu_item_new_with_submenu () +
webkit_context_menu_item_new_with_submenu, webkit_context_menu_item_new_with_submenu ()
-
webkit_context_menu_item_set_submenu, webkit_context_menu_item_set_submenu () +
webkit_context_menu_item_set_submenu, webkit_context_menu_item_set_submenu ()
-
webkit_context_menu_last, webkit_context_menu_last () +
webkit_context_menu_last, webkit_context_menu_last ()
-
webkit_context_menu_move_item, webkit_context_menu_move_item () +
webkit_context_menu_move_item, webkit_context_menu_move_item ()
-
webkit_context_menu_new, webkit_context_menu_new () +
webkit_context_menu_new, webkit_context_menu_new ()
-
webkit_context_menu_new_with_items, webkit_context_menu_new_with_items () +
webkit_context_menu_new_with_items, webkit_context_menu_new_with_items ()
-
webkit_context_menu_prepend, webkit_context_menu_prepend () +
webkit_context_menu_prepend, webkit_context_menu_prepend ()
-
webkit_context_menu_remove, webkit_context_menu_remove () +
webkit_context_menu_remove, webkit_context_menu_remove ()
-
webkit_context_menu_remove_all, webkit_context_menu_remove_all () +
webkit_context_menu_remove_all, webkit_context_menu_remove_all ()
-
WebKitCookieAcceptPolicy, enum WebKitCookieAcceptPolicy +
WebKitCookieAcceptPolicy, enum WebKitCookieAcceptPolicy
-
WebKitCookieManager, struct WebKitCookieManager +
WebKitCookieManager, struct WebKitCookieManager
-
WebKitCookieManager::changed, The “changed” signal +
WebKitCookieManager::changed, The “changed” signal
-
WebKitCookiePersistentStorage, enum WebKitCookiePersistentStorage +
WebKitCookiePersistentStorage, enum WebKitCookiePersistentStorage
-
webkit_cookie_manager_delete_all_cookies, webkit_cookie_manager_delete_all_cookies () +
webkit_cookie_manager_delete_all_cookies, webkit_cookie_manager_delete_all_cookies ()
-
webkit_cookie_manager_delete_cookies_for_domain, webkit_cookie_manager_delete_cookies_for_domain () +
webkit_cookie_manager_delete_cookies_for_domain, webkit_cookie_manager_delete_cookies_for_domain ()
-
webkit_cookie_manager_get_accept_policy, webkit_cookie_manager_get_accept_policy () +
webkit_cookie_manager_get_accept_policy, webkit_cookie_manager_get_accept_policy ()
-
webkit_cookie_manager_get_accept_policy_finish, webkit_cookie_manager_get_accept_policy_finish () +
webkit_cookie_manager_get_accept_policy_finish, webkit_cookie_manager_get_accept_policy_finish ()
-
webkit_cookie_manager_get_domains_with_cookies, webkit_cookie_manager_get_domains_with_cookies () +
webkit_cookie_manager_get_domains_with_cookies, webkit_cookie_manager_get_domains_with_cookies ()
-
webkit_cookie_manager_get_domains_with_cookies_finish, webkit_cookie_manager_get_domains_with_cookies_finish () +
webkit_cookie_manager_get_domains_with_cookies_finish, webkit_cookie_manager_get_domains_with_cookies_finish ()
-
webkit_cookie_manager_set_accept_policy, webkit_cookie_manager_set_accept_policy () +
webkit_cookie_manager_set_accept_policy, webkit_cookie_manager_set_accept_policy ()
-
webkit_cookie_manager_set_persistent_storage, webkit_cookie_manager_set_persistent_storage () +
webkit_cookie_manager_set_persistent_storage, webkit_cookie_manager_set_persistent_storage ()
-
WebKitCredential, WebKitCredential +
WebKitCredential, WebKitCredential
-
WebKitCredentialPersistence, enum WebKitCredentialPersistence +
WebKitCredentialPersistence, enum WebKitCredentialPersistence
-
webkit_credential_copy, webkit_credential_copy () +
webkit_credential_copy, webkit_credential_copy ()
-
webkit_credential_free, webkit_credential_free () +
webkit_credential_free, webkit_credential_free ()
-
webkit_credential_get_password, webkit_credential_get_password () +
webkit_credential_get_password, webkit_credential_get_password ()
-
webkit_credential_get_persistence, webkit_credential_get_persistence () +
webkit_credential_get_persistence, webkit_credential_get_persistence ()
-
webkit_credential_get_username, webkit_credential_get_username () +
webkit_credential_get_username, webkit_credential_get_username ()
-
webkit_credential_has_password, webkit_credential_has_password () +
webkit_credential_has_password, webkit_credential_has_password ()
-
webkit_credential_new, webkit_credential_new () +
webkit_credential_new, webkit_credential_new ()

D

-
WebKitDownload, struct WebKitDownload +
WebKitDownload, struct WebKitDownload
-
WebKitDownload::created-destination, The “created-destination” signal +
WebKitDownload::created-destination, The “created-destination” signal
-
WebKitDownload::decide-destination, The “decide-destination” signal +
WebKitDownload::decide-destination, The “decide-destination” signal
-
WebKitDownload::failed, The “failed” signal +
WebKitDownload::failed, The “failed” signal
-
WebKitDownload::finished, The “finished” signal +
WebKitDownload::finished, The “finished” signal
-
WebKitDownload::received-data, The “received-data” signal +
WebKitDownload::received-data, The “received-data” signal
-
WebKitDownload:destination, The “destination” property +
WebKitDownload:destination, The “destination” property
-
WebKitDownload:estimated-progress, The “estimated-progress” property +
WebKitDownload:estimated-progress, The “estimated-progress” property
-
WebKitDownload:response, The “response” property +
WebKitDownload:response, The “response” property
-
WebKitDownloadError, enum WebKitDownloadError +
WebKitDownloadError, enum WebKitDownloadError
-
webkit_download_cancel, webkit_download_cancel () +
webkit_download_cancel, webkit_download_cancel ()
-
WEBKIT_DOWNLOAD_ERROR, WEBKIT_DOWNLOAD_ERROR +
WEBKIT_DOWNLOAD_ERROR, WEBKIT_DOWNLOAD_ERROR
-
webkit_download_error_quark, webkit_download_error_quark () +
webkit_download_error_quark, webkit_download_error_quark ()
-
webkit_download_get_destination, webkit_download_get_destination () +
webkit_download_get_destination, webkit_download_get_destination ()
-
webkit_download_get_elapsed_time, webkit_download_get_elapsed_time () +
webkit_download_get_elapsed_time, webkit_download_get_elapsed_time ()
-
webkit_download_get_estimated_progress, webkit_download_get_estimated_progress () +
webkit_download_get_estimated_progress, webkit_download_get_estimated_progress ()
-
webkit_download_get_received_data_length, webkit_download_get_received_data_length () +
webkit_download_get_received_data_length, webkit_download_get_received_data_length ()
-
webkit_download_get_request, webkit_download_get_request () +
webkit_download_get_request, webkit_download_get_request ()
-
webkit_download_get_response, webkit_download_get_response () +
webkit_download_get_response, webkit_download_get_response ()
-
webkit_download_get_web_view, webkit_download_get_web_view () +
webkit_download_get_web_view, webkit_download_get_web_view ()
-
webkit_download_set_destination, webkit_download_set_destination () +
webkit_download_set_destination, webkit_download_set_destination ()

E

-
WEBKIT_EDITING_COMMAND_COPY, WEBKIT_EDITING_COMMAND_COPY +
WEBKIT_EDITING_COMMAND_COPY, WEBKIT_EDITING_COMMAND_COPY
-
WEBKIT_EDITING_COMMAND_CUT, WEBKIT_EDITING_COMMAND_CUT +
WEBKIT_EDITING_COMMAND_CUT, WEBKIT_EDITING_COMMAND_CUT
-
WEBKIT_EDITING_COMMAND_PASTE, WEBKIT_EDITING_COMMAND_PASTE +
WEBKIT_EDITING_COMMAND_PASTE, WEBKIT_EDITING_COMMAND_PASTE
-
WEBKIT_EDITING_COMMAND_REDO, WEBKIT_EDITING_COMMAND_REDO +
WEBKIT_EDITING_COMMAND_REDO, WEBKIT_EDITING_COMMAND_REDO
-
WEBKIT_EDITING_COMMAND_SELECT_ALL, WEBKIT_EDITING_COMMAND_SELECT_ALL +
WEBKIT_EDITING_COMMAND_SELECT_ALL, WEBKIT_EDITING_COMMAND_SELECT_ALL
-
WEBKIT_EDITING_COMMAND_UNDO, WEBKIT_EDITING_COMMAND_UNDO +
WEBKIT_EDITING_COMMAND_UNDO, WEBKIT_EDITING_COMMAND_UNDO

F

-
WebKitFaviconDatabase, struct WebKitFaviconDatabase +
WebKitFaviconDatabase, struct WebKitFaviconDatabase
-
WebKitFaviconDatabase::favicon-changed, The “favicon-changed” signal +
WebKitFaviconDatabase::favicon-changed, The “favicon-changed” signal
-
WebKitFaviconDatabaseError, enum WebKitFaviconDatabaseError +
WebKitFaviconDatabaseError, enum WebKitFaviconDatabaseError
-
webkit_favicon_database_clear, webkit_favicon_database_clear () +
webkit_favicon_database_clear, webkit_favicon_database_clear ()
-
WEBKIT_FAVICON_DATABASE_ERROR, WEBKIT_FAVICON_DATABASE_ERROR +
WEBKIT_FAVICON_DATABASE_ERROR, WEBKIT_FAVICON_DATABASE_ERROR
-
webkit_favicon_database_get_favicon, webkit_favicon_database_get_favicon () +
webkit_favicon_database_get_favicon, webkit_favicon_database_get_favicon ()
-
webkit_favicon_database_get_favicon_finish, webkit_favicon_database_get_favicon_finish () +
webkit_favicon_database_get_favicon_finish, webkit_favicon_database_get_favicon_finish ()
-
webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri () +
webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri ()
-
WebKitFileChooserRequest, struct WebKitFileChooserRequest +
WebKitFileChooserRequest, struct WebKitFileChooserRequest
-
WebKitFileChooserRequest:filter, The “filter” property +
WebKitFileChooserRequest:filter, The “filter” property
-
WebKitFileChooserRequest:mime-types, The “mime-types” property +
WebKitFileChooserRequest:mime-types, The “mime-types” property
-
WebKitFileChooserRequest:select-multiple, The “select-multiple” property +
WebKitFileChooserRequest:select-multiple, The “select-multiple” property
-
WebKitFileChooserRequest:selected-files, The “selected-files” property +
WebKitFileChooserRequest:selected-files, The “selected-files” property
-
webkit_file_chooser_request_cancel, webkit_file_chooser_request_cancel () +
webkit_file_chooser_request_cancel, webkit_file_chooser_request_cancel ()
-
webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types () +
webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types ()
-
webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter () +
webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter ()
-
webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files () +
webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files ()
-
webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple () +
webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple ()
-
webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files () +
webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files ()
-
WebKitFindController, WebKitFindController +
WebKitFindController, WebKitFindController
-
WebKitFindController::counted-matches, The “counted-matches” signal +
WebKitFindController::counted-matches, The “counted-matches” signal
-
WebKitFindController::failed-to-find-text, The “failed-to-find-text” signal +
WebKitFindController::failed-to-find-text, The “failed-to-find-text” signal
-
WebKitFindController::found-text, The “found-text” signal +
WebKitFindController::found-text, The “found-text” signal
-
WebKitFindController:max-match-count, The “max-match-count” property +
WebKitFindController:max-match-count, The “max-match-count” property
-
WebKitFindController:options, The “options” property +
WebKitFindController:options, The “options” property
-
WebKitFindController:text, The “text” property +
WebKitFindController:text, The “text” property
-
WebKitFindController:web-view, The “web-view” property +
WebKitFindController:web-view, The “web-view” property
-
WebKitFindOptions, enum WebKitFindOptions +
WebKitFindOptions, enum WebKitFindOptions
-
webkit_find_controller_count_matches, webkit_find_controller_count_matches () +
webkit_find_controller_count_matches, webkit_find_controller_count_matches ()
-
webkit_find_controller_get_max_match_count, webkit_find_controller_get_max_match_count () +
webkit_find_controller_get_max_match_count, webkit_find_controller_get_max_match_count ()
-
webkit_find_controller_get_options, webkit_find_controller_get_options () +
webkit_find_controller_get_options, webkit_find_controller_get_options ()
-
webkit_find_controller_get_search_text, webkit_find_controller_get_search_text () +
webkit_find_controller_get_search_text, webkit_find_controller_get_search_text ()
-
webkit_find_controller_get_web_view, webkit_find_controller_get_web_view () +
webkit_find_controller_get_web_view, webkit_find_controller_get_web_view ()
-
webkit_find_controller_search, webkit_find_controller_search () +
webkit_find_controller_search, webkit_find_controller_search ()
-
webkit_find_controller_search_finish, webkit_find_controller_search_finish () +
webkit_find_controller_search_finish, webkit_find_controller_search_finish ()
-
webkit_find_controller_search_next, webkit_find_controller_search_next () +
webkit_find_controller_search_next, webkit_find_controller_search_next ()
-
webkit_find_controller_search_previous, webkit_find_controller_search_previous () +
webkit_find_controller_search_previous, webkit_find_controller_search_previous ()
-
WebKitFormSubmissionRequest, struct WebKitFormSubmissionRequest +
WebKitFormSubmissionRequest, struct WebKitFormSubmissionRequest
-
webkit_form_submission_request_get_text_fields, webkit_form_submission_request_get_text_fields () +
webkit_form_submission_request_get_text_fields, webkit_form_submission_request_get_text_fields ()
-
webkit_form_submission_request_submit, webkit_form_submission_request_submit () +
webkit_form_submission_request_submit, webkit_form_submission_request_submit ()
-
WebKitFrame, struct WebKitFrame +
WebKitFrame, struct WebKitFrame
-
webkit_frame_get_javascript_context_for_script_world, webkit_frame_get_javascript_context_for_script_world () +
webkit_frame_get_javascript_context_for_script_world, webkit_frame_get_javascript_context_for_script_world ()
-
webkit_frame_get_javascript_global_context, webkit_frame_get_javascript_global_context () +
webkit_frame_get_javascript_global_context, webkit_frame_get_javascript_global_context ()
-
webkit_frame_get_uri, webkit_frame_get_uri () +
webkit_frame_get_uri, webkit_frame_get_uri ()
-
webkit_frame_is_main_frame, webkit_frame_is_main_frame () +
webkit_frame_is_main_frame, webkit_frame_is_main_frame ()

G

-
WebKitGeolocationPermissionRequest, struct WebKitGeolocationPermissionRequest +
WebKitGeolocationPermissionRequest, struct WebKitGeolocationPermissionRequest
-
webkit_get_major_version, webkit_get_major_version () +
webkit_get_major_version, webkit_get_major_version ()
-
webkit_get_micro_version, webkit_get_micro_version () +
webkit_get_micro_version, webkit_get_micro_version ()
-
webkit_get_minor_version, webkit_get_minor_version () +
webkit_get_minor_version, webkit_get_minor_version ()

H

-
WebKitHitTestResult, struct WebKitHitTestResult +
WebKitHitTestResult, struct WebKitHitTestResult
-
WebKitHitTestResult:context, The “context” property +
WebKitHitTestResult:context, The “context” property
-
WebKitHitTestResult:image-uri, The “image-uri” property +
WebKitHitTestResult:image-uri, The “image-uri” property
-
WebKitHitTestResult:link-label, The “link-label” property +
WebKitHitTestResult:link-label, The “link-label” property
-
WebKitHitTestResult:link-title, The “link-title” property +
WebKitHitTestResult:link-title, The “link-title” property
-
WebKitHitTestResult:link-uri, The “link-uri” property +
WebKitHitTestResult:link-uri, The “link-uri” property
-
WebKitHitTestResult:media-uri, The “media-uri” property +
WebKitHitTestResult:media-uri, The “media-uri” property
-
WebKitHitTestResultContext, enum WebKitHitTestResultContext +
WebKitHitTestResultContext, enum WebKitHitTestResultContext
-
webkit_hit_test_result_context_is_editable, webkit_hit_test_result_context_is_editable () +
webkit_hit_test_result_context_is_editable, webkit_hit_test_result_context_is_editable ()
-
webkit_hit_test_result_context_is_image, webkit_hit_test_result_context_is_image () +
webkit_hit_test_result_context_is_image, webkit_hit_test_result_context_is_image ()
-
webkit_hit_test_result_context_is_link, webkit_hit_test_result_context_is_link () +
webkit_hit_test_result_context_is_link, webkit_hit_test_result_context_is_link ()
-
webkit_hit_test_result_context_is_media, webkit_hit_test_result_context_is_media () +
webkit_hit_test_result_context_is_media, webkit_hit_test_result_context_is_media ()
-
webkit_hit_test_result_context_is_scrollbar, webkit_hit_test_result_context_is_scrollbar () +
webkit_hit_test_result_context_is_scrollbar, webkit_hit_test_result_context_is_scrollbar ()
-
webkit_hit_test_result_get_context, webkit_hit_test_result_get_context () +
webkit_hit_test_result_get_context, webkit_hit_test_result_get_context ()
-
webkit_hit_test_result_get_image_uri, webkit_hit_test_result_get_image_uri () +
webkit_hit_test_result_get_image_uri, webkit_hit_test_result_get_image_uri ()
-
webkit_hit_test_result_get_link_label, webkit_hit_test_result_get_link_label () +
webkit_hit_test_result_get_link_label, webkit_hit_test_result_get_link_label ()
-
webkit_hit_test_result_get_link_title, webkit_hit_test_result_get_link_title () +
webkit_hit_test_result_get_link_title, webkit_hit_test_result_get_link_title ()
-
webkit_hit_test_result_get_link_uri, webkit_hit_test_result_get_link_uri () +
webkit_hit_test_result_get_link_uri, webkit_hit_test_result_get_link_uri ()
-
webkit_hit_test_result_get_media_uri, webkit_hit_test_result_get_media_uri () +
webkit_hit_test_result_get_media_uri, webkit_hit_test_result_get_media_uri ()

I

-
WebKitInjectedContentFrames, enum WebKitInjectedContentFrames +
WebKitInjectedContentFrames, enum WebKitInjectedContentFrames
-
WebKitInsecureContentEvent, enum WebKitInsecureContentEvent +
WebKitInsecureContentEvent, enum WebKitInsecureContentEvent

J

-
WebKitJavascriptError, enum WebKitJavascriptError +
WebKitJavascriptError, enum WebKitJavascriptError
-
WebKitJavascriptResult, WebKitJavascriptResult +
WebKitJavascriptResult, WebKitJavascriptResult
-
WEBKIT_JAVASCRIPT_ERROR, WEBKIT_JAVASCRIPT_ERROR +
WEBKIT_JAVASCRIPT_ERROR, WEBKIT_JAVASCRIPT_ERROR
-
webkit_javascript_error_quark, webkit_javascript_error_quark () +
webkit_javascript_error_quark, webkit_javascript_error_quark ()
-
webkit_javascript_result_get_global_context, webkit_javascript_result_get_global_context () +
webkit_javascript_result_get_global_context, webkit_javascript_result_get_global_context ()
-
webkit_javascript_result_get_value, webkit_javascript_result_get_value () +
webkit_javascript_result_get_value, webkit_javascript_result_get_value ()
-
webkit_javascript_result_ref, webkit_javascript_result_ref () +
webkit_javascript_result_ref, webkit_javascript_result_ref ()
-
webkit_javascript_result_unref, webkit_javascript_result_unref () +
webkit_javascript_result_unref, webkit_javascript_result_unref ()

L

-
WebKitLoadEvent, enum WebKitLoadEvent +
WebKitLoadEvent, enum WebKitLoadEvent

M

-
WEBKIT_MAJOR_VERSION, WEBKIT_MAJOR_VERSION +
WEBKIT_MAJOR_VERSION, WEBKIT_MAJOR_VERSION
-
WEBKIT_MICRO_VERSION, WEBKIT_MICRO_VERSION +
WEBKIT_MICRO_VERSION, WEBKIT_MICRO_VERSION
-
WebKitMimeInfo, WebKitMimeInfo +
WebKitMimeInfo, WebKitMimeInfo
-
webkit_mime_info_get_description, webkit_mime_info_get_description () +
webkit_mime_info_get_description, webkit_mime_info_get_description ()
-
webkit_mime_info_get_extensions, webkit_mime_info_get_extensions () +
webkit_mime_info_get_extensions, webkit_mime_info_get_extensions ()
-
webkit_mime_info_get_mime_type, webkit_mime_info_get_mime_type () +
webkit_mime_info_get_mime_type, webkit_mime_info_get_mime_type ()
-
webkit_mime_info_ref, webkit_mime_info_ref () +
webkit_mime_info_ref, webkit_mime_info_ref ()
-
webkit_mime_info_unref, webkit_mime_info_unref () +
webkit_mime_info_unref, webkit_mime_info_unref ()
-
WEBKIT_MINOR_VERSION, WEBKIT_MINOR_VERSION +
WEBKIT_MINOR_VERSION, WEBKIT_MINOR_VERSION

N

-
WebKitNavigationPolicyDecision, struct WebKitNavigationPolicyDecision +
WebKitNavigationPolicyDecision, struct WebKitNavigationPolicyDecision
-
WebKitNavigationPolicyDecision:frame-name, The “frame-name” property +
WebKitNavigationPolicyDecision:frame-name, The “frame-name” property
-
WebKitNavigationPolicyDecision:modifiers, The “modifiers” property +
WebKitNavigationPolicyDecision:modifiers, The “modifiers” property
-
WebKitNavigationPolicyDecision:mouse-button, The “mouse-button” property +
WebKitNavigationPolicyDecision:mouse-button, The “mouse-button” property
-
WebKitNavigationPolicyDecision:navigation-type, The “navigation-type” property +
WebKitNavigationPolicyDecision:navigation-type, The “navigation-type” property
-
WebKitNavigationPolicyDecision:request, The “request” property +
WebKitNavigationPolicyDecision:request, The “request” property
-
WebKitNavigationType, enum WebKitNavigationType +
WebKitNavigationType, enum WebKitNavigationType
-
webkit_navigation_policy_decision_get_frame_name, webkit_navigation_policy_decision_get_frame_name () +
webkit_navigation_policy_decision_get_frame_name, webkit_navigation_policy_decision_get_frame_name ()
-
webkit_navigation_policy_decision_get_modifiers, webkit_navigation_policy_decision_get_modifiers () +
webkit_navigation_policy_decision_get_modifiers, webkit_navigation_policy_decision_get_modifiers ()
-
webkit_navigation_policy_decision_get_mouse_button, webkit_navigation_policy_decision_get_mouse_button () +
webkit_navigation_policy_decision_get_mouse_button, webkit_navigation_policy_decision_get_mouse_button ()
-
webkit_navigation_policy_decision_get_navigation_type, webkit_navigation_policy_decision_get_navigation_type () +
webkit_navigation_policy_decision_get_navigation_type, webkit_navigation_policy_decision_get_navigation_type ()
-
webkit_navigation_policy_decision_get_request, webkit_navigation_policy_decision_get_request () +
webkit_navigation_policy_decision_get_request, webkit_navigation_policy_decision_get_request ()
-
WebKitNetworkError, enum WebKitNetworkError +
WebKitNetworkError, enum WebKitNetworkError
-
WEBKIT_NETWORK_ERROR, WEBKIT_NETWORK_ERROR +
WEBKIT_NETWORK_ERROR, WEBKIT_NETWORK_ERROR
-
webkit_network_error_quark, webkit_network_error_quark () +
webkit_network_error_quark, webkit_network_error_quark ()

P

-
WebKitPermissionRequest, WebKitPermissionRequest +
WebKitPermissionRequest, WebKitPermissionRequest
-
webkit_permission_request_allow, webkit_permission_request_allow () +
webkit_permission_request_allow, webkit_permission_request_allow ()
-
webkit_permission_request_deny, webkit_permission_request_deny () +
webkit_permission_request_deny, webkit_permission_request_deny ()
-
WebKitPlugin, struct WebKitPlugin +
WebKitPlugin, struct WebKitPlugin
-
WebKitPluginError, enum WebKitPluginError +
WebKitPluginError, enum WebKitPluginError
-
WEBKIT_PLUGIN_ERROR, WEBKIT_PLUGIN_ERROR +
WEBKIT_PLUGIN_ERROR, WEBKIT_PLUGIN_ERROR
-
webkit_plugin_error_quark, webkit_plugin_error_quark () +
webkit_plugin_error_quark, webkit_plugin_error_quark ()
-
webkit_plugin_get_description, webkit_plugin_get_description () +
webkit_plugin_get_description, webkit_plugin_get_description ()
-
webkit_plugin_get_mime_info_list, webkit_plugin_get_mime_info_list () +
webkit_plugin_get_mime_info_list, webkit_plugin_get_mime_info_list ()
-
webkit_plugin_get_name, webkit_plugin_get_name () +
webkit_plugin_get_name, webkit_plugin_get_name ()
-
webkit_plugin_get_path, webkit_plugin_get_path () +
webkit_plugin_get_path, webkit_plugin_get_path ()
-
WebKitPolicyDecision, struct WebKitPolicyDecision +
WebKitPolicyDecision, struct WebKitPolicyDecision
-
WebKitPolicyDecisionType, enum WebKitPolicyDecisionType +
WebKitPolicyDecisionType, enum WebKitPolicyDecisionType
-
WebKitPolicyError, enum WebKitPolicyError +
WebKitPolicyError, enum WebKitPolicyError
-
webkit_policy_decision_download, webkit_policy_decision_download () +
webkit_policy_decision_download, webkit_policy_decision_download ()
-
webkit_policy_decision_ignore, webkit_policy_decision_ignore () +
webkit_policy_decision_ignore, webkit_policy_decision_ignore ()
-
webkit_policy_decision_use, webkit_policy_decision_use () +
webkit_policy_decision_use, webkit_policy_decision_use ()
-
WEBKIT_POLICY_ERROR, WEBKIT_POLICY_ERROR +
WEBKIT_POLICY_ERROR, WEBKIT_POLICY_ERROR
-
webkit_policy_error_quark, webkit_policy_error_quark () +
webkit_policy_error_quark, webkit_policy_error_quark ()
-
WebKitPrintError, enum WebKitPrintError +
WebKitPrintError, enum WebKitPrintError
-
WebKitPrintOperation, WebKitPrintOperation +
WebKitPrintOperation, WebKitPrintOperation
-
WebKitPrintOperation::failed, The “failed” signal +
WebKitPrintOperation::failed, The “failed” signal
-
WebKitPrintOperation::finished, The “finished” signal +
WebKitPrintOperation::finished, The “finished” signal
-
WebKitPrintOperation:page-setup, The “page-setup” property +
WebKitPrintOperation:page-setup, The “page-setup” property
-
WebKitPrintOperation:print-settings, The “print-settings” property +
WebKitPrintOperation:print-settings, The “print-settings” property
-
WebKitPrintOperation:web-view, The “web-view” property +
WebKitPrintOperation:web-view, The “web-view” property
-
WebKitPrintOperationResponse, enum WebKitPrintOperationResponse +
WebKitPrintOperationResponse, enum WebKitPrintOperationResponse
-
WEBKIT_PRINT_ERROR, WEBKIT_PRINT_ERROR +
WEBKIT_PRINT_ERROR, WEBKIT_PRINT_ERROR
-
webkit_print_error_quark, webkit_print_error_quark () +
webkit_print_error_quark, webkit_print_error_quark ()
-
webkit_print_operation_get_page_setup, webkit_print_operation_get_page_setup () +
webkit_print_operation_get_page_setup, webkit_print_operation_get_page_setup ()
-
webkit_print_operation_get_print_settings, webkit_print_operation_get_print_settings () +
webkit_print_operation_get_print_settings, webkit_print_operation_get_print_settings ()
-
webkit_print_operation_new, webkit_print_operation_new () +
webkit_print_operation_new, webkit_print_operation_new ()
-
webkit_print_operation_print, webkit_print_operation_print () +
webkit_print_operation_print, webkit_print_operation_print ()
-
webkit_print_operation_run_dialog, webkit_print_operation_run_dialog () +
webkit_print_operation_run_dialog, webkit_print_operation_run_dialog ()
-
webkit_print_operation_set_page_setup, webkit_print_operation_set_page_setup () +
webkit_print_operation_set_page_setup, webkit_print_operation_set_page_setup ()
-
webkit_print_operation_set_print_settings, webkit_print_operation_set_print_settings () +
webkit_print_operation_set_print_settings, webkit_print_operation_set_print_settings ()
-
WebKitProcessModel, enum WebKitProcessModel +
WebKitProcessModel, enum WebKitProcessModel

R

-
WebKitResponsePolicyDecision, struct WebKitResponsePolicyDecision +
WebKitResponsePolicyDecision, struct WebKitResponsePolicyDecision
-
WebKitResponsePolicyDecision:request, The “request” property +
WebKitResponsePolicyDecision:request, The “request” property
-
WebKitResponsePolicyDecision:response, The “response” property +
WebKitResponsePolicyDecision:response, The “response” property
-
webkit_response_policy_decision_get_request, webkit_response_policy_decision_get_request () +
webkit_response_policy_decision_get_request, webkit_response_policy_decision_get_request ()
-
webkit_response_policy_decision_get_response, webkit_response_policy_decision_get_response () +
webkit_response_policy_decision_get_response, webkit_response_policy_decision_get_response ()
-
webkit_response_policy_decision_is_mime_type_supported, webkit_response_policy_decision_is_mime_type_supported () +
webkit_response_policy_decision_is_mime_type_supported, webkit_response_policy_decision_is_mime_type_supported ()

S

-
WebKitSaveMode, enum WebKitSaveMode +
WebKitSaveMode, enum WebKitSaveMode
-
WebKitScriptDialog, WebKitScriptDialog +
WebKitScriptDialog, WebKitScriptDialog
-
WebKitScriptDialogType, enum WebKitScriptDialogType +
WebKitScriptDialogType, enum WebKitScriptDialogType
-
WebKitScriptWorld, struct WebKitScriptWorld +
WebKitScriptWorld, struct WebKitScriptWorld
-
WebKitScriptWorld::window-object-cleared, The “window-object-cleared” signal +
WebKitScriptWorld::window-object-cleared, The “window-object-cleared” signal
-
webkit_script_dialog_confirm_set_confirmed, webkit_script_dialog_confirm_set_confirmed () +
webkit_script_dialog_confirm_set_confirmed, webkit_script_dialog_confirm_set_confirmed ()
-
webkit_script_dialog_get_dialog_type, webkit_script_dialog_get_dialog_type () +
webkit_script_dialog_get_dialog_type, webkit_script_dialog_get_dialog_type ()
-
webkit_script_dialog_get_message, webkit_script_dialog_get_message () +
webkit_script_dialog_get_message, webkit_script_dialog_get_message ()
-
webkit_script_dialog_prompt_get_default_text, webkit_script_dialog_prompt_get_default_text () +
webkit_script_dialog_prompt_get_default_text, webkit_script_dialog_prompt_get_default_text ()
-
webkit_script_dialog_prompt_set_text, webkit_script_dialog_prompt_set_text () +
webkit_script_dialog_prompt_set_text, webkit_script_dialog_prompt_set_text ()
-
webkit_script_world_get_default, webkit_script_world_get_default () +
webkit_script_world_get_default, webkit_script_world_get_default ()
-
webkit_script_world_new, webkit_script_world_new () +
webkit_script_world_new, webkit_script_world_new ()
-
WebKitSecurityManager, struct WebKitSecurityManager +
WebKitSecurityManager, struct WebKitSecurityManager
-
webkit_security_manager_register_uri_scheme_as_cors_enabled, webkit_security_manager_register_uri_scheme_as_cors_enabled () +
webkit_security_manager_register_uri_scheme_as_cors_enabled, webkit_security_manager_register_uri_scheme_as_cors_enabled ()
-
webkit_security_manager_register_uri_scheme_as_display_isolated, webkit_security_manager_register_uri_scheme_as_display_isolated () +
webkit_security_manager_register_uri_scheme_as_display_isolated, webkit_security_manager_register_uri_scheme_as_display_isolated ()
-
webkit_security_manager_register_uri_scheme_as_empty_document, webkit_security_manager_register_uri_scheme_as_empty_document () +
webkit_security_manager_register_uri_scheme_as_empty_document, webkit_security_manager_register_uri_scheme_as_empty_document ()
-
webkit_security_manager_register_uri_scheme_as_local, webkit_security_manager_register_uri_scheme_as_local () +
webkit_security_manager_register_uri_scheme_as_local, webkit_security_manager_register_uri_scheme_as_local ()
-
webkit_security_manager_register_uri_scheme_as_no_access, webkit_security_manager_register_uri_scheme_as_no_access () +
webkit_security_manager_register_uri_scheme_as_no_access, webkit_security_manager_register_uri_scheme_as_no_access ()
-
webkit_security_manager_register_uri_scheme_as_secure, webkit_security_manager_register_uri_scheme_as_secure () +
webkit_security_manager_register_uri_scheme_as_secure, webkit_security_manager_register_uri_scheme_as_secure ()
-
webkit_security_manager_uri_scheme_is_cors_enabled, webkit_security_manager_uri_scheme_is_cors_enabled () +
webkit_security_manager_uri_scheme_is_cors_enabled, webkit_security_manager_uri_scheme_is_cors_enabled ()
-
webkit_security_manager_uri_scheme_is_display_isolated, webkit_security_manager_uri_scheme_is_display_isolated () +
webkit_security_manager_uri_scheme_is_display_isolated, webkit_security_manager_uri_scheme_is_display_isolated ()
-
webkit_security_manager_uri_scheme_is_empty_document, webkit_security_manager_uri_scheme_is_empty_document () +
webkit_security_manager_uri_scheme_is_empty_document, webkit_security_manager_uri_scheme_is_empty_document ()
-
webkit_security_manager_uri_scheme_is_local, webkit_security_manager_uri_scheme_is_local () +
webkit_security_manager_uri_scheme_is_local, webkit_security_manager_uri_scheme_is_local ()
-
webkit_security_manager_uri_scheme_is_no_access, webkit_security_manager_uri_scheme_is_no_access () +
webkit_security_manager_uri_scheme_is_no_access, webkit_security_manager_uri_scheme_is_no_access ()
-
webkit_security_manager_uri_scheme_is_secure, webkit_security_manager_uri_scheme_is_secure () +
webkit_security_manager_uri_scheme_is_secure, webkit_security_manager_uri_scheme_is_secure ()
-
WebKitSettings, struct WebKitSettings +
WebKitSettings, struct WebKitSettings
-
WebKitSettings:allow-modal-dialogs, The “allow-modal-dialogs” property +
WebKitSettings:allow-modal-dialogs, The “allow-modal-dialogs” property
-
WebKitSettings:auto-load-images, The “auto-load-images” property +
WebKitSettings:auto-load-images, The “auto-load-images” property
-
WebKitSettings:cursive-font-family, The “cursive-font-family” property +
WebKitSettings:cursive-font-family, The “cursive-font-family” property
-
WebKitSettings:default-charset, The “default-charset” property +
WebKitSettings:default-charset, The “default-charset” property
-
WebKitSettings:default-font-family, The “default-font-family” property +
WebKitSettings:default-font-family, The “default-font-family” property
-
WebKitSettings:default-font-size, The “default-font-size” property +
WebKitSettings:default-font-size, The “default-font-size” property
-
WebKitSettings:default-monospace-font-size, The “default-monospace-font-size” property +
WebKitSettings:default-monospace-font-size, The “default-monospace-font-size” property
-
WebKitSettings:draw-compositing-indicators, The “draw-compositing-indicators” property +
WebKitSettings:draw-compositing-indicators, The “draw-compositing-indicators” property
-
WebKitSettings:enable-accelerated-2d-canvas, The “enable-accelerated-2d-canvas” property +
WebKitSettings:enable-accelerated-2d-canvas, The “enable-accelerated-2d-canvas” property
-
WebKitSettings:enable-caret-browsing, The “enable-caret-browsing” property +
WebKitSettings:enable-caret-browsing, The “enable-caret-browsing” property
-
WebKitSettings:enable-developer-extras, The “enable-developer-extras” property +
WebKitSettings:enable-developer-extras, The “enable-developer-extras” property
-
WebKitSettings:enable-dns-prefetching, The “enable-dns-prefetching” property +
WebKitSettings:enable-dns-prefetching, The “enable-dns-prefetching” property
-
WebKitSettings:enable-frame-flattening, The “enable-frame-flattening” property +
WebKitSettings:enable-frame-flattening, The “enable-frame-flattening” property
-
WebKitSettings:enable-fullscreen, The “enable-fullscreen” property +
WebKitSettings:enable-fullscreen, The “enable-fullscreen” property
-
WebKitSettings:enable-html5-database, The “enable-html5-database” property +
WebKitSettings:enable-html5-database, The “enable-html5-database” property
-
WebKitSettings:enable-html5-local-storage, The “enable-html5-local-storage” property +
WebKitSettings:enable-html5-local-storage, The “enable-html5-local-storage” property
-
WebKitSettings:enable-hyperlink-auditing, The “enable-hyperlink-auditing” property +
WebKitSettings:enable-hyperlink-auditing, The “enable-hyperlink-auditing” property
-
WebKitSettings:enable-java, The “enable-java” property +
WebKitSettings:enable-java, The “enable-java” property
-
WebKitSettings:enable-javascript, The “enable-javascript” property +
WebKitSettings:enable-javascript, The “enable-javascript” property
-
WebKitSettings:enable-media-stream, The “enable-media-stream” property +
WebKitSettings:enable-media-stream, The “enable-media-stream” property
-
WebKitSettings:enable-mediasource, The “enable-mediasource” property +
WebKitSettings:enable-mediasource, The “enable-mediasource” property
-
WebKitSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property +
WebKitSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property
-
WebKitSettings:enable-page-cache, The “enable-page-cache” property +
WebKitSettings:enable-page-cache, The “enable-page-cache” property
-
WebKitSettings:enable-plugins, The “enable-plugins” property +
WebKitSettings:enable-plugins, The “enable-plugins” property
-
WebKitSettings:enable-private-browsing, The “enable-private-browsing” property +
WebKitSettings:enable-private-browsing, The “enable-private-browsing” property
-
WebKitSettings:enable-resizable-text-areas, The “enable-resizable-text-areas” property +
WebKitSettings:enable-resizable-text-areas, The “enable-resizable-text-areas” property
-
WebKitSettings:enable-site-specific-quirks, The “enable-site-specific-quirks” property +
WebKitSettings:enable-site-specific-quirks, The “enable-site-specific-quirks” property
-
WebKitSettings:enable-smooth-scrolling, The “enable-smooth-scrolling” property +
WebKitSettings:enable-smooth-scrolling, The “enable-smooth-scrolling” property
-
WebKitSettings:enable-spatial-navigation, The “enable-spatial-navigation” property +
WebKitSettings:enable-spatial-navigation, The “enable-spatial-navigation” property
-
WebKitSettings:enable-tabs-to-links, The “enable-tabs-to-links” property +
WebKitSettings:enable-tabs-to-links, The “enable-tabs-to-links” property
-
WebKitSettings:enable-webaudio, The “enable-webaudio” property +
WebKitSettings:enable-webaudio, The “enable-webaudio” property
-
WebKitSettings:enable-webgl, The “enable-webgl” property +
WebKitSettings:enable-webgl, The “enable-webgl” property
-
WebKitSettings:enable-write-console-messages-to-stdout, The “enable-write-console-messages-to-stdout” property +
WebKitSettings:enable-write-console-messages-to-stdout, The “enable-write-console-messages-to-stdout” property
-
WebKitSettings:enable-xss-auditor, The “enable-xss-auditor” property +
WebKitSettings:enable-xss-auditor, The “enable-xss-auditor” property
-
WebKitSettings:fantasy-font-family, The “fantasy-font-family” property +
WebKitSettings:fantasy-font-family, The “fantasy-font-family” property
-
WebKitSettings:javascript-can-access-clipboard, The “javascript-can-access-clipboard” property +
WebKitSettings:javascript-can-access-clipboard, The “javascript-can-access-clipboard” property
-
WebKitSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property +
WebKitSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property
-
WebKitSettings:load-icons-ignoring-image-load-setting, The “load-icons-ignoring-image-load-setting” property +
WebKitSettings:load-icons-ignoring-image-load-setting, The “load-icons-ignoring-image-load-setting” property
-
WebKitSettings:media-playback-allows-inline, The “media-playback-allows-inline” property +
WebKitSettings:media-playback-allows-inline, The “media-playback-allows-inline” property
-
WebKitSettings:media-playback-requires-user-gesture, The “media-playback-requires-user-gesture” property +
WebKitSettings:media-playback-requires-user-gesture, The “media-playback-requires-user-gesture” property
-
WebKitSettings:minimum-font-size, The “minimum-font-size” property +
WebKitSettings:minimum-font-size, The “minimum-font-size” property
-
WebKitSettings:monospace-font-family, The “monospace-font-family” property +
WebKitSettings:monospace-font-family, The “monospace-font-family” property
-
WebKitSettings:pictograph-font-family, The “pictograph-font-family” property +
WebKitSettings:pictograph-font-family, The “pictograph-font-family” property
-
WebKitSettings:print-backgrounds, The “print-backgrounds” property +
WebKitSettings:print-backgrounds, The “print-backgrounds” property
-
WebKitSettings:sans-serif-font-family, The “sans-serif-font-family” property +
WebKitSettings:sans-serif-font-family, The “sans-serif-font-family” property
-
WebKitSettings:serif-font-family, The “serif-font-family” property +
WebKitSettings:serif-font-family, The “serif-font-family” property
-
WebKitSettings:user-agent, The “user-agent” property +
WebKitSettings:user-agent, The “user-agent” property
-
WebKitSettings:zoom-text-only, The “zoom-text-only” property +
WebKitSettings:zoom-text-only, The “zoom-text-only” property
-
webkit_settings_get_allow_modal_dialogs, webkit_settings_get_allow_modal_dialogs () +
webkit_settings_get_allow_modal_dialogs, webkit_settings_get_allow_modal_dialogs ()
-
webkit_settings_get_auto_load_images, webkit_settings_get_auto_load_images () +
webkit_settings_get_auto_load_images, webkit_settings_get_auto_load_images ()
-
webkit_settings_get_cursive_font_family, webkit_settings_get_cursive_font_family () +
webkit_settings_get_cursive_font_family, webkit_settings_get_cursive_font_family ()
-
webkit_settings_get_default_charset, webkit_settings_get_default_charset () +
webkit_settings_get_default_charset, webkit_settings_get_default_charset ()
-
webkit_settings_get_default_font_family, webkit_settings_get_default_font_family () +
webkit_settings_get_default_font_family, webkit_settings_get_default_font_family ()
-
webkit_settings_get_default_font_size, webkit_settings_get_default_font_size () +
webkit_settings_get_default_font_size, webkit_settings_get_default_font_size ()
-
webkit_settings_get_default_monospace_font_size, webkit_settings_get_default_monospace_font_size () +
webkit_settings_get_default_monospace_font_size, webkit_settings_get_default_monospace_font_size ()
-
webkit_settings_get_draw_compositing_indicators, webkit_settings_get_draw_compositing_indicators () +
webkit_settings_get_draw_compositing_indicators, webkit_settings_get_draw_compositing_indicators ()
-
webkit_settings_get_enable_accelerated_2d_canvas, webkit_settings_get_enable_accelerated_2d_canvas () +
webkit_settings_get_enable_accelerated_2d_canvas, webkit_settings_get_enable_accelerated_2d_canvas ()
-
webkit_settings_get_enable_caret_browsing, webkit_settings_get_enable_caret_browsing () +
webkit_settings_get_enable_caret_browsing, webkit_settings_get_enable_caret_browsing ()
-
webkit_settings_get_enable_developer_extras, webkit_settings_get_enable_developer_extras () +
webkit_settings_get_enable_developer_extras, webkit_settings_get_enable_developer_extras ()
-
webkit_settings_get_enable_dns_prefetching, webkit_settings_get_enable_dns_prefetching () +
webkit_settings_get_enable_dns_prefetching, webkit_settings_get_enable_dns_prefetching ()
-
webkit_settings_get_enable_frame_flattening, webkit_settings_get_enable_frame_flattening () +
webkit_settings_get_enable_frame_flattening, webkit_settings_get_enable_frame_flattening ()
-
webkit_settings_get_enable_fullscreen, webkit_settings_get_enable_fullscreen () +
webkit_settings_get_enable_fullscreen, webkit_settings_get_enable_fullscreen ()
-
webkit_settings_get_enable_html5_database, webkit_settings_get_enable_html5_database () +
webkit_settings_get_enable_html5_database, webkit_settings_get_enable_html5_database ()
-
webkit_settings_get_enable_html5_local_storage, webkit_settings_get_enable_html5_local_storage () +
webkit_settings_get_enable_html5_local_storage, webkit_settings_get_enable_html5_local_storage ()
-
webkit_settings_get_enable_hyperlink_auditing, webkit_settings_get_enable_hyperlink_auditing () +
webkit_settings_get_enable_hyperlink_auditing, webkit_settings_get_enable_hyperlink_auditing ()
-
webkit_settings_get_enable_java, webkit_settings_get_enable_java () +
webkit_settings_get_enable_java, webkit_settings_get_enable_java ()
-
webkit_settings_get_enable_javascript, webkit_settings_get_enable_javascript () +
webkit_settings_get_enable_javascript, webkit_settings_get_enable_javascript ()
-
webkit_settings_get_enable_mediasource, webkit_settings_get_enable_mediasource () +
webkit_settings_get_enable_mediasource, webkit_settings_get_enable_mediasource ()
-
webkit_settings_get_enable_media_stream, webkit_settings_get_enable_media_stream () +
webkit_settings_get_enable_media_stream, webkit_settings_get_enable_media_stream ()
-
webkit_settings_get_enable_offline_web_application_cache, webkit_settings_get_enable_offline_web_application_cache () +
webkit_settings_get_enable_offline_web_application_cache, webkit_settings_get_enable_offline_web_application_cache ()
-
webkit_settings_get_enable_page_cache, webkit_settings_get_enable_page_cache () +
webkit_settings_get_enable_page_cache, webkit_settings_get_enable_page_cache ()
-
webkit_settings_get_enable_plugins, webkit_settings_get_enable_plugins () +
webkit_settings_get_enable_plugins, webkit_settings_get_enable_plugins ()
-
webkit_settings_get_enable_private_browsing, webkit_settings_get_enable_private_browsing () +
webkit_settings_get_enable_private_browsing, webkit_settings_get_enable_private_browsing ()
-
webkit_settings_get_enable_resizable_text_areas, webkit_settings_get_enable_resizable_text_areas () +
webkit_settings_get_enable_resizable_text_areas, webkit_settings_get_enable_resizable_text_areas ()
-
webkit_settings_get_enable_site_specific_quirks, webkit_settings_get_enable_site_specific_quirks () +
webkit_settings_get_enable_site_specific_quirks, webkit_settings_get_enable_site_specific_quirks ()
-
webkit_settings_get_enable_smooth_scrolling, webkit_settings_get_enable_smooth_scrolling () +
webkit_settings_get_enable_smooth_scrolling, webkit_settings_get_enable_smooth_scrolling ()
-
webkit_settings_get_enable_spatial_navigation, webkit_settings_get_enable_spatial_navigation () +
webkit_settings_get_enable_spatial_navigation, webkit_settings_get_enable_spatial_navigation ()
-
webkit_settings_get_enable_tabs_to_links, webkit_settings_get_enable_tabs_to_links () +
webkit_settings_get_enable_tabs_to_links, webkit_settings_get_enable_tabs_to_links ()
-
webkit_settings_get_enable_webaudio, webkit_settings_get_enable_webaudio () +
webkit_settings_get_enable_webaudio, webkit_settings_get_enable_webaudio ()
-
webkit_settings_get_enable_webgl, webkit_settings_get_enable_webgl () +
webkit_settings_get_enable_webgl, webkit_settings_get_enable_webgl ()
-
webkit_settings_get_enable_write_console_messages_to_stdout, webkit_settings_get_enable_write_console_messages_to_stdout () +
webkit_settings_get_enable_write_console_messages_to_stdout, webkit_settings_get_enable_write_console_messages_to_stdout ()
-
webkit_settings_get_enable_xss_auditor, webkit_settings_get_enable_xss_auditor () +
webkit_settings_get_enable_xss_auditor, webkit_settings_get_enable_xss_auditor ()
-
webkit_settings_get_fantasy_font_family, webkit_settings_get_fantasy_font_family () +
webkit_settings_get_fantasy_font_family, webkit_settings_get_fantasy_font_family ()
-
webkit_settings_get_javascript_can_access_clipboard, webkit_settings_get_javascript_can_access_clipboard () +
webkit_settings_get_javascript_can_access_clipboard, webkit_settings_get_javascript_can_access_clipboard ()
-
webkit_settings_get_javascript_can_open_windows_automatically, webkit_settings_get_javascript_can_open_windows_automatically () +
webkit_settings_get_javascript_can_open_windows_automatically, webkit_settings_get_javascript_can_open_windows_automatically ()
-
webkit_settings_get_load_icons_ignoring_image_load_setting, webkit_settings_get_load_icons_ignoring_image_load_setting () +
webkit_settings_get_load_icons_ignoring_image_load_setting, webkit_settings_get_load_icons_ignoring_image_load_setting ()
-
webkit_settings_get_media_playback_allows_inline, webkit_settings_get_media_playback_allows_inline () +
webkit_settings_get_media_playback_allows_inline, webkit_settings_get_media_playback_allows_inline ()
-
webkit_settings_get_media_playback_requires_user_gesture, webkit_settings_get_media_playback_requires_user_gesture () +
webkit_settings_get_media_playback_requires_user_gesture, webkit_settings_get_media_playback_requires_user_gesture ()
-
webkit_settings_get_minimum_font_size, webkit_settings_get_minimum_font_size () +
webkit_settings_get_minimum_font_size, webkit_settings_get_minimum_font_size ()
-
webkit_settings_get_monospace_font_family, webkit_settings_get_monospace_font_family () +
webkit_settings_get_monospace_font_family, webkit_settings_get_monospace_font_family ()
-
webkit_settings_get_pictograph_font_family, webkit_settings_get_pictograph_font_family () +
webkit_settings_get_pictograph_font_family, webkit_settings_get_pictograph_font_family ()
-
webkit_settings_get_print_backgrounds, webkit_settings_get_print_backgrounds () +
webkit_settings_get_print_backgrounds, webkit_settings_get_print_backgrounds ()
-
webkit_settings_get_sans_serif_font_family, webkit_settings_get_sans_serif_font_family () +
webkit_settings_get_sans_serif_font_family, webkit_settings_get_sans_serif_font_family ()
-
webkit_settings_get_serif_font_family, webkit_settings_get_serif_font_family () +
webkit_settings_get_serif_font_family, webkit_settings_get_serif_font_family ()
-
webkit_settings_get_user_agent, webkit_settings_get_user_agent () +
webkit_settings_get_user_agent, webkit_settings_get_user_agent ()
-
webkit_settings_get_zoom_text_only, webkit_settings_get_zoom_text_only () +
webkit_settings_get_zoom_text_only, webkit_settings_get_zoom_text_only ()
-
webkit_settings_new, webkit_settings_new () +
webkit_settings_new, webkit_settings_new ()
-
webkit_settings_new_with_settings, webkit_settings_new_with_settings () +
webkit_settings_new_with_settings, webkit_settings_new_with_settings ()
-
webkit_settings_set_allow_modal_dialogs, webkit_settings_set_allow_modal_dialogs () +
webkit_settings_set_allow_modal_dialogs, webkit_settings_set_allow_modal_dialogs ()
-
webkit_settings_set_auto_load_images, webkit_settings_set_auto_load_images () +
webkit_settings_set_auto_load_images, webkit_settings_set_auto_load_images ()
-
webkit_settings_set_cursive_font_family, webkit_settings_set_cursive_font_family () +
webkit_settings_set_cursive_font_family, webkit_settings_set_cursive_font_family ()
-
webkit_settings_set_default_charset, webkit_settings_set_default_charset () +
webkit_settings_set_default_charset, webkit_settings_set_default_charset ()
-
webkit_settings_set_default_font_family, webkit_settings_set_default_font_family () +
webkit_settings_set_default_font_family, webkit_settings_set_default_font_family ()
-
webkit_settings_set_default_font_size, webkit_settings_set_default_font_size () +
webkit_settings_set_default_font_size, webkit_settings_set_default_font_size ()
-
webkit_settings_set_default_monospace_font_size, webkit_settings_set_default_monospace_font_size () +
webkit_settings_set_default_monospace_font_size, webkit_settings_set_default_monospace_font_size ()
-
webkit_settings_set_draw_compositing_indicators, webkit_settings_set_draw_compositing_indicators () +
webkit_settings_set_draw_compositing_indicators, webkit_settings_set_draw_compositing_indicators ()
-
webkit_settings_set_enable_accelerated_2d_canvas, webkit_settings_set_enable_accelerated_2d_canvas () +
webkit_settings_set_enable_accelerated_2d_canvas, webkit_settings_set_enable_accelerated_2d_canvas ()
-
webkit_settings_set_enable_caret_browsing, webkit_settings_set_enable_caret_browsing () +
webkit_settings_set_enable_caret_browsing, webkit_settings_set_enable_caret_browsing ()
-
webkit_settings_set_enable_developer_extras, webkit_settings_set_enable_developer_extras () +
webkit_settings_set_enable_developer_extras, webkit_settings_set_enable_developer_extras ()
-
webkit_settings_set_enable_dns_prefetching, webkit_settings_set_enable_dns_prefetching () +
webkit_settings_set_enable_dns_prefetching, webkit_settings_set_enable_dns_prefetching ()
-
webkit_settings_set_enable_frame_flattening, webkit_settings_set_enable_frame_flattening () +
webkit_settings_set_enable_frame_flattening, webkit_settings_set_enable_frame_flattening ()
-
webkit_settings_set_enable_fullscreen, webkit_settings_set_enable_fullscreen () +
webkit_settings_set_enable_fullscreen, webkit_settings_set_enable_fullscreen ()
-
webkit_settings_set_enable_html5_database, webkit_settings_set_enable_html5_database () +
webkit_settings_set_enable_html5_database, webkit_settings_set_enable_html5_database ()
-
webkit_settings_set_enable_html5_local_storage, webkit_settings_set_enable_html5_local_storage () +
webkit_settings_set_enable_html5_local_storage, webkit_settings_set_enable_html5_local_storage ()
-
webkit_settings_set_enable_hyperlink_auditing, webkit_settings_set_enable_hyperlink_auditing () +
webkit_settings_set_enable_hyperlink_auditing, webkit_settings_set_enable_hyperlink_auditing ()
-
webkit_settings_set_enable_java, webkit_settings_set_enable_java () +
webkit_settings_set_enable_java, webkit_settings_set_enable_java ()
-
webkit_settings_set_enable_javascript, webkit_settings_set_enable_javascript () +
webkit_settings_set_enable_javascript, webkit_settings_set_enable_javascript ()
-
webkit_settings_set_enable_mediasource, webkit_settings_set_enable_mediasource () +
webkit_settings_set_enable_mediasource, webkit_settings_set_enable_mediasource ()
-
webkit_settings_set_enable_media_stream, webkit_settings_set_enable_media_stream () +
webkit_settings_set_enable_media_stream, webkit_settings_set_enable_media_stream ()
-
webkit_settings_set_enable_offline_web_application_cache, webkit_settings_set_enable_offline_web_application_cache () +
webkit_settings_set_enable_offline_web_application_cache, webkit_settings_set_enable_offline_web_application_cache ()
-
webkit_settings_set_enable_page_cache, webkit_settings_set_enable_page_cache () +
webkit_settings_set_enable_page_cache, webkit_settings_set_enable_page_cache ()
-
webkit_settings_set_enable_plugins, webkit_settings_set_enable_plugins () +
webkit_settings_set_enable_plugins, webkit_settings_set_enable_plugins ()
-
webkit_settings_set_enable_private_browsing, webkit_settings_set_enable_private_browsing () +
webkit_settings_set_enable_private_browsing, webkit_settings_set_enable_private_browsing ()
-
webkit_settings_set_enable_resizable_text_areas, webkit_settings_set_enable_resizable_text_areas () +
webkit_settings_set_enable_resizable_text_areas, webkit_settings_set_enable_resizable_text_areas ()
-
webkit_settings_set_enable_site_specific_quirks, webkit_settings_set_enable_site_specific_quirks () +
webkit_settings_set_enable_site_specific_quirks, webkit_settings_set_enable_site_specific_quirks ()
-
webkit_settings_set_enable_smooth_scrolling, webkit_settings_set_enable_smooth_scrolling () +
webkit_settings_set_enable_smooth_scrolling, webkit_settings_set_enable_smooth_scrolling ()
-
webkit_settings_set_enable_spatial_navigation, webkit_settings_set_enable_spatial_navigation () +
webkit_settings_set_enable_spatial_navigation, webkit_settings_set_enable_spatial_navigation ()
-
webkit_settings_set_enable_tabs_to_links, webkit_settings_set_enable_tabs_to_links () +
webkit_settings_set_enable_tabs_to_links, webkit_settings_set_enable_tabs_to_links ()
-
webkit_settings_set_enable_webaudio, webkit_settings_set_enable_webaudio () +
webkit_settings_set_enable_webaudio, webkit_settings_set_enable_webaudio ()
-
webkit_settings_set_enable_webgl, webkit_settings_set_enable_webgl () +
webkit_settings_set_enable_webgl, webkit_settings_set_enable_webgl ()
-
webkit_settings_set_enable_write_console_messages_to_stdout, webkit_settings_set_enable_write_console_messages_to_stdout () +
webkit_settings_set_enable_write_console_messages_to_stdout, webkit_settings_set_enable_write_console_messages_to_stdout ()
-
webkit_settings_set_enable_xss_auditor, webkit_settings_set_enable_xss_auditor () +
webkit_settings_set_enable_xss_auditor, webkit_settings_set_enable_xss_auditor ()
-
webkit_settings_set_fantasy_font_family, webkit_settings_set_fantasy_font_family () +
webkit_settings_set_fantasy_font_family, webkit_settings_set_fantasy_font_family ()
-
webkit_settings_set_javascript_can_access_clipboard, webkit_settings_set_javascript_can_access_clipboard () +
webkit_settings_set_javascript_can_access_clipboard, webkit_settings_set_javascript_can_access_clipboard ()
-
webkit_settings_set_javascript_can_open_windows_automatically, webkit_settings_set_javascript_can_open_windows_automatically () +
webkit_settings_set_javascript_can_open_windows_automatically, webkit_settings_set_javascript_can_open_windows_automatically ()
-
webkit_settings_set_load_icons_ignoring_image_load_setting, webkit_settings_set_load_icons_ignoring_image_load_setting () +
webkit_settings_set_load_icons_ignoring_image_load_setting, webkit_settings_set_load_icons_ignoring_image_load_setting ()
-
webkit_settings_set_media_playback_allows_inline, webkit_settings_set_media_playback_allows_inline () +
webkit_settings_set_media_playback_allows_inline, webkit_settings_set_media_playback_allows_inline ()
-
webkit_settings_set_media_playback_requires_user_gesture, webkit_settings_set_media_playback_requires_user_gesture () +
webkit_settings_set_media_playback_requires_user_gesture, webkit_settings_set_media_playback_requires_user_gesture ()
-
webkit_settings_set_minimum_font_size, webkit_settings_set_minimum_font_size () +
webkit_settings_set_minimum_font_size, webkit_settings_set_minimum_font_size ()
-
webkit_settings_set_monospace_font_family, webkit_settings_set_monospace_font_family () +
webkit_settings_set_monospace_font_family, webkit_settings_set_monospace_font_family ()
-
webkit_settings_set_pictograph_font_family, webkit_settings_set_pictograph_font_family () +
webkit_settings_set_pictograph_font_family, webkit_settings_set_pictograph_font_family ()
-
webkit_settings_set_print_backgrounds, webkit_settings_set_print_backgrounds () +
webkit_settings_set_print_backgrounds, webkit_settings_set_print_backgrounds ()
-
webkit_settings_set_sans_serif_font_family, webkit_settings_set_sans_serif_font_family () +
webkit_settings_set_sans_serif_font_family, webkit_settings_set_sans_serif_font_family ()
-
webkit_settings_set_serif_font_family, webkit_settings_set_serif_font_family () +
webkit_settings_set_serif_font_family, webkit_settings_set_serif_font_family ()
-
webkit_settings_set_user_agent, webkit_settings_set_user_agent () +
webkit_settings_set_user_agent, webkit_settings_set_user_agent ()
-
webkit_settings_set_user_agent_with_application_details, webkit_settings_set_user_agent_with_application_details () +
webkit_settings_set_user_agent_with_application_details, webkit_settings_set_user_agent_with_application_details ()
-
webkit_settings_set_zoom_text_only, webkit_settings_set_zoom_text_only () +
webkit_settings_set_zoom_text_only, webkit_settings_set_zoom_text_only ()
-
WebKitSnapshotError, enum WebKitSnapshotError +
WebKitSnapshotError, enum WebKitSnapshotError
-
WebKitSnapshotOptions, enum WebKitSnapshotOptions +
WebKitSnapshotOptions, enum WebKitSnapshotOptions
-
WebKitSnapshotRegion, enum WebKitSnapshotRegion +
WebKitSnapshotRegion, enum WebKitSnapshotRegion
-
WEBKIT_SNAPSHOT_ERROR, WEBKIT_SNAPSHOT_ERROR +
WEBKIT_SNAPSHOT_ERROR, WEBKIT_SNAPSHOT_ERROR
-
webkit_snapshot_error_quark, webkit_snapshot_error_quark () +
webkit_snapshot_error_quark, webkit_snapshot_error_quark ()

T

-
WebKitTLSErrorsPolicy, enum WebKitTLSErrorsPolicy +
WebKitTLSErrorsPolicy, enum WebKitTLSErrorsPolicy

U

-
WebKitURIRequest, struct WebKitURIRequest +
WebKitURIRequest, struct WebKitURIRequest
-
WebKitURIRequest:uri, The “uri” property +
WebKitURIRequest:uri, The “uri” property
-
WebKitURIResponse, struct WebKitURIResponse +
WebKitURIResponse, struct WebKitURIResponse
-
WebKitURIResponse:content-length, The “content-length” property +
WebKitURIResponse:content-length, The “content-length” property
-
WebKitURIResponse:mime-type, The “mime-type” property +
WebKitURIResponse:mime-type, The “mime-type” property
-
WebKitURIResponse:status-code, The “status-code” property +
WebKitURIResponse:status-code, The “status-code” property
-
WebKitURIResponse:suggested-filename, The “suggested-filename” property +
WebKitURIResponse:suggested-filename, The “suggested-filename” property
-
WebKitURIResponse:uri, The “uri” property +
WebKitURIResponse:uri, The “uri” property
-
WebKitURISchemeRequest, struct WebKitURISchemeRequest +
WebKitURISchemeRequest, struct WebKitURISchemeRequest
-
WebKitURISchemeRequestCallback, WebKitURISchemeRequestCallback () +
WebKitURISchemeRequestCallback, WebKitURISchemeRequestCallback ()
-
webkit_uri_request_get_http_headers, webkit_uri_request_get_http_headers () +
webkit_uri_request_get_http_headers, webkit_uri_request_get_http_headers ()
-
webkit_uri_request_get_uri, webkit_uri_request_get_uri () +
webkit_uri_request_get_uri, webkit_uri_request_get_uri ()
-
webkit_uri_request_new, webkit_uri_request_new () +
webkit_uri_request_new, webkit_uri_request_new ()
-
webkit_uri_request_set_uri, webkit_uri_request_set_uri () +
webkit_uri_request_set_uri, webkit_uri_request_set_uri ()
-
webkit_uri_response_get_content_length, webkit_uri_response_get_content_length () +
webkit_uri_response_get_content_length, webkit_uri_response_get_content_length ()
-
webkit_uri_response_get_mime_type, webkit_uri_response_get_mime_type () +
webkit_uri_response_get_mime_type, webkit_uri_response_get_mime_type ()
-
webkit_uri_response_get_status_code, webkit_uri_response_get_status_code () +
webkit_uri_response_get_status_code, webkit_uri_response_get_status_code ()
-
webkit_uri_response_get_suggested_filename, webkit_uri_response_get_suggested_filename () +
webkit_uri_response_get_suggested_filename, webkit_uri_response_get_suggested_filename ()
-
webkit_uri_response_get_uri, webkit_uri_response_get_uri () +
webkit_uri_response_get_uri, webkit_uri_response_get_uri ()
-
webkit_uri_scheme_request_finish, webkit_uri_scheme_request_finish () +
webkit_uri_scheme_request_finish, webkit_uri_scheme_request_finish ()
-
webkit_uri_scheme_request_finish_error, webkit_uri_scheme_request_finish_error () +
webkit_uri_scheme_request_finish_error, webkit_uri_scheme_request_finish_error ()
-
webkit_uri_scheme_request_get_path, webkit_uri_scheme_request_get_path () +
webkit_uri_scheme_request_get_path, webkit_uri_scheme_request_get_path ()
-
webkit_uri_scheme_request_get_scheme, webkit_uri_scheme_request_get_scheme () +
webkit_uri_scheme_request_get_scheme, webkit_uri_scheme_request_get_scheme ()
-
webkit_uri_scheme_request_get_uri, webkit_uri_scheme_request_get_uri () +
webkit_uri_scheme_request_get_uri, webkit_uri_scheme_request_get_uri ()
-
webkit_uri_scheme_request_get_web_view, webkit_uri_scheme_request_get_web_view () +
webkit_uri_scheme_request_get_web_view, webkit_uri_scheme_request_get_web_view ()

V

-
WebKitViewMode, enum WebKitViewMode +
WebKitViewMode, enum WebKitViewMode

W

-
WebKitWebContext, struct WebKitWebContext +
WebKitWebContext, struct WebKitWebContext
-
WebKitWebContext::download-started, The “download-started” signal +
WebKitWebContext::download-started, The “download-started” signal
-
WebKitWebContext::initialize-web-extensions, The “initialize-web-extensions” signal +
WebKitWebContext::initialize-web-extensions, The “initialize-web-extensions” signal
-
WebKitWebExtension, struct WebKitWebExtension +
WebKitWebExtension, struct WebKitWebExtension
-
WebKitWebExtension::page-created, The “page-created” signal +
WebKitWebExtension::page-created, The “page-created” signal
-
WebKitWebExtensionInitializeFunction, WebKitWebExtensionInitializeFunction () +
WebKitWebExtensionInitializeFunction, WebKitWebExtensionInitializeFunction ()
-
WebKitWebExtensionInitializeWithUserDataFunction, WebKitWebExtensionInitializeWithUserDataFunction () +
WebKitWebExtensionInitializeWithUserDataFunction, WebKitWebExtensionInitializeWithUserDataFunction ()
-
WebKitWebInspector, struct WebKitWebInspector +
WebKitWebInspector, struct WebKitWebInspector
-
WebKitWebInspector::attach, The “attach” signal +
WebKitWebInspector::attach, The “attach” signal
-
WebKitWebInspector::bring-to-front, The “bring-to-front” signal +
WebKitWebInspector::bring-to-front, The “bring-to-front” signal
-
WebKitWebInspector::closed, The “closed” signal +
WebKitWebInspector::closed, The “closed” signal
-
WebKitWebInspector::detach, The “detach” signal +
WebKitWebInspector::detach, The “detach” signal
-
WebKitWebInspector::open-window, The “open-window” signal +
WebKitWebInspector::open-window, The “open-window” signal
-
WebKitWebInspector:attached-height, The “attached-height” property +
WebKitWebInspector:attached-height, The “attached-height” property
-
WebKitWebInspector:inspected-uri, The “inspected-uri” property +
WebKitWebInspector:inspected-uri, The “inspected-uri” property
-
WebKitWebPage, struct WebKitWebPage +
WebKitWebPage, struct WebKitWebPage
-
WebKitWebPage::document-loaded, The “document-loaded” signal +
WebKitWebPage::document-loaded, The “document-loaded” signal
-
WebKitWebPage::send-request, The “send-request” signal +
WebKitWebPage::send-request, The “send-request” signal
-
WebKitWebPage:uri, The “uri” property +
WebKitWebPage:uri, The “uri” property
-
WebKitWebResource, struct WebKitWebResource +
WebKitWebResource, struct WebKitWebResource
-
WebKitWebResource::failed, The “failed” signal +
WebKitWebResource::failed, The “failed” signal
-
WebKitWebResource::finished, The “finished” signal +
WebKitWebResource::finished, The “finished” signal
-
WebKitWebResource::received-data, The “received-data” signal +
WebKitWebResource::received-data, The “received-data” signal
-
WebKitWebResource::sent-request, The “sent-request” signal +
WebKitWebResource::sent-request, The “sent-request” signal
-
WebKitWebResource:response, The “response” property +
WebKitWebResource:response, The “response” property
-
WebKitWebResource:uri, The “uri” property +
WebKitWebResource:uri, The “uri” property
-
WebKitWebView, WebKitWebView +
WebKitWebView, WebKitWebView
-
WebKitWebView::authenticate, The “authenticate” signal +
WebKitWebView::authenticate, The “authenticate” signal
-
WebKitWebView::close, The “close” signal +
WebKitWebView::close, The “close” signal
-
WebKitWebView::context-menu, The “context-menu” signal +
WebKitWebView::context-menu, The “context-menu” signal
-
WebKitWebView::context-menu-dismissed, The “context-menu-dismissed” signal +
WebKitWebView::context-menu-dismissed, The “context-menu-dismissed” signal
-
WebKitWebView::create, The “create” signal +
WebKitWebView::create, The “create” signal
-
WebKitWebView::decide-policy, The “decide-policy” signal +
WebKitWebView::decide-policy, The “decide-policy” signal
-
WebKitWebView::enter-fullscreen, The “enter-fullscreen” signal +
WebKitWebView::enter-fullscreen, The “enter-fullscreen” signal
-
WebKitWebView::insecure-content-detected, The “insecure-content-detected” signal +
WebKitWebView::insecure-content-detected, The “insecure-content-detected” signal
-
WebKitWebView::leave-fullscreen, The “leave-fullscreen” signal +
WebKitWebView::leave-fullscreen, The “leave-fullscreen” signal
-
WebKitWebView::load-changed, The “load-changed” signal +
WebKitWebView::load-changed, The “load-changed” signal
-
WebKitWebView::load-failed, The “load-failed” signal +
WebKitWebView::load-failed, The “load-failed” signal
-
WebKitWebView::load-failed-with-tls-errors, The “load-failed-with-tls-errors” signal +
WebKitWebView::load-failed-with-tls-errors, The “load-failed-with-tls-errors” signal
-
WebKitWebView::mouse-target-changed, The “mouse-target-changed” signal +
WebKitWebView::mouse-target-changed, The “mouse-target-changed” signal
-
WebKitWebView::permission-request, The “permission-request” signal +
WebKitWebView::permission-request, The “permission-request” signal
-
WebKitWebView::print, The “print” signal +
WebKitWebView::print, The “print” signal
-
WebKitWebView::ready-to-show, The “ready-to-show” signal +
WebKitWebView::ready-to-show, The “ready-to-show” signal
-
WebKitWebView::resource-load-started, The “resource-load-started” signal +
WebKitWebView::resource-load-started, The “resource-load-started” signal
-
WebKitWebView::run-as-modal, The “run-as-modal” signal +
WebKitWebView::run-as-modal, The “run-as-modal” signal
-
WebKitWebView::run-file-chooser, The “run-file-chooser” signal +
WebKitWebView::run-file-chooser, The “run-file-chooser” signal
-
WebKitWebView::script-dialog, The “script-dialog” signal +
WebKitWebView::script-dialog, The “script-dialog” signal
-
WebKitWebView::submit-form, The “submit-form” signal +
WebKitWebView::submit-form, The “submit-form” signal
-
WebKitWebView::web-process-crashed, The “web-process-crashed” signal +
WebKitWebView::web-process-crashed, The “web-process-crashed” signal
-
WebKitWebView:estimated-load-progress, The “estimated-load-progress” property +
WebKitWebView:estimated-load-progress, The “estimated-load-progress” property
-
WebKitWebView:favicon, The “favicon” property +
WebKitWebView:favicon, The “favicon” property
-
WebKitWebView:group, The “group” property +
WebKitWebView:group, The “group” property
-
WebKitWebView:is-loading, The “is-loading” property +
WebKitWebView:is-loading, The “is-loading” property
-
WebKitWebView:related-view, The “related-view” property +
WebKitWebView:related-view, The “related-view” property
-
WebKitWebView:title, The “title” property +
WebKitWebView:title, The “title” property
-
WebKitWebView:uri, The “uri” property +
WebKitWebView:uri, The “uri” property
-
WebKitWebView:view-mode, The “view-mode” property +
WebKitWebView:view-mode, The “view-mode” property
-
WebKitWebView:web-context, The “web-context” property +
WebKitWebView:web-context, The “web-context” property
-
WebKitWebView:zoom-level, The “zoom-level” property +
WebKitWebView:zoom-level, The “zoom-level” property
-
WebKitWebViewGroup, struct WebKitWebViewGroup +
WebKitWebViewGroup, struct WebKitWebViewGroup
-
WebKitWebViewGroup:settings, The “settings” property +
WebKitWebViewGroup:settings, The “settings” property
-
webkit_web_context_allow_tls_certificate_for_host, webkit_web_context_allow_tls_certificate_for_host () +
webkit_web_context_allow_tls_certificate_for_host, webkit_web_context_allow_tls_certificate_for_host ()
-
webkit_web_context_clear_cache, webkit_web_context_clear_cache () +
webkit_web_context_clear_cache, webkit_web_context_clear_cache ()
-
webkit_web_context_download_uri, webkit_web_context_download_uri () +
webkit_web_context_download_uri, webkit_web_context_download_uri ()
-
webkit_web_context_get_cache_model, webkit_web_context_get_cache_model () +
webkit_web_context_get_cache_model, webkit_web_context_get_cache_model ()
-
webkit_web_context_get_cookie_manager, webkit_web_context_get_cookie_manager () +
webkit_web_context_get_cookie_manager, webkit_web_context_get_cookie_manager ()
-
webkit_web_context_get_default, webkit_web_context_get_default () +
webkit_web_context_get_default, webkit_web_context_get_default ()
-
webkit_web_context_get_favicon_database, webkit_web_context_get_favicon_database () +
webkit_web_context_get_favicon_database, webkit_web_context_get_favicon_database ()
-
webkit_web_context_get_favicon_database_directory, webkit_web_context_get_favicon_database_directory () +
webkit_web_context_get_favicon_database_directory, webkit_web_context_get_favicon_database_directory ()
-
webkit_web_context_get_plugins, webkit_web_context_get_plugins () +
webkit_web_context_get_plugins, webkit_web_context_get_plugins ()
-
webkit_web_context_get_plugins_finish, webkit_web_context_get_plugins_finish () +
webkit_web_context_get_plugins_finish, webkit_web_context_get_plugins_finish ()
-
webkit_web_context_get_process_model, webkit_web_context_get_process_model () +
webkit_web_context_get_process_model, webkit_web_context_get_process_model ()
-
webkit_web_context_get_security_manager, webkit_web_context_get_security_manager () +
webkit_web_context_get_security_manager, webkit_web_context_get_security_manager ()
-
webkit_web_context_get_spell_checking_enabled, webkit_web_context_get_spell_checking_enabled () +
webkit_web_context_get_spell_checking_enabled, webkit_web_context_get_spell_checking_enabled ()
-
webkit_web_context_get_spell_checking_languages, webkit_web_context_get_spell_checking_languages () +
webkit_web_context_get_spell_checking_languages, webkit_web_context_get_spell_checking_languages ()
-
webkit_web_context_get_tls_errors_policy, webkit_web_context_get_tls_errors_policy () +
webkit_web_context_get_tls_errors_policy, webkit_web_context_get_tls_errors_policy ()
-
webkit_web_context_prefetch_dns, webkit_web_context_prefetch_dns () +
webkit_web_context_prefetch_dns, webkit_web_context_prefetch_dns ()
-
webkit_web_context_register_uri_scheme, webkit_web_context_register_uri_scheme () +
webkit_web_context_register_uri_scheme, webkit_web_context_register_uri_scheme ()
-
webkit_web_context_set_additional_plugins_directory, webkit_web_context_set_additional_plugins_directory () +
webkit_web_context_set_additional_plugins_directory, webkit_web_context_set_additional_plugins_directory ()
-
webkit_web_context_set_cache_model, webkit_web_context_set_cache_model () +
webkit_web_context_set_cache_model, webkit_web_context_set_cache_model ()
-
webkit_web_context_set_disk_cache_directory, webkit_web_context_set_disk_cache_directory () +
webkit_web_context_set_disk_cache_directory, webkit_web_context_set_disk_cache_directory ()
-
webkit_web_context_set_favicon_database_directory, webkit_web_context_set_favicon_database_directory () +
webkit_web_context_set_favicon_database_directory, webkit_web_context_set_favicon_database_directory ()
-
webkit_web_context_set_preferred_languages, webkit_web_context_set_preferred_languages () +
webkit_web_context_set_preferred_languages, webkit_web_context_set_preferred_languages ()
-
webkit_web_context_set_process_model, webkit_web_context_set_process_model () +
webkit_web_context_set_process_model, webkit_web_context_set_process_model ()
-
webkit_web_context_set_spell_checking_enabled, webkit_web_context_set_spell_checking_enabled () +
webkit_web_context_set_spell_checking_enabled, webkit_web_context_set_spell_checking_enabled ()
-
webkit_web_context_set_spell_checking_languages, webkit_web_context_set_spell_checking_languages () +
webkit_web_context_set_spell_checking_languages, webkit_web_context_set_spell_checking_languages ()
-
webkit_web_context_set_tls_errors_policy, webkit_web_context_set_tls_errors_policy () +
webkit_web_context_set_tls_errors_policy, webkit_web_context_set_tls_errors_policy ()
-
webkit_web_context_set_web_extensions_directory, webkit_web_context_set_web_extensions_directory () +
webkit_web_context_set_web_extensions_directory, webkit_web_context_set_web_extensions_directory ()
-
webkit_web_context_set_web_extensions_initialization_user_data, webkit_web_context_set_web_extensions_initialization_user_data () +
webkit_web_context_set_web_extensions_initialization_user_data, webkit_web_context_set_web_extensions_initialization_user_data ()
-
webkit_web_extension_get_page, webkit_web_extension_get_page () +
webkit_web_extension_get_page, webkit_web_extension_get_page ()
-
webkit_web_inspector_attach, webkit_web_inspector_attach () +
webkit_web_inspector_attach, webkit_web_inspector_attach ()
-
webkit_web_inspector_close, webkit_web_inspector_close () +
webkit_web_inspector_close, webkit_web_inspector_close ()
-
webkit_web_inspector_detach, webkit_web_inspector_detach () +
webkit_web_inspector_detach, webkit_web_inspector_detach ()
-
webkit_web_inspector_get_attached_height, webkit_web_inspector_get_attached_height () +
webkit_web_inspector_get_attached_height, webkit_web_inspector_get_attached_height ()
-
webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri () +
webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri ()
-
webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view () +
webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view ()
-
webkit_web_inspector_is_attached, webkit_web_inspector_is_attached () +
webkit_web_inspector_is_attached, webkit_web_inspector_is_attached ()
-
webkit_web_inspector_show, webkit_web_inspector_show () +
webkit_web_inspector_show, webkit_web_inspector_show ()
-
webkit_web_page_get_dom_document, webkit_web_page_get_dom_document () +
webkit_web_page_get_dom_document, webkit_web_page_get_dom_document ()
-
webkit_web_page_get_id, webkit_web_page_get_id () +
webkit_web_page_get_id, webkit_web_page_get_id ()
-
webkit_web_page_get_main_frame, webkit_web_page_get_main_frame () +
webkit_web_page_get_main_frame, webkit_web_page_get_main_frame ()
-
webkit_web_page_get_uri, webkit_web_page_get_uri () +
webkit_web_page_get_uri, webkit_web_page_get_uri ()
-
webkit_web_resource_get_data, webkit_web_resource_get_data () +
webkit_web_resource_get_data, webkit_web_resource_get_data ()
-
webkit_web_resource_get_data_finish, webkit_web_resource_get_data_finish () +
webkit_web_resource_get_data_finish, webkit_web_resource_get_data_finish ()
-
webkit_web_resource_get_response, webkit_web_resource_get_response () +
webkit_web_resource_get_response, webkit_web_resource_get_response ()
-
webkit_web_resource_get_uri, webkit_web_resource_get_uri () +
webkit_web_resource_get_uri, webkit_web_resource_get_uri ()
-
webkit_web_view_can_execute_editing_command, webkit_web_view_can_execute_editing_command () +
webkit_web_view_can_execute_editing_command, webkit_web_view_can_execute_editing_command ()
-
webkit_web_view_can_execute_editing_command_finish, webkit_web_view_can_execute_editing_command_finish () +
webkit_web_view_can_execute_editing_command_finish, webkit_web_view_can_execute_editing_command_finish ()
-
webkit_web_view_can_go_back, webkit_web_view_can_go_back () +
webkit_web_view_can_go_back, webkit_web_view_can_go_back ()
-
webkit_web_view_can_go_forward, webkit_web_view_can_go_forward () +
webkit_web_view_can_go_forward, webkit_web_view_can_go_forward ()
-
webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type () +
webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type ()
-
webkit_web_view_download_uri, webkit_web_view_download_uri () +
webkit_web_view_download_uri, webkit_web_view_download_uri ()
-
webkit_web_view_execute_editing_command, webkit_web_view_execute_editing_command () +
webkit_web_view_execute_editing_command, webkit_web_view_execute_editing_command ()
-
webkit_web_view_get_back_forward_list, webkit_web_view_get_back_forward_list () +
webkit_web_view_get_back_forward_list, webkit_web_view_get_back_forward_list ()
-
webkit_web_view_get_context, webkit_web_view_get_context () +
webkit_web_view_get_context, webkit_web_view_get_context ()
-
webkit_web_view_get_custom_charset, webkit_web_view_get_custom_charset () +
webkit_web_view_get_custom_charset, webkit_web_view_get_custom_charset ()
-
webkit_web_view_get_estimated_load_progress, webkit_web_view_get_estimated_load_progress () +
webkit_web_view_get_estimated_load_progress, webkit_web_view_get_estimated_load_progress ()
-
webkit_web_view_get_favicon, webkit_web_view_get_favicon () +
webkit_web_view_get_favicon, webkit_web_view_get_favicon ()
-
webkit_web_view_get_find_controller, webkit_web_view_get_find_controller () +
webkit_web_view_get_find_controller, webkit_web_view_get_find_controller ()
-
webkit_web_view_get_group, webkit_web_view_get_group () +
webkit_web_view_get_group, webkit_web_view_get_group ()
-
webkit_web_view_get_inspector, webkit_web_view_get_inspector () +
webkit_web_view_get_inspector, webkit_web_view_get_inspector ()
-
webkit_web_view_get_javascript_global_context, webkit_web_view_get_javascript_global_context () +
webkit_web_view_get_javascript_global_context, webkit_web_view_get_javascript_global_context ()
-
webkit_web_view_get_main_resource, webkit_web_view_get_main_resource () +
webkit_web_view_get_main_resource, webkit_web_view_get_main_resource ()
-
webkit_web_view_get_page_id, webkit_web_view_get_page_id () +
webkit_web_view_get_page_id, webkit_web_view_get_page_id ()
-
webkit_web_view_get_settings, webkit_web_view_get_settings () +
webkit_web_view_get_settings, webkit_web_view_get_settings ()
-
webkit_web_view_get_snapshot, webkit_web_view_get_snapshot () +
webkit_web_view_get_snapshot, webkit_web_view_get_snapshot ()
-
webkit_web_view_get_snapshot_finish, webkit_web_view_get_snapshot_finish () +
webkit_web_view_get_snapshot_finish, webkit_web_view_get_snapshot_finish ()
-
webkit_web_view_get_title, webkit_web_view_get_title () +
webkit_web_view_get_title, webkit_web_view_get_title ()
-
webkit_web_view_get_tls_info, webkit_web_view_get_tls_info () +
webkit_web_view_get_tls_info, webkit_web_view_get_tls_info ()
-
webkit_web_view_get_uri, webkit_web_view_get_uri () +
webkit_web_view_get_uri, webkit_web_view_get_uri ()
-
webkit_web_view_get_view_mode, webkit_web_view_get_view_mode () +
webkit_web_view_get_view_mode, webkit_web_view_get_view_mode ()
-
webkit_web_view_get_window_properties, webkit_web_view_get_window_properties () +
webkit_web_view_get_window_properties, webkit_web_view_get_window_properties ()
-
webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level () +
webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level ()
-
webkit_web_view_go_back, webkit_web_view_go_back () +
webkit_web_view_go_back, webkit_web_view_go_back ()
-
webkit_web_view_go_forward, webkit_web_view_go_forward () +
webkit_web_view_go_forward, webkit_web_view_go_forward ()
-
webkit_web_view_go_to_back_forward_list_item, webkit_web_view_go_to_back_forward_list_item () +
webkit_web_view_go_to_back_forward_list_item, webkit_web_view_go_to_back_forward_list_item ()
-
webkit_web_view_group_add_user_style_sheet, webkit_web_view_group_add_user_style_sheet () +
webkit_web_view_group_add_user_style_sheet, webkit_web_view_group_add_user_style_sheet ()
-
webkit_web_view_group_get_name, webkit_web_view_group_get_name () +
webkit_web_view_group_get_name, webkit_web_view_group_get_name ()
-
webkit_web_view_group_get_settings, webkit_web_view_group_get_settings () +
webkit_web_view_group_get_settings, webkit_web_view_group_get_settings ()
-
webkit_web_view_group_new, webkit_web_view_group_new () +
webkit_web_view_group_new, webkit_web_view_group_new ()
-
webkit_web_view_group_remove_all_user_style_sheets, webkit_web_view_group_remove_all_user_style_sheets () +
webkit_web_view_group_remove_all_user_style_sheets, webkit_web_view_group_remove_all_user_style_sheets ()
-
webkit_web_view_group_set_settings, webkit_web_view_group_set_settings () +
webkit_web_view_group_set_settings, webkit_web_view_group_set_settings ()
-
webkit_web_view_is_loading, webkit_web_view_is_loading () +
webkit_web_view_is_loading, webkit_web_view_is_loading ()
-
webkit_web_view_load_alternate_html, webkit_web_view_load_alternate_html () +
webkit_web_view_load_alternate_html, webkit_web_view_load_alternate_html ()
-
webkit_web_view_load_html, webkit_web_view_load_html () +
webkit_web_view_load_html, webkit_web_view_load_html ()
-
webkit_web_view_load_plain_text, webkit_web_view_load_plain_text () +
webkit_web_view_load_plain_text, webkit_web_view_load_plain_text ()
-
webkit_web_view_load_request, webkit_web_view_load_request () +
webkit_web_view_load_request, webkit_web_view_load_request ()
-
webkit_web_view_load_uri, webkit_web_view_load_uri () +
webkit_web_view_load_uri, webkit_web_view_load_uri ()
-
webkit_web_view_new, webkit_web_view_new () +
webkit_web_view_new, webkit_web_view_new ()
-
webkit_web_view_new_with_context, webkit_web_view_new_with_context () +
webkit_web_view_new_with_context, webkit_web_view_new_with_context ()
-
webkit_web_view_new_with_group, webkit_web_view_new_with_group () +
webkit_web_view_new_with_group, webkit_web_view_new_with_group ()
-
webkit_web_view_new_with_related_view, webkit_web_view_new_with_related_view () +
webkit_web_view_new_with_related_view, webkit_web_view_new_with_related_view ()
-
webkit_web_view_reload, webkit_web_view_reload () +
webkit_web_view_reload, webkit_web_view_reload ()
-
webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache () +
webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache ()
-
webkit_web_view_run_javascript, webkit_web_view_run_javascript () +
webkit_web_view_run_javascript, webkit_web_view_run_javascript ()
-
webkit_web_view_run_javascript_finish, webkit_web_view_run_javascript_finish () +
webkit_web_view_run_javascript_finish, webkit_web_view_run_javascript_finish ()
-
webkit_web_view_run_javascript_from_gresource, webkit_web_view_run_javascript_from_gresource () +
webkit_web_view_run_javascript_from_gresource, webkit_web_view_run_javascript_from_gresource ()
-
webkit_web_view_run_javascript_from_gresource_finish, webkit_web_view_run_javascript_from_gresource_finish () +
webkit_web_view_run_javascript_from_gresource_finish, webkit_web_view_run_javascript_from_gresource_finish ()
-
webkit_web_view_save, webkit_web_view_save () +
webkit_web_view_save, webkit_web_view_save ()
-
webkit_web_view_save_finish, webkit_web_view_save_finish () +
webkit_web_view_save_finish, webkit_web_view_save_finish ()
-
webkit_web_view_save_to_file, webkit_web_view_save_to_file () +
webkit_web_view_save_to_file, webkit_web_view_save_to_file ()
-
webkit_web_view_save_to_file_finish, webkit_web_view_save_to_file_finish () +
webkit_web_view_save_to_file_finish, webkit_web_view_save_to_file_finish ()
-
webkit_web_view_set_custom_charset, webkit_web_view_set_custom_charset () +
webkit_web_view_set_custom_charset, webkit_web_view_set_custom_charset ()
-
webkit_web_view_set_settings, webkit_web_view_set_settings () +
webkit_web_view_set_settings, webkit_web_view_set_settings ()
-
webkit_web_view_set_view_mode, webkit_web_view_set_view_mode () +
webkit_web_view_set_view_mode, webkit_web_view_set_view_mode ()
-
webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level () +
webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level ()
-
webkit_web_view_stop_loading, webkit_web_view_stop_loading () +
webkit_web_view_stop_loading, webkit_web_view_stop_loading ()
-
WebKitWindowProperties, struct WebKitWindowProperties +
WebKitWindowProperties, struct WebKitWindowProperties
-
WebKitWindowProperties:fullscreen, The “fullscreen” property +
WebKitWindowProperties:fullscreen, The “fullscreen” property
-
WebKitWindowProperties:geometry, The “geometry” property +
WebKitWindowProperties:geometry, The “geometry” property
-
WebKitWindowProperties:locationbar-visible, The “locationbar-visible” property +
WebKitWindowProperties:locationbar-visible, The “locationbar-visible” property
-
WebKitWindowProperties:menubar-visible, The “menubar-visible” property +
WebKitWindowProperties:menubar-visible, The “menubar-visible” property
-
WebKitWindowProperties:resizable, The “resizable” property +
WebKitWindowProperties:resizable, The “resizable” property
-
WebKitWindowProperties:scrollbars-visible, The “scrollbars-visible” property +
WebKitWindowProperties:scrollbars-visible, The “scrollbars-visible” property
-
WebKitWindowProperties:statusbar-visible, The “statusbar-visible” property +
WebKitWindowProperties:statusbar-visible, The “statusbar-visible” property
-
WebKitWindowProperties:toolbar-visible, The “toolbar-visible” property +
WebKitWindowProperties:toolbar-visible, The “toolbar-visible” property
-
webkit_window_properties_get_fullscreen, webkit_window_properties_get_fullscreen () +
webkit_window_properties_get_fullscreen, webkit_window_properties_get_fullscreen ()
-
webkit_window_properties_get_geometry, webkit_window_properties_get_geometry () +
webkit_window_properties_get_geometry, webkit_window_properties_get_geometry ()
-
webkit_window_properties_get_locationbar_visible, webkit_window_properties_get_locationbar_visible () +
webkit_window_properties_get_locationbar_visible, webkit_window_properties_get_locationbar_visible ()
-
webkit_window_properties_get_menubar_visible, webkit_window_properties_get_menubar_visible () +
webkit_window_properties_get_menubar_visible, webkit_window_properties_get_menubar_visible ()
-
webkit_window_properties_get_resizable, webkit_window_properties_get_resizable () +
webkit_window_properties_get_resizable, webkit_window_properties_get_resizable ()
-
webkit_window_properties_get_scrollbars_visible, webkit_window_properties_get_scrollbars_visible () +
webkit_window_properties_get_scrollbars_visible, webkit_window_properties_get_scrollbars_visible ()
-
webkit_window_properties_get_statusbar_visible, webkit_window_properties_get_statusbar_visible () +
webkit_window_properties_get_statusbar_visible, webkit_window_properties_get_statusbar_visible ()
-
webkit_window_properties_get_toolbar_visible, webkit_window_properties_get_toolbar_visible () +
webkit_window_properties_get_toolbar_visible, webkit_window_properties_get_toolbar_visible ()
+
Generated by GTK-Doc V1.24.1
\ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/index.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/index.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/index.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/index.html 2016-03-14 08:06:04.000000000 +0000 @@ -3,10 +3,10 @@ WebKit2GTK+ Reference Manual: WebKit2GTK+ Reference Manual - + - + @@ -14,7 +14,7 @@
-

for WebKit2GTK+ 2.4.9

+

for WebKit2GTK+ 2.4.10


@@ -22,7 +22,7 @@
Class Overview
-WebKitWebContextManages aspects common to all WebKitWebViews +WebKitWebContext — Manages aspects common to all WebKitWebViews
WebKitWebView — The central class of the WebKit2GTK+ API @@ -34,10 +34,10 @@ WebKitBackForwardList — List of visited pages
-WebKitBackForwardListItemOne item of the WebKitBackForwardList +WebKitBackForwardListItem — One item of the WebKitBackForwardList
-WebKitSettingsControl the behaviour of WebKitWebViews +WebKitSettings — Control the behaviour of WebKitWebViews
WebKitURIRequest — Represents a URI request @@ -46,7 +46,7 @@ WebKitURIResponse — Represents a URI response
-WebKitWindowPropertiesWindow properties of a WebKitWebView +WebKitWindowProperties — Window properties of a WebKitWebView
WebKitDownload — Object used to communicate with the application when downloading @@ -85,10 +85,10 @@ WebKitFileChooserRequest — A request to open a file chooser
-WebKitFindControllerControls text search in a WebKitWebView +WebKitFindController — Controls text search in a WebKitWebView
-WebKitCookieManagerDefines how to handle cookies in a WebKitWebContext +WebKitCookieManager — Defines how to handle cookies in a WebKitWebContext
WebKitPlugin — Represents a plugin, enabling fine-grained control @@ -103,16 +103,16 @@ WebKitVersion
-WebKitContextMenuRepresents the context menu in a WebKitWebView +WebKitContextMenu — Represents the context menu in a WebKitWebView
-WebKitContextMenuItemOne item of the WebKitContextMenu +WebKitContextMenuItem — One item of the WebKitContextMenu
WebKitFormSubmissionRequest — Represents a form submission request
-WebKitSecurityManagerControls security settings in a WebKitWebContext +WebKitSecurityManager — Controls security settings in a WebKitWebContext
WebKitWebViewGroup — Group of web views @@ -143,7 +143,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/index.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/html/index.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/index.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/index.sgml 1970-01-01 00:00:00.000000000 +0000 @@ -1,990 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/style.css webkitgtk-2.4.10/Documentation/webkit2gtk/html/style.css --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/style.css 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/style.css 2016-03-14 08:06:04.000000000 +0000 @@ -60,7 +60,7 @@ div.informaltable table { border-collapse: separate; - border-spacing: 1em 0.5em; + border-spacing: 1em 0.3em; border: none; } @@ -148,6 +148,8 @@ h4 { color: #555753; + margin-top: 1em; + margin-bottom: 1em; } hr @@ -166,17 +168,16 @@ padding-bottom: 0.25em; } -dl.toc > dd > dl > dt +dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; + font-weight: bold; } -dl.toc > dt +dl.toc > dl { - padding-top: 1em; padding-bottom: 0.5em; - font-weight: bold; } .parameter @@ -346,7 +347,9 @@ } @media screen { - sup a.footnote + /* these have a as a first child, but since there are no parent selectors + * we can't use that. */ + a.footnote { position: relative; top: 0em ! important; diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk.devhelp2 webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk.devhelp2 --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk.devhelp2 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk.devhelp2 2016-03-14 08:06:04.000000000 +0000 @@ -1,5 +1,4 @@ - @@ -525,12 +524,12 @@ - + @@ -611,10 +610,10 @@ + - @@ -693,5 +692,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk-WebKitError.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk-WebKitError.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk-WebKitError.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk-WebKitError.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitError - +WebKitError: WebKit2GTK+ Reference Manual + - + @@ -33,7 +33,7 @@

Functions

-
+
@@ -100,7 +100,7 @@

Types and Values

-
+
@@ -177,10 +177,6 @@ webkit_network_error_quark (void);

-
-

Returns

-

-

@@ -189,10 +185,6 @@ webkit_plugin_error_quark (void);

-
-

Returns

-

-

@@ -201,10 +193,6 @@ webkit_policy_error_quark (void);

-
-

Returns

-

-

@@ -213,10 +201,6 @@ webkit_download_error_quark (void);

-
-

Returns

-

-

@@ -225,10 +209,6 @@ webkit_print_error_quark (void);

-
-

Returns

-

-

@@ -237,10 +217,6 @@ webkit_javascript_error_quark (void);

-
-

Returns

-

-

@@ -249,10 +225,6 @@ webkit_snapshot_error_quark (void);

-
-

Returns

-

-
@@ -317,8 +289,8 @@

enum WebKitNetworkError

Enum values used to denote the various network errors.

-

Members

-
+

Members

+
@@ -369,8 +341,8 @@

enum WebKitPluginError

Enum values used to denote the various plugin errors.

-

Members

-
+

Members

+
@@ -428,8 +400,8 @@

enum WebKitPolicyError

Enum values used to denote the various policy errors.

-

Members

-
+

Members

+
@@ -480,8 +452,8 @@

enum WebKitDownloadError

Enum values used to denote the various download errors.

-

Members

-
+

Members

+
@@ -518,8 +490,8 @@

enum WebKitPrintError

Enum values used to denote the various print errors.

-

Members

-
+

Members

+
@@ -556,8 +528,8 @@

enum WebKitJavascriptError

Enum values used to denote errors happending when executing Javascript

-

Members

-
+

Members

+
@@ -578,8 +550,8 @@

enum WebKitSnapshotError

Enum values used to denote errors happending when creating snapshots of WebKitWebView

-

Members

-
+

Members

+
@@ -598,7 +570,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk-WebKitVersion.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk-WebKitVersion.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/webkit2gtk-WebKitVersion.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/webkit2gtk-WebKitVersion.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitVersion - +WebKitVersion: WebKit2GTK+ Reference Manual + - + @@ -33,7 +33,7 @@

Functions

-
+
@@ -65,21 +65,32 @@ - + + +
#defineWEBKIT_MAJOR_VERSION +WEBKIT_CHECK_VERSION() +
+
+
+

Types and Values

+ @@ -97,10 +108,6 @@ webkit_get_major_version (void);

-
-

Returns

-

-

@@ -109,10 +116,6 @@ webkit_get_minor_version (void);

-
-

Returns

-

-

@@ -121,45 +124,14 @@ webkit_get_micro_version (void);

-
-

Returns

-

-
-
-
-
-

WEBKIT_MAJOR_VERSION

-
#define WEBKIT_MAJOR_VERSION (2)
-
-

Like webkit_get_major_version(), but from the headers used at -application compile time, rather than from the library linked -against at application run time.

-
-
-
-

WEBKIT_MINOR_VERSION

-
#define WEBKIT_MINOR_VERSION (4)
-
-

Like webkit_get_minor_version(), but from the headers used at -application compile time, rather than from the library linked -against at application run time.

-
-
-
-

WEBKIT_MICRO_VERSION

-
#define WEBKIT_MICRO_VERSION (9)
-
-

Like webkit_get_micro_version(), but from the headers used at -application compile time, rather than from the library linked -against at application run time.


WEBKIT_CHECK_VERSION()

#define             WEBKIT_CHECK_VERSION(major, minor, micro)
-

Parameters

-
+

Parameters

+
@@ -185,19 +157,43 @@
-

Returns

+

Returns

TRUE if the version of the WebKit header files is the same as or newer than the passed-in version.

-

Types and Values

+
+

WEBKIT_MAJOR_VERSION

+
#define WEBKIT_MAJOR_VERSION (2)
+
+

Like webkit_get_major_version(), but from the headers used at +application compile time, rather than from the library linked +against at application run time.

+
+
+

WEBKIT_MINOR_VERSION

+
#define WEBKIT_MINOR_VERSION (4)
+
+

Like webkit_get_minor_version(), but from the headers used at +application compile time, rather than from the library linked +against at application run time.

- +
+

WEBKIT_MICRO_VERSION

+
#define WEBKIT_MICRO_VERSION (10)
+
+

Like webkit_get_micro_version(), but from the headers used at +application compile time, rather than from the library linked +against at application run time.

+
+
+ + \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitAuthenticationRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitAuthenticationRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitAuthenticationRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitAuthenticationRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitAuthenticationRequest - +WebKitAuthenticationRequest: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -178,7 +178,7 @@

Signals

-
+
@@ -193,7 +193,7 @@

Types and Values

-
+
@@ -222,7 +222,7 @@

Object Hierarchy

    GBoxed
     ╰── WebKitCredential
-    GObject
+    GObject
     ╰── WebKitAuthenticationRequest
 
@@ -252,8 +252,8 @@ supplied. To continue without credentials, pass NULL as credential .

-

Parameters

-
+

Parameters

+
@@ -273,7 +273,7 @@
-

Since 2.2

+

Since: 2.2


@@ -283,8 +283,8 @@

Cancel the authentication challenge. This will also cancel the page loading and result in a “load-failed” signal with a WebKitNetworkError of type WEBKIT_NETWORK_ERROR_CANCELLED being emitted.

-

Parameters

-
+

Parameters

+
@@ -297,7 +297,7 @@
-

Since 2.2

+

Since: 2.2


@@ -310,8 +310,8 @@ This will return FALSE if webkit doesn't support credential storing or if private browsing is enabled.

-

Parameters

-
+

Parameters

+
@@ -325,11 +325,10 @@
-

Returns

+

Returns

TRUE if webkit can store credentials or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -339,8 +338,8 @@ (WebKitAuthenticationRequest *request);

Get the host that this authentication challenge is applicable to.

-

Parameters

-
+

Parameters

+
@@ -354,12 +353,11 @@
-

Returns

+

Returns

The host of request .

-

-

Since 2.2

+

Since: 2.2


@@ -369,8 +367,8 @@ (WebKitAuthenticationRequest *request);

Get the port that this authentication challenge is applicable to.

-

Parameters

-
+

Parameters

+
@@ -384,12 +382,11 @@
-

Returns

+

Returns

The port of request .

-

-

Since 2.2

+

Since: 2.2


@@ -399,8 +396,8 @@ (WebKitAuthenticationRequest *request);

Determine whether this this is a first attempt or a retry for this authentication challenge.

-

Parameters

-
+

Parameters

+
@@ -414,11 +411,10 @@
-

Returns

+

Returns

TRUE if authentication attempt is a retry or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -430,8 +426,8 @@ stored from a previous session. The client can use this directly for authentication or construct their own WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -445,12 +441,12 @@
-

Returns

+

Returns

A WebKitCredential encapsulating credential details or NULL if there is no stored credential.

[transfer full]

-

Since 2.2

+

Since: 2.2


@@ -460,8 +456,8 @@ (WebKitAuthenticationRequest *request);

Get the realm that this authentication challenge is applicable to.

-

Parameters

-
+

Parameters

+
@@ -475,12 +471,11 @@
-

Returns

+

Returns

The realm of request .

-

-

Since 2.2

+

Since: 2.2


@@ -490,8 +485,8 @@ (WebKitAuthenticationRequest *request);

Get the authentication scheme of the authentication challenge.

-

Parameters

-
+

Parameters

+
@@ -505,12 +500,11 @@
-

Returns

+

Returns

The WebKitAuthenticationScheme of request .

-

-

Since 2.2

+

Since: 2.2


@@ -520,8 +514,8 @@ (WebKitAuthenticationRequest *request);

Determine whether the authentication challenge is associated with a proxy server rather than an "origin" server.

-

Parameters

-
+

Parameters

+
@@ -535,11 +529,10 @@
-

Returns

+

Returns

TRUE if authentication is for a proxy or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -550,8 +543,8 @@ WebKitCredentialPersistence persistence);

Create a new credential from the provided username, password and persistence mode.

-

Parameters

-
+

Parameters

+
@@ -577,11 +570,11 @@
-

Returns

+

Returns

A WebKitCredential.

[transfer full]

-

Since 2.2

+

Since: 2.2


@@ -590,8 +583,8 @@ webkit_credential_copy (WebKitCredential *credential);

Make a copy of the WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -605,11 +598,11 @@
-

Returns

+

Returns

A copy of passed in WebKitCredential.

[transfer full]

-

Since 2.2

+

Since: 2.2


@@ -618,8 +611,8 @@ webkit_credential_free (WebKitCredential *credential);

Free the WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -632,7 +625,7 @@
-

Since 2.2

+

Since: 2.2


@@ -641,8 +634,8 @@ webkit_credential_get_password (WebKitCredential *credential);

Get the password currently held by this WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -656,11 +649,10 @@
-

Returns

+

Returns

The password stored in the WebKitCredential.

-

-

Since 2.2

+

Since: 2.2


@@ -669,8 +661,8 @@ webkit_credential_get_persistence (WebKitCredential *credential);

Get the persistence mode currently held by this WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -684,11 +676,10 @@
-

Returns

+

Returns

The WebKitCredentialPersistence stored in the WebKitCredential.

-

-

Since 2.2

+

Since: 2.2


@@ -697,8 +688,8 @@ webkit_credential_get_username (WebKitCredential *credential);

Get the username currently held by this WebKitCredential.

-

Parameters

-
+

Parameters

+
@@ -712,11 +703,10 @@
-

Returns

+

Returns

The username stored in the WebKitCredential.

-

-

Since 2.2

+

Since: 2.2


@@ -725,8 +715,8 @@ webkit_credential_has_password (WebKitCredential *credential);

Determine whether this credential has a password stored.

-

Parameters

-
+

Parameters

+
@@ -740,11 +730,10 @@
-

Returns

+

Returns

TRUE if the credential has a password or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2

@@ -760,8 +749,8 @@

enum WebKitAuthenticationScheme

Enum values representing the authentication scheme.

-

Members

-
+

Members

+
@@ -834,7 +823,7 @@
-

Since 2.2

+

Since: 2.2


@@ -848,8 +837,8 @@

enum WebKitCredentialPersistence

Enum values representing the duration for which a credential persists.

-

Members

-
+

Members

+
@@ -880,7 +869,7 @@
-

Since 2.2

+

Since: 2.2

@@ -894,8 +883,8 @@ cancelled. It allows the application to dismiss its authentication dialog in case of page load failure for example.

-

Parameters

-
+

Parameters

+
@@ -916,7 +905,7 @@

Flags: Run Last

-

Since 2.2

+

Since: 2.2

@@ -925,7 +914,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitBackForwardList.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitBackForwardList.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitBackForwardList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitBackForwardList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitBackForwardList - +WebKitBackForwardList: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -118,7 +118,7 @@

Signals

-
+
@@ -133,7 +133,7 @@

Types and Values

-
+
@@ -146,7 +146,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitBackForwardList
 
@@ -172,8 +172,8 @@
guint
 webkit_back_forward_list_get_length (WebKitBackForwardList *back_forward_list);
-

Parameters

-
+

Parameters

+
@@ -187,10 +187,9 @@
-

Returns

+

Returns

the length of back_forward_list .

-


@@ -202,8 +201,8 @@

Returns the current item in back_forward_list .

-

Parameters

-
+

Parameters

+
@@ -217,7 +216,7 @@
-

Returns

+

Returns

a WebKitBackForwardListItem or NULL if back_forward_list is empty.

@@ -232,8 +231,8 @@ (WebKitBackForwardList *back_forward_list);

Returns the item that precedes the current item.

-

Parameters

-
+

Parameters

+
@@ -247,7 +246,7 @@
-

Returns

+

Returns

the WebKitBackForwardListItem preceding the current item or NULL.

[transfer none]

@@ -261,8 +260,8 @@ (WebKitBackForwardList *back_forward_list);

Returns the item that follows the current item.

-

Parameters

-
+

Parameters

+
@@ -276,7 +275,7 @@
-

Returns

+

Returns

the WebKitBackForwardListItem following the current item or NULL.

[transfer none]

@@ -290,8 +289,8 @@ gint index);

Returns the item at a given index relative to the current item.

-

Parameters

-
+

Parameters

+
@@ -312,7 +311,7 @@
-

Returns

+

Returns

the WebKitBackForwardListItem located at the specified index relative to the current item.

[transfer none]

@@ -325,8 +324,8 @@ webkit_back_forward_list_get_back_list (WebKitBackForwardList *back_forward_list);
-

Parameters

-
+

Parameters

+
@@ -340,7 +339,7 @@
-

Returns

+

Returns

a GList of items preceding the current item.

[element-type WebKit2.BackForwardListItem][transfer container]

@@ -354,8 +353,8 @@ (WebKitBackForwardList *back_forward_list, guint limit);
-

Parameters

-
+

Parameters

+
@@ -376,7 +375,7 @@
-

Returns

+

Returns

a GList of items preceding the current item limited by limit .

@@ -390,8 +389,8 @@ webkit_back_forward_list_get_forward_list (WebKitBackForwardList *back_forward_list);
-

Parameters

-
+

Parameters

+
@@ -405,7 +404,7 @@
-

Returns

+

Returns

a GList of items following the current item.

[element-type WebKit2.BackForwardListItem][transfer container]

@@ -419,8 +418,8 @@ (WebKitBackForwardList *back_forward_list, guint limit);
-

Parameters

-
+

Parameters

+
@@ -441,7 +440,7 @@
-

Returns

+

Returns

a GList of items following the current item limited by limit .

@@ -476,8 +475,8 @@ NULL when only the current item is updated. Items are only removed when the list is cleared or the maximum items limit is reached.

-

Parameters

-
+

Parameters

+
@@ -516,7 +515,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitBackForwardListItem.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitBackForwardListItem.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitBackForwardListItem.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitBackForwardListItem.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitBackForwardListItem - +WebKitBackForwardListItem: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -66,7 +66,7 @@

Types and Values

-
+
@@ -79,7 +79,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── GInitiallyUnowned
         ╰── WebKitBackForwardListItem
 
@@ -97,8 +97,8 @@ webkit_back_forward_list_item_get_title (WebKitBackForwardListItem *list_item);
-

Parameters

-
+

Parameters

+
@@ -112,11 +112,10 @@
-

Returns

+

Returns

the page title of list_item or NULL when the title is empty.

-


@@ -128,8 +127,8 @@ for example, redirected to a new location. See also webkit_back_forward_list_item_get_original_uri().

-

Parameters

-
+

Parameters

+
@@ -143,11 +142,10 @@
-

Returns

+

Returns

the URI of list_item or NULL when the URI is empty.

-


@@ -158,8 +156,8 @@ (WebKitBackForwardListItem *list_item);

See also webkit_back_forward_list_item_get_uri().

-

Parameters

-
+

Parameters

+
@@ -173,11 +171,10 @@
-

Returns

+

Returns

the original URI of list_item or NULL when the original URI is empty.

-

@@ -196,7 +193,6 @@
+
Generated by GTK-Doc V1.24.1
\ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitCertificateInfo.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitCertificateInfo.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitCertificateInfo.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitCertificateInfo.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitCertificateInfo - +WebKitCertificateInfo: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -58,7 +58,7 @@
-GTlsCertificate * +GTlsCertificate * webkit_certificate_info_get_tls_certificate () @@ -77,7 +77,7 @@

Types and Values

-
+
@@ -110,8 +110,8 @@ webkit_certificate_info_copy (WebKitCertificateInfo *info);

Make a copy of the WebKitCertificateInfo.

-

Parameters

-
+

Parameters

+
@@ -125,11 +125,11 @@
-

Returns

+

Returns

A copy of passed in WebKitCertificateInfo.

[transfer full]

-

Since 2.4

+

Since: 2.4


@@ -138,8 +138,8 @@ webkit_certificate_info_free (WebKitCertificateInfo *info);

Free the WebKitCertificateInfo.

-

Parameters

-
+

Parameters

+
@@ -152,19 +152,19 @@
-

Since 2.4

+

Since: 2.4


webkit_certificate_info_get_tls_certificate ()

-
GTlsCertificate *
+
GTlsCertificate *
 webkit_certificate_info_get_tls_certificate
                                (WebKitCertificateInfo *info);
-

Get the GTlsCertificate associated with this +

Get the GTlsCertificate associated with this WebKitCertificateInfo.

-

Parameters

-
+

Parameters

+
@@ -178,12 +178,12 @@
-

Returns

+

Returns

The certificate of info .

[transfer none]

-

Since 2.4

+

Since: 2.4


@@ -194,8 +194,8 @@

Get the GTlsCertificateFlags verification status associated with this WebKitCertificateInfo.

-

Parameters

-
+

Parameters

+
@@ -209,12 +209,11 @@
-

Returns

+

Returns

The verification status of info .

-

-

Since 2.4

+

Since: 2.4

@@ -232,7 +231,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitContextMenu.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitContextMenu.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitContextMenu.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitContextMenu.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitContextMenu - +WebKitContextMenu: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -149,7 +149,7 @@

Types and Values

-
+
@@ -162,7 +162,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitContextMenu
 
@@ -193,9 +193,8 @@ See also webkit_context_menu_new_with_items() to create a WebKitContextMenu with a list of initial items.

-

Returns

+

Returns

The newly created WebKitContextMenu object

-


@@ -207,8 +206,8 @@ WebKitContextMenu with the given initial items. See also webkit_context_menu_new()

-

Parameters

-
+

Parameters

+
@@ -222,9 +221,8 @@
-

Returns

+

Returns

The newly created WebKitContextMenu object

-


@@ -237,8 +235,8 @@ at the beginning of the menu .

-

Parameters

-
+

Parameters

+
@@ -269,8 +267,8 @@ at the end of the menu .

-

Parameters

-
+

Parameters

+
@@ -307,8 +305,8 @@ the menu . The first position is 0.

-

Parameters

-
+

Parameters

+
@@ -351,8 +349,8 @@ . The first position is 0.

-

Parameters

-
+

Parameters

+
@@ -386,8 +384,8 @@

Returns the item list of menu .

-

Parameters

-
+

Parameters

+
@@ -401,7 +399,7 @@
-

Returns

+

Returns

a GList of WebKitContextMenuItems.

[element-type WebKitContextMenuItem][transfer none]

@@ -415,8 +413,8 @@

Gets the length of the menu .

-

Parameters

-
+

Parameters

+
@@ -430,10 +428,9 @@
-

Returns

+

Returns

the number of WebKitContextMenuItems in menu

-


@@ -444,8 +441,8 @@

Gets the first item in the menu .

-

Parameters

-
+

Parameters

+
@@ -459,7 +456,7 @@
-

Returns

+

Returns

the first WebKitContextMenuItem of menu , or NULL if the WebKitContextMenu is empty.

@@ -474,8 +471,8 @@

Gets the last item in the menu .

-

Parameters

-
+

Parameters

+
@@ -489,7 +486,7 @@
-

Returns

+

Returns

the last WebKitContextMenuItem of menu , or NULL if the WebKitContextMenu is empty.

@@ -506,8 +503,8 @@

Gets the item at the given position in the menu .

-

Parameters

-
+

Parameters

+
@@ -528,7 +525,7 @@
-

Returns

+

Returns

the WebKitContextMenuItem at position position in menu , @@ -548,8 +545,8 @@ . See also webkit_context_menu_remove_all() to remove all items.

-

Parameters

-
+

Parameters

+
@@ -578,8 +575,8 @@

Removes all items of the menu .

-

Parameters

-
+

Parameters

+
@@ -605,7 +602,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitContextMenuItem.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitContextMenuItem.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitContextMenuItem.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitContextMenuItem.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitContextMenuItem - +WebKitContextMenuItem: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -82,7 +82,7 @@
-GtkAction * +GtkAction * webkit_context_menu_item_get_action () @@ -125,7 +125,7 @@

Types and Values

-
+
@@ -144,14 +144,14 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── GInitiallyUnowned
         ╰── WebKitContextMenuItem
 

Description

-

The WebKitContextMenu is composed of WebKitContextMenuItems. These items can be created from a GtkAction, from a +

The WebKitContextMenu is composed of WebKitContextMenuItems. These items can be created from a GtkAction, from a WebKitContextMenuAction or from a WebKitContextMenuAction and a label. These WebKitContextMenuActions denote stock actions for the items. You can also create separators and submenus.

@@ -161,12 +161,12 @@

webkit_context_menu_item_new ()

WebKitContextMenuItem *
-webkit_context_menu_item_new (GtkAction *action);
+webkit_context_menu_item_new (GtkAction *action);

Creates a new WebKitContextMenuItem for the given action .

-

Parameters

-
+

Parameters

+
@@ -174,15 +174,14 @@ - +

action

a GtkAction

a GtkAction

 
-

Returns

+

Returns

the newly created WebKitContextMenuItem object.

-


@@ -195,14 +194,14 @@ Stock actions are handled automatically by WebKit so that, for example, when a menu item created with a WEBKIT_CONTEXT_MENU_ACTION_STOP is activated the action associated will be handled by WebKit and the current -load operation will be stopped. You can get the GtkAction of a +load operation will be stopped. You can get the GtkAction of a WebKitContextMenuItem created with a WebKitContextMenuAction with -webkit_context_menu_item_get_action() and connect to “activate” signal +webkit_context_menu_item_get_action() and connect to “activate” signal to be notified when the item is activated. But you can't prevent the asociated action from being performed.

-

Parameters

-
+

Parameters

+
@@ -216,9 +215,8 @@
-

Returns

+

Returns

the newly created WebKitContextMenuItem object.

-


@@ -233,8 +231,8 @@ Stock actions have a predefined label, this method can be used to create a WebKitContextMenuItem for a WebKitContextMenuAction but using a custom label.

-

Parameters

-
+

Parameters

+
@@ -255,9 +253,8 @@
-

Returns

+

Returns

the newly created WebKitContextMenuItem object.

-


@@ -270,8 +267,8 @@

Creates a new WebKitContextMenuItem using the given label with a submenu.

-

Parameters

-
+

Parameters

+
@@ -292,9 +289,8 @@
-

Returns

+

Returns

the newly created WebKitContextMenuItem object.

-


@@ -305,21 +301,20 @@ (void);

Creates a new WebKitContextMenuItem representing a separator.

-

Returns

+

Returns

the newly created WebKitContextMenuItem object.

-


webkit_context_menu_item_get_action ()

-
GtkAction *
+
GtkAction *
 webkit_context_menu_item_get_action (WebKitContextMenuItem *item);

Gets the action associated to item .

-

Parameters

-
+

Parameters

+
@@ -333,8 +328,8 @@
-

Returns

-

the GtkAction associated to the WebKitContextMenuItem, +

Returns

+

the GtkAction associated to the WebKitContextMenuItem, or NULL if item is a separator.

[transfer none]

@@ -352,8 +347,8 @@ returned. If the WebKitContextMenuItem is a separator WEBKIT_CONTEXT_MENU_ACTION_NO_ACTION will be returned.

-

Parameters

-
+

Parameters

+
@@ -367,10 +362,9 @@
-

Returns

+

Returns

the WebKitContextMenuAction of item

-


@@ -381,8 +375,8 @@

Checks whether item is a separator.

-

Parameters

-
+

Parameters

+
@@ -396,10 +390,9 @@
-

Returns

+

Returns

TRUE is item is a separator or FALSE otherwise

-


@@ -414,8 +407,8 @@ submenu of item is removed.

-

Parameters

-
+

Parameters

+
@@ -444,8 +437,8 @@

Gets the submenu of item .

-

Parameters

-
+

Parameters

+
@@ -459,7 +452,7 @@
-

Returns

+

Returns

the WebKitContextMenu representing the submenu of item or NULL if item @@ -482,8 +475,8 @@

Enum values used to denote the stock actions for WebKitContextMenuItems

-

Members

-
+

Members

+
@@ -812,7 +805,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitCookieManager.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitCookieManager.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitCookieManager.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitCookieManager.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitCookieManager - +WebKitCookieManager: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -110,7 +110,7 @@

Signals

-
+
@@ -125,7 +125,7 @@

Types and Values

-
+
@@ -148,7 +148,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitCookieManager
 
@@ -185,8 +185,8 @@ doesn't store the cookies persistenly, so you need to call this method to keep cookies saved across sessions.

-

Parameters

-
+

Parameters

+
@@ -223,8 +223,8 @@ as policy .

-

Parameters

-
+

Parameters

+
@@ -251,7 +251,7 @@
void
 webkit_cookie_manager_get_accept_policy
                                (WebKitCookieManager *cookie_manager,
-                                GCancellable *cancellable,
+                                GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
                                 gpointer user_data);

Asynchronously get the cookie acceptance policy of cookie_manager @@ -260,8 +260,8 @@ will be called. You can then call webkit_cookie_manager_get_accept_policy_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -275,7 +275,7 @@ - + @@ -298,12 +298,12 @@
WebKitCookieAcceptPolicy
 webkit_cookie_manager_get_accept_policy_finish
                                (WebKitCookieManager *cookie_manager,
-                                GAsyncResult *result,
+                                GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_cookie_manager_get_accept_policy().

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -317,7 +317,7 @@ - + @@ -329,10 +329,9 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

the cookie acceptance policy of cookie_manager as a WebKitCookieAcceptPolicy.

-


@@ -341,7 +340,7 @@
void
 webkit_cookie_manager_get_domains_with_cookies
                                (WebKitCookieManager *cookie_manager,
-                                GCancellable *cancellable,
+                                GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
                                 gpointer user_data);

Asynchronously get the list of domains for which cookie_manager @@ -350,8 +349,8 @@ will be called. You can then call webkit_cookie_manager_get_domains_with_cookies_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -365,7 +364,7 @@ - + @@ -388,14 +387,14 @@
gchar **
 webkit_cookie_manager_get_domains_with_cookies_finish
                                (WebKitCookieManager *cookie_manager,
-                                GAsyncResult *result,
+                                GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_cookie_manager_get_domains_with_cookies(). The return value is a NULL terminated list of strings which should be released with g_strfreev().

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -409,7 +408,7 @@ - + @@ -421,7 +420,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

A NULL terminated array of domain names or NULL in case of error.

[transfer full][array zero-terminated=1]

@@ -438,8 +437,8 @@ for the given domain .

-

Parameters

-
+

Parameters

+
@@ -469,8 +468,8 @@

Delete all cookies of cookie_manager

-

Parameters

-
+

Parameters

+
@@ -498,8 +497,8 @@

enum WebKitCookiePersistentStorage

Enum values used to denote the cookie persistent storage types.

-

Members

-
+

Members

+
@@ -531,8 +530,8 @@

enum WebKitCookieAcceptPolicy

Enum values used to denote the cookie acceptance policies.

-

Members

-
+

Members

+
@@ -574,8 +573,8 @@ gpointer user_data)

This signal is emitted when cookies are added, removed or modified.

-

Parameters

-
+

Parameters

+
@@ -600,7 +599,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitDownload.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitDownload.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitDownload.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitDownload.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitDownload - +WebKitDownload: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -118,7 +118,7 @@

Properties

-
+
@@ -147,7 +147,7 @@

Signals

-
+
@@ -184,7 +184,7 @@

Types and Values

-
+
@@ -197,7 +197,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitDownload
 
@@ -218,8 +218,8 @@

Retrieves the WebKitURIRequest object that backs the download process.

-

Parameters

-
+

Parameters

+
@@ -233,7 +233,7 @@
-

Returns

+

Returns

the WebKitURIRequest of download .

[transfer none]

@@ -248,8 +248,8 @@ can connect to “created-destination” to make sure this method returns a valid destination.

-

Parameters

-
+

Parameters

+
@@ -263,9 +263,8 @@
-

Returns

+

Returns

the destination URI or NULL

-


@@ -288,8 +287,8 @@ the file will be saved with the filename suggested by the server in G_USER_DIRECTORY_DOWNLOAD directory.

-

Parameters

-
+

Parameters

+
@@ -320,8 +319,8 @@ is received from the server. You can connect to notify::response signal to be notified when the response is received.

-

Parameters

-
+

Parameters

+
@@ -335,7 +334,7 @@
-

Returns

+

Returns

the WebKitURIResponse, or NULL if the response hasn't been received yet.

[transfer none]

@@ -351,8 +350,8 @@ “failed” is emitted with WEBKIT_DOWNLOAD_ERROR_CANCELLED_BY_USER error.

-

Parameters

-
+

Parameters

+
@@ -377,8 +376,8 @@ connecting to the notify::estimated-progress signal of download .

-

Parameters

-
+

Parameters

+
@@ -392,10 +391,9 @@
-

Returns

+

Returns

an estimate of the of the percent complete for a download as a range from 0.0 to 1.0.

-


@@ -407,8 +405,8 @@ If the download finished, had an error or was cancelled this is the time between its start and the event.

-

Parameters

-
+

Parameters

+
@@ -422,9 +420,8 @@
-

Returns

+

Returns

seconds since the download was started

-


@@ -437,8 +434,8 @@ in bytes.

-

Parameters

-
+

Parameters

+
@@ -452,9 +449,8 @@
-

Returns

+

Returns

the amount of bytes already downloaded.

-


@@ -464,8 +460,8 @@ webkit_download_get_web_view (WebKitDownload *download);

Get the WebKitWebView that initiated the download.

-

Parameters

-
+

Parameters

+
@@ -479,7 +475,7 @@
-

Returns

+

Returns

the WebKitWebView that initiated download , or NULL if download @@ -541,8 +537,8 @@ created successfully at destination .

-

Parameters

-
+

Parameters

+
@@ -582,8 +578,8 @@ directory using suggested_filename .

-

Parameters

-
+

Parameters

+
@@ -609,10 +605,9 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

@@ -631,8 +626,8 @@ WEBKIT_DOWNLOAD_ERROR_CANCELLED_BY_USER. The download operation finishes after an error and “finished” signal is emitted after this one.

-

Parameters

-
+

Parameters

+
@@ -668,8 +663,8 @@

This signal is emitted when download finishes successfully or due to an error. In case of errors “failed” signal is emitted before this one.

-

Parameters

-
+

Parameters

+
@@ -702,8 +697,8 @@ every time new data has been written to the destination. It's useful to know the progress of the download operation.

-

Parameters

-
+

Parameters

+
@@ -733,7 +728,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFaviconDatabase.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFaviconDatabase.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFaviconDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFaviconDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitFaviconDatabase - +WebKitFaviconDatabase: WebKit2GTK+ Reference Manual + - + @@ -35,17 +35,13 @@

Functions

-
+
- - - - @@ -82,7 +78,7 @@

Signals

-
#defineWEBKIT_FAVICON_DATABASE_ERROR
void
+
@@ -97,7 +93,7 @@

Types and Values

-
+
@@ -108,6 +104,10 @@ + + + + @@ -116,7 +116,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitFaviconDatabase
 
@@ -136,19 +136,11 @@

Functions

-

WEBKIT_FAVICON_DATABASE_ERROR

-
#define WEBKIT_FAVICON_DATABASE_ERROR           (webkit_favicon_database_error_quark())
-
-

-

-
-
-

webkit_favicon_database_get_favicon ()

void
 webkit_favicon_database_get_favicon (WebKitFaviconDatabase *database,
                                      const gchar *page_uri,
-                                     GCancellable *cancellable,
+                                     GCancellable *cancellable,
                                      GAsyncReadyCallback callback,
                                      gpointer user_data);

Asynchronously obtains a cairo_surface_t of the favicon for the @@ -158,8 +150,8 @@ be invoked. You can then call webkit_favicon_database_get_favicon_finish() to get the result of the operation.

-

Parameters

-
WebKitFaviconDatabase
#defineWEBKIT_FAVICON_DATABASE_ERROR
enum WebKitFaviconDatabaseError
+

Parameters

+
@@ -178,7 +170,7 @@ - + @@ -203,12 +195,12 @@
cairo_surface_t *
 webkit_favicon_database_get_favicon_finish
                                (WebKitFaviconDatabase *database,
-                                GAsyncResult *result,
+                                GAsyncResult *result,
                                 GError **error);

Finishes an operation started with webkit_favicon_database_get_favicon().

-

Parameters

-

cancellable

A GCancellable or NULL.

A GCancellable or NULL.

[allow-none]
+

Parameters

+
@@ -222,7 +214,7 @@ - + @@ -234,7 +226,7 @@

result

A GAsyncResult obtained from the GAsyncReadyCallback passed to webkit_favicon_database_get_favicon()

A GAsyncResult obtained from the GAsyncReadyCallback passed to webkit_favicon_database_get_favicon()

 
-

Returns

+

Returns

a new reference to a cairo_surface_t, or NULL in case of error.

[transfer full]

@@ -250,8 +242,8 @@

Obtains the URI of the favicon for the given page_uri .

-

Parameters

-
+

Parameters

+
@@ -272,11 +264,10 @@
-

Returns

+

Returns

a newly allocated URI for the favicon, or NULL if the database doesn't have a favicon for page_uri .

-


@@ -286,8 +277,8 @@ webkit_favicon_database_clear (WebKitFaviconDatabase *database);

Clears all icons from the database.

-

Parameters

-
+

Parameters

+
@@ -312,11 +303,19 @@
+

WEBKIT_FAVICON_DATABASE_ERROR

+
#define WEBKIT_FAVICON_DATABASE_ERROR           (webkit_favicon_database_error_quark())
+
+

+

+
+
+

enum WebKitFaviconDatabaseError

Enum values used to denote the various errors related to the WebKitFaviconDatabase.

-

Members

-
+

Members

+
@@ -367,8 +366,8 @@ WebKitWebView it's easier to use the “favicon” property. See webkit_web_view_get_favicon() for more details.

-

Parameters

-
+

Parameters

+
@@ -403,7 +402,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFileChooserRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFileChooserRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFileChooserRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFileChooserRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitFileChooserRequest - +WebKitFileChooserRequest: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -50,7 +50,7 @@
-GtkFileFilter * +GtkFileFilter * webkit_file_chooser_request_get_mime_types_filter () @@ -92,7 +92,7 @@

Properties

-
+
@@ -101,7 +101,7 @@ +GtkFileFilter * @@ -125,7 +125,7 @@

Types and Values

-
-GtkFileFilter * filter Read
+
@@ -138,7 +138,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitFileChooserRequest
 
@@ -148,7 +148,7 @@ HTML element, WebKit will need to show a dialog to choose one or more files to be uploaded to the server along with the rest of the form data. For that to happen in a general way, instead of just -opening a GtkFileChooserDialog (which might be not desirable in +opening a GtkFileChooserDialog (which might be not desirable in some cases, which could prefer to use their own file chooser dialog), WebKit will fire the “run-file-chooser” signal with a WebKitFileChooserRequest object, which will allow @@ -158,7 +158,7 @@ selected.

In case the client application does not wish to handle this signal, WebKit will provide a default handler which will asynchronously run -a regular GtkFileChooserDialog for the user to interact with.

+a regular GtkFileChooserDialog for the user to interact with.

Functions

@@ -174,8 +174,8 @@ the file chooser dialog to the user, to decide whether to allow the user to select multiple files at once or only one.

-

Parameters

-
+

Parameters

+
@@ -189,7 +189,7 @@
-

Returns

+

Returns

a NULL-terminated array of strings if a list of accepted MIME types is defined or NULL otherwise, meaning that any MIME type should be @@ -201,19 +201,19 @@


webkit_file_chooser_request_get_mime_types_filter ()

-
GtkFileFilter *
+
GtkFileFilter *
 webkit_file_chooser_request_get_mime_types_filter
                                (WebKitFileChooserRequest *request);

Get the filter currently associated with the request, ready to be -used by GtkFileChooser. This function should normally be called +used by GtkFileChooser. This function should normally be called before presenting the file chooser dialog to the user, to decide whether to apply a filter so the user would not be allowed to select files with other MIME types.

See webkit_file_chooser_request_get_mime_types() if you are interested in getting the list of accepted MIME types.

-

Parameters

-
+

Parameters

+
@@ -227,8 +227,8 @@
-

Returns

-

a GtkFileFilter if a list of accepted +

Returns

+

a GtkFileFilter if a list of accepted MIME types is defined or NULL otherwise. The returned object is owned by WebKitGTK+ should not be modified or freed.

[transfer none]

@@ -245,8 +245,8 @@ which depends on the HTML input element having a 'multiple' attribute defined.

-

Parameters

-
+

Parameters

+
@@ -260,9 +260,8 @@
-

Returns

+

Returns

TRUE if the file chooser should allow selecting multiple files or FALSE otherwise.

-


@@ -275,8 +274,8 @@

Ask WebKit to select local files for upload and complete the request.

-

Parameters

-
+

Parameters

+
@@ -313,8 +312,8 @@ file chooser dialog to the user, to decide whether to perform some extra action, like pre-selecting the files from a previous request.

-

Parameters

-
+

Parameters

+
@@ -328,7 +327,7 @@
-

Returns

+

Returns

a NULL-terminated array of strings if there are selected files associated with the request or NULL otherwise. This array and its @@ -347,8 +346,8 @@ won't be properly completed and the browser will keep the request pending forever, which might cause the browser to hang.

-

Parameters

-
+

Parameters

+
@@ -376,7 +375,7 @@

Property Details

The “filter” property

-
  “filter”                   GtkFileFilter *
+
  “filter”                   GtkFileFilter *

The filter currently associated with the request. See webkit_file_chooser_request_get_mime_types_filter() for more details.

@@ -418,7 +417,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFindController.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFindController.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFindController.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFindController.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitFindController - +WebKitFindController: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -118,7 +118,7 @@

Properties

-
+
@@ -152,7 +152,7 @@

Signals

-
+
@@ -179,7 +179,7 @@

Types and Values

-
+
@@ -198,7 +198,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitFindController
 
@@ -244,8 +244,8 @@

Callers should call webkit_find_controller_search_finish() to finish the current search operation.

-

Parameters

-
+

Parameters

+
@@ -287,8 +287,8 @@

This method will be typically called when the search UI is closed/hidden by the client application.

-

Parameters

-
+

Parameters

+
@@ -311,8 +311,8 @@

Calling this method before webkit_find_controller_search() or webkit_find_controller_count_matches() is a programming error.

-

Parameters

-
+

Parameters

+
@@ -336,8 +336,8 @@

Calling this method before webkit_find_controller_search() or webkit_find_controller_count_matches() is a programming error.

-

Parameters

-
+

Parameters

+
@@ -363,8 +363,8 @@ webkit_find_controller_search() or webkit_find_controller_count_matches().

-

Parameters

-
+

Parameters

+
@@ -378,9 +378,8 @@
-

Returns

+

Returns

the text to look for in the WebKitWebView.

-


@@ -398,8 +397,8 @@ matches will be provided by the “counted-matches” signal.

-

Parameters

-
+

Parameters

+
@@ -438,8 +437,8 @@

Gets a bitmask containing the WebKitFindOptions associated with the current search.

-

Parameters

-
+

Parameters

+
@@ -453,10 +452,9 @@
-

Returns

+

Returns

a bitmask containing the WebKitFindOptions associated with the current search.

-


@@ -470,8 +468,8 @@ webkit_find_controller_search() or webkit_find_controller_count_matches().

-

Parameters

-
+

Parameters

+
@@ -485,9 +483,8 @@
-

Returns

+

Returns

the maximum number of matches to report.

-


@@ -499,8 +496,8 @@ not unref the returned instance as it belongs to the WebKitFindController.

-

Parameters

-
+

Parameters

+
@@ -514,7 +511,7 @@
-

Returns

+

Returns

the WebKitWebView.

[transfer none]

@@ -533,8 +530,8 @@

enum WebKitFindOptions

Enum values used to specify search options.

-

Members

-
+

Members

+
@@ -636,8 +633,8 @@ counted the number of matches for a given text after a call to webkit_find_controller_count_matches().

-

Parameters

-
+

Parameters

+
@@ -676,8 +673,8 @@ webkit_find_controller_search(), webkit_find_controller_search_next() or webkit_find_controller_search_previous().

-

Parameters

-
+

Parameters

+
@@ -712,8 +709,8 @@ webkit_find_controller_search_next() or webkit_find_controller_search_previous().

-

Parameters

-
+

Parameters

+
@@ -743,7 +740,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFormSubmissionRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFormSubmissionRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFormSubmissionRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFormSubmissionRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitFormSubmissionRequest - +WebKitFormSubmissionRequest: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -61,7 +61,7 @@

Types and Values

-
+
@@ -74,7 +74,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitFormSubmissionRequest
 
@@ -99,8 +99,8 @@ associated to request .

-

Parameters

-
+

Parameters

+
@@ -114,7 +114,7 @@
-

Returns

+

Returns

a GHashTable with the form text fields, or NULL if the form doesn't contain text fields.

[transfer none]

@@ -127,8 +127,8 @@ webkit_form_submission_request_submit (WebKitFormSubmissionRequest *request);

Continue the form submission.

-

Parameters

-
+

Parameters

+
@@ -154,7 +154,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFrame.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFrame.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitFrame.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitFrame.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitFrame - +WebKitFrame: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -76,7 +76,7 @@

Types and Values

-
+
@@ -89,7 +89,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitFrame
 
@@ -107,8 +107,8 @@

Gets whether frame is the a main frame of a WebKitWebPage

-

Parameters

-
+

Parameters

+
@@ -122,12 +122,11 @@
-

Returns

+

Returns

TRUE if frame is a main frame or FALSE otherwise

-

-

Since 2.2

+

Since: 2.2


@@ -137,8 +136,8 @@

Gets the current active URI of frame .

-

Parameters

-
+

Parameters

+
@@ -152,13 +151,12 @@
-

Returns

+

Returns

the current active URI of frame or NULL if nothing has been loaded yet.

-

-

Since 2.2

+

Since: 2.2


@@ -169,8 +167,8 @@

Gets the global JavaScript execution context. Use this function to bridge between the WebKit and JavaScriptCore APIs.

-

Parameters

-
+

Parameters

+
@@ -184,12 +182,12 @@
-

Returns

+

Returns

the global JavaScript context of frame .

[transfer none]

-

Since 2.2

+

Since: 2.2


@@ -201,8 +199,8 @@

Gets the JavaScript execution context of frame for the given WebKitScriptWorld.

-

Parameters

-
+

Parameters

+
@@ -223,13 +221,13 @@
-

Returns

+

Returns

the JavaScript context of frame for world .

[transfer none]

-

Since 2.2

+

Since: 2.2

@@ -243,7 +241,6 @@
+
Generated by GTK-Doc V1.24.1
\ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitGeolocationPermissionRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitGeolocationPermissionRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitGeolocationPermissionRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitGeolocationPermissionRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitGeolocationPermissionRequest - +WebKitGeolocationPermissionRequest: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Types and Values

-
+
@@ -48,7 +48,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitGeolocationPermissionRequest
 
@@ -66,6 +66,7 @@

Functions

+

Types and Values

@@ -82,7 +83,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitHitTestResult.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitHitTestResult.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitHitTestResult.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitHitTestResult.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitHitTestResult - +WebKitHitTestResult: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -129,7 +129,7 @@

Properties

-
+
@@ -176,7 +176,7 @@

Types and Values

-
+
@@ -195,7 +195,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitHitTestResult
 
@@ -226,8 +226,8 @@ webkit_hit_test_result_get_context (WebKitHitTestResult *hit_test_result);

Gets the value of the “context” property.

-

Parameters

-
+

Parameters

+
@@ -241,9 +241,8 @@
-

Returns

+

Returns

a bitmask of WebKitHitTestResultContext flags

-


@@ -255,8 +254,8 @@

Gets whether WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK flag is present in “context”.

-

Parameters

-
+

Parameters

+
@@ -270,10 +269,9 @@
-

Returns

+

Returns

TRUE if there's a link element in the coordinates of the Hit Test, or FALSE otherwise

-


@@ -285,8 +283,8 @@

Gets whether WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE flag is present in “context”.

-

Parameters

-
+

Parameters

+
@@ -300,10 +298,9 @@
-

Returns

+

Returns

TRUE if there's an image element in the coordinates of the Hit Test, or FALSE otherwise

-


@@ -315,8 +312,8 @@

Gets whether WEBKIT_HIT_TEST_RESULT_CONTEXT_MEDIA flag is present in “context”.

-

Parameters

-
+

Parameters

+
@@ -330,10 +327,9 @@
-

Returns

+

Returns

TRUE if there's a media element in the coordinates of the Hit Test, or FALSE otherwise

-


@@ -345,8 +341,8 @@

Gets whether WEBKIT_HIT_TEST_RESULT_CONTEXT_EDITABLE flag is present in “context”.

-

Parameters

-
+

Parameters

+
@@ -360,11 +356,10 @@
-

Returns

+

Returns

TRUE if there's an editable element at the coordinates of the hit_test_result , or FALSE otherwise

-


@@ -374,8 +369,8 @@ webkit_hit_test_result_get_link_uri (WebKitHitTestResult *hit_test_result);

Gets the value of the “link-uri” property.

-

Parameters

-
+

Parameters

+
@@ -389,11 +384,10 @@
-

Returns

+

Returns

the URI of the link element in the coordinates of the Hit Test, or NULL if there ins't a link element in hit_test_result context

-


@@ -403,8 +397,8 @@ webkit_hit_test_result_get_link_title (WebKitHitTestResult *hit_test_result);

Gets the value of the “link-title” property.

-

Parameters

-
+

Parameters

+
@@ -418,12 +412,11 @@
-

Returns

+

Returns

the title of the link element in the coordinates of the Hit Test, or NULL if there ins't a link element in hit_test_result context or the link element doesn't have a title

-


@@ -433,8 +426,8 @@ webkit_hit_test_result_get_link_label (WebKitHitTestResult *hit_test_result);

Gets the value of the “link-label” property.

-

Parameters

-
+

Parameters

+
@@ -448,12 +441,11 @@
-

Returns

+

Returns

the label of the link element in the coordinates of the Hit Test, or NULL if there ins't a link element in hit_test_result context or the link element doesn't have a label

-


@@ -463,8 +455,8 @@ webkit_hit_test_result_get_image_uri (WebKitHitTestResult *hit_test_result);

Gets the value of the “image-uri” property.

-

Parameters

-
+

Parameters

+
@@ -478,11 +470,10 @@
-

Returns

+

Returns

the URI of the image element in the coordinates of the Hit Test, or NULL if there ins't an image element in hit_test_result context

-


@@ -492,8 +483,8 @@ webkit_hit_test_result_get_media_uri (WebKitHitTestResult *hit_test_result);

Gets the value of the “media-uri” property.

-

Parameters

-
+

Parameters

+
@@ -507,11 +498,10 @@
-

Returns

+

Returns

the URI of the media element in the coordinates of the Hit Test, or NULL if there ins't a media element in hit_test_result context

-


@@ -523,8 +513,8 @@

Gets whether WEBKIT_HIT_TEST_RESULT_CONTEXT_SCROLLBAR flag is present in “context”.

-

Parameters

-
+

Parameters

+
@@ -538,11 +528,10 @@
-

Returns

+

Returns

TRUE if there's a scrollbar element at the coordinates of the hit_test_result , or FALSE otherwise

-

@@ -559,8 +548,8 @@

enum WebKitHitTestResultContext

Enum values with flags representing the context of a WebKitHitTestResult.

-

Members

-
+

Members

+
@@ -676,7 +665,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitNavigationPolicyDecision.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitNavigationPolicyDecision.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitNavigationPolicyDecision.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitNavigationPolicyDecision.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitNavigationPolicyDecision - +WebKitNavigationPolicyDecision: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -85,7 +85,7 @@

Properties

-
+
@@ -124,7 +124,7 @@

Types and Values

-
+
@@ -143,7 +143,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitPolicyDecision
         ╰── WebKitNavigationPolicyDecision
 
@@ -163,8 +163,8 @@ (WebKitNavigationPolicyDecision *decision);

Gets the value of the “frame-name” property.

-

Parameters

-
+

Parameters

+
@@ -178,9 +178,8 @@
-

Returns

+

Returns

The name of the new frame this navigation action targets or NULL

-


@@ -191,8 +190,8 @@ (WebKitNavigationPolicyDecision *decision);

Gets the value of the “modifiers” property.

-

Parameters

-
+

Parameters

+
@@ -206,9 +205,8 @@
-

Returns

+

Returns

The modifiers active if this decision was triggered by a mouse event

-


@@ -219,8 +217,8 @@ (WebKitNavigationPolicyDecision *decision);

Gets the value of the “mouse-button” property.

-

Parameters

-
+

Parameters

+
@@ -234,9 +232,8 @@
-

Returns

+

Returns

The mouse button used if this decision was triggered by a mouse event or 0 otherwise

-


@@ -247,8 +244,8 @@ (WebKitNavigationPolicyDecision *decision);

Gets the value of the “navigation-type” property.

-

Parameters

-
+

Parameters

+
@@ -262,9 +259,8 @@
-

Returns

+

Returns

The type of navigation triggering this policy decision.

-


@@ -275,8 +271,8 @@ (WebKitNavigationPolicyDecision *decision);

Gets the value of the “request” property.

-

Parameters

-
+

Parameters

+
@@ -290,7 +286,7 @@
-

Returns

+

Returns

The URI request that is associated with this navigation.

[transfer none]

@@ -309,8 +305,8 @@

enum WebKitNavigationType

Enum values used to denote the various navigation types.

-

Members

-
+

Members

+
@@ -382,7 +378,7 @@
  “modifiers”                guint

If the navigation associated with this policy decision was originally triggered by a mouse event, this property contains a bitmask of various -GdkModifierType values describing the modifiers used for that click. +GdkModifierType values describing the modifiers used for that click. If the navigation was not triggered by a mouse event or no modifiers were active, the value of this property will be zero.

Flags: Read

@@ -425,7 +421,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPermissionRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPermissionRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPermissionRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPermissionRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitPermissionRequest - +WebKitPermissionRequest: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -63,7 +63,7 @@

Types and Values

-
+
@@ -84,7 +84,7 @@

Prerequisites

WebKitPermissionRequest requires - GObject.

+ GObject.

Known Implementations

@@ -109,8 +109,8 @@ webkit_permission_request_allow (WebKitPermissionRequest *request);

Allow the action which triggered this request.

-

Parameters

-
+

Parameters

+
@@ -131,8 +131,8 @@ webkit_permission_request_deny (WebKitPermissionRequest *request);

Deny the action which triggered this request.

-

Parameters

-
+

Parameters

+
@@ -162,7 +162,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPlugin.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPlugin.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPlugin.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPlugin.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitPlugin - +WebKitPlugin: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -111,7 +111,7 @@

Types and Values

-
+
@@ -132,7 +132,7 @@

Object Hierarchy

    GBoxed
     ╰── WebKitMimeInfo
-    GObject
+    GObject
     ╰── WebKitPlugin
 
@@ -152,8 +152,8 @@
const gchar *
 webkit_plugin_get_name (WebKitPlugin *plugin);
-

Parameters

-
+

Parameters

+
@@ -167,9 +167,8 @@
-

Returns

+

Returns

the name of the plugin.

-


@@ -178,8 +177,8 @@
const gchar *
 webkit_plugin_get_description (WebKitPlugin *plugin);
-

Parameters

-
+

Parameters

+
@@ -193,9 +192,8 @@
-

Returns

+

Returns

the description of the plugin.

-


@@ -204,8 +202,8 @@
const gchar *
 webkit_plugin_get_path (WebKitPlugin *plugin);
-

Parameters

-
+

Parameters

+
@@ -219,9 +217,8 @@
-

Returns

+

Returns

the absolute path where the plugin is installed.

-


@@ -232,8 +229,8 @@

Get information about MIME types handled by the plugin, as a list of WebKitMimeInfo.

-

Parameters

-
+

Parameters

+
@@ -247,7 +244,7 @@
-

Returns

+

Returns

a GList of WebKitMimeInfo.

[element-type WebKitMimeInfo][transfer none]

@@ -261,8 +258,8 @@ by one. This function is MT-safe and may be called from any thread.

-

Parameters

-
+

Parameters

+
@@ -276,9 +273,8 @@
-

Returns

+

Returns

The passed in WebKitMimeInfo

-


@@ -292,8 +288,8 @@ released. This function is MT-safe and may be called from any thread.

-

Parameters

-
+

Parameters

+
@@ -313,8 +309,8 @@
const gchar *
 webkit_mime_info_get_mime_type (WebKitMimeInfo *info);
-

Parameters

-
+

Parameters

+
@@ -328,10 +324,9 @@
-

Returns

+

Returns

the MIME type of info

-


@@ -340,8 +335,8 @@
const gchar *
 webkit_mime_info_get_description (WebKitMimeInfo *info);
-

Parameters

-
+

Parameters

+
@@ -355,10 +350,9 @@
-

Returns

+

Returns

the description of the MIME type of info

-


@@ -370,8 +364,8 @@ MIME type of info

-

Parameters

-
+

Parameters

+
@@ -385,7 +379,7 @@
-

Returns

+

Returns

a NULL-terminated array of strings.

[array zero-terminated=1][transfer none]

@@ -410,7 +404,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPolicyDecision.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPolicyDecision.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPolicyDecision.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPolicyDecision.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitPolicyDecision - +WebKitPolicyDecision: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -69,7 +69,7 @@

Types and Values

-
+
@@ -82,7 +82,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitPolicyDecision
         ├── WebKitNavigationPolicyDecision
         ╰── WebKitResponsePolicyDecision
@@ -108,8 +108,8 @@
 webkit_policy_decision_download (WebKitPolicyDecision *decision);

Spawn a download from this decision.

-

Parameters

-
+

Parameters

+
@@ -131,8 +131,8 @@

Ignore the action which triggerd this decision. For instance, for a WebKitResponsePolicyDecision, this would cancel the request.

-

Parameters

-
+

Parameters

+
@@ -153,8 +153,8 @@ webkit_policy_decision_use (WebKitPolicyDecision *decision);

Accept the action which triggerd this decision.

-

Parameters

-
+

Parameters

+
@@ -184,7 +184,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPrintOperation.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPrintOperation.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitPrintOperation.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitPrintOperation.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitPrintOperation - +WebKitPrintOperation: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -52,7 +52,7 @@
-GtkPrintSettings * +GtkPrintSettings * webkit_print_operation_get_print_settings () @@ -68,7 +68,7 @@
-GtkPageSetup * +GtkPageSetup * webkit_print_operation_get_page_setup () @@ -103,7 +103,7 @@

Properties

-
+
@@ -112,13 +112,13 @@ +GtkPageSetup * +GtkPrintSettings * @@ -133,7 +133,7 @@

Signals

-
-GtkPageSetup * page-setup Read / Write
-GtkPrintSettings * print-settings Read / Write
+
@@ -155,7 +155,7 @@

Types and Values

-
+
@@ -174,14 +174,14 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitPrintOperation
 

Description

A WebKitPrintOperation controls a print operation in WebKit. With -a similar API to GtkPrintOperation, it lets you set the print +a similar API to GtkPrintOperation, it lets you set the print settings with webkit_print_operation_set_print_settings() or display the print dialog with webkit_print_operation_run_dialog().

@@ -194,8 +194,8 @@

Create a new WebKitPrintOperation to print web_view contents.

-

Parameters

-
+

Parameters

+
@@ -209,7 +209,7 @@
-

Returns

+

Returns

a new WebKitPrintOperation.

[transfer full]

@@ -217,7 +217,7 @@

webkit_print_operation_get_print_settings ()

-
GtkPrintSettings *
+
GtkPrintSettings *
 webkit_print_operation_get_print_settings
                                (WebKitPrintOperation *print_operation);

Return the current print settings of print_operation @@ -225,8 +225,8 @@ either webkit_print_operation_set_print_settings() or webkit_print_operation_run_dialog() have been called.

-

Parameters

-
+

Parameters

+
@@ -240,8 +240,8 @@
-

Returns

-

the current GtkPrintSettings of print_operation +

Returns

+

the current GtkPrintSettings of print_operation .

[transfer none]

@@ -252,13 +252,13 @@
void
 webkit_print_operation_set_print_settings
                                (WebKitPrintOperation *print_operation,
-                                GtkPrintSettings *print_settings);
+ GtkPrintSettings *print_settings);

Set the current print settings of print_operation . Current print settings are used for the initial values of the print dialog when webkit_print_operation_run_dialog() is called.

-

Parameters

-
+

Parameters

+
@@ -272,7 +272,7 @@ - + @@ -282,15 +282,15 @@

webkit_print_operation_get_page_setup ()

-
GtkPageSetup *
+
GtkPageSetup *
 webkit_print_operation_get_page_setup (WebKitPrintOperation *print_operation);

Return the current page setup of print_operation . It returns NULL until either webkit_print_operation_set_page_setup() or webkit_print_operation_run_dialog() have been called.

-

Parameters

-

print_settings

a GtkPrintSettings to set

a GtkPrintSettings to set

 
+

Parameters

+
@@ -304,8 +304,8 @@
-

Returns

-

the current GtkPageSetup of print_operation +

Returns

+

the current GtkPageSetup of print_operation .

[transfer none]

@@ -315,13 +315,13 @@

webkit_print_operation_set_page_setup ()

void
 webkit_print_operation_set_page_setup (WebKitPrintOperation *print_operation,
-                                       GtkPageSetup *page_setup);
+ GtkPageSetup *page_setup);

Set the current page setup of print_operation . Current page setup is used for the initial values of the print dialog when webkit_print_operation_run_dialog() is called.

-

Parameters

-
+

Parameters

+
@@ -335,7 +335,7 @@ - + @@ -347,7 +347,7 @@

webkit_print_operation_run_dialog ()

WebKitPrintOperationResponse
 webkit_print_operation_run_dialog (WebKitPrintOperation *print_operation,
-                                   GtkWindow *parent);
+ GtkWindow *parent);

Run the print dialog and start printing using the options selected by the user. This method returns when the print dialog is closed. If the print dialog is cancelled WEBKIT_PRINT_OPERATION_RESPONSE_CANCEL @@ -362,8 +362,8 @@ webkit_print_operation_get_print_settings() and webkit_print_operation_get_page_setup() after this method.

-

Parameters

-

page_setup

a GtkPageSetup to set

a GtkPageSetup to set

 
+

Parameters

+
@@ -384,9 +384,8 @@
-

Returns

+

Returns

the WebKitPrintOperationResponse of the print dialog

-


@@ -403,8 +402,8 @@ operation finishes. If an error occurs while printing the signal “failed” is emitted before “finished”.

-

Parameters

-
+

Parameters

+
@@ -433,8 +432,8 @@

Enum values representing the response of the print dialog shown with webkit_print_operation_run_dialog().

-

Members

-
+

Members

+
@@ -464,15 +463,15 @@

Property Details

The “page-setup” property

-
  “page-setup”               GtkPageSetup *
-

The initial GtkPageSetup for the print operation.

+
  “page-setup”               GtkPageSetup *
+

The initial GtkPageSetup for the print operation.

Flags: Read / Write


The “print-settings” property

-
  “print-settings”           GtkPrintSettings *
-

The initial GtkPrintSettings for the print operation.

+
  “print-settings”           GtkPrintSettings *
+

The initial GtkPrintSettings for the print operation.

Flags: Read / Write


@@ -496,8 +495,8 @@ WEBKIT_PRINT_ERROR, contains further details of the failure. The “finished” signal is emitted after this one.

-

Parameters

-
+

Parameters

+
@@ -533,8 +532,8 @@

Emitted when the print operation has finished doing everything required for printing.

-

Parameters

-
+

Parameters

+
@@ -559,7 +558,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitResponsePolicyDecision.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitResponsePolicyDecision.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitResponsePolicyDecision.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitResponsePolicyDecision.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitResponsePolicyDecision - +WebKitResponsePolicyDecision: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -70,7 +70,7 @@

Properties

-
+
@@ -94,7 +94,7 @@

Types and Values

-
+
@@ -107,7 +107,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitPolicyDecision
         ╰── WebKitResponsePolicyDecision
 
@@ -129,8 +129,8 @@ (WebKitResponsePolicyDecision *decision);

Gets the value of the “request” property.

-

Parameters

-
+

Parameters

+
@@ -144,7 +144,7 @@
-

Returns

+

Returns

The URI request that is associated with this policy decision.

[transfer none]

@@ -157,8 +157,8 @@ (WebKitResponsePolicyDecision *decision);

Gets the value of the “response” property.

-

Parameters

-
+

Parameters

+
@@ -172,7 +172,7 @@
-

Returns

+

Returns

The URI response that is associated with this policy decision.

[transfer none]

@@ -186,8 +186,8 @@

Gets whether the MIME type of the response can be displayed in the WebKitWebView that triggered this policy decision request. See also webkit_web_view_can_show_mime_type().

-

Parameters

-
+

Parameters

+
@@ -201,11 +201,10 @@
-

Returns

+

Returns

TRUE if the MIME type of the response is supported or FALSE otherwise

-

-

Since 2.4

+

Since: 2.4

@@ -241,7 +240,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitScriptWorld.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitScriptWorld.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitScriptWorld.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitScriptWorld.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitScriptWorld - +WebKitScriptWorld: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -62,7 +62,7 @@

Signals

-
+
@@ -77,7 +77,7 @@

Types and Values

-
+
@@ -90,7 +90,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitScriptWorld
 
@@ -110,11 +110,11 @@ You can get the JavaScript execution context of a WebKitScriptWorld for a given WebKitFrame with webkit_frame_get_javascript_context_for_script_world().

-

Returns

+

Returns

the default WebKitScriptWorld.

[transfer none]

-

Since 2.2

+

Since: 2.2


@@ -127,11 +127,11 @@ You can get the JavaScript execution context of a WebKitScriptWorld for a given WebKitFrame with webkit_frame_get_javascript_context_for_script_world().

-

Returns

+

Returns

a new isolated WebKitScriptWorld.

[transfer full]

-

Since 2.2

+

Since: 2.2

@@ -160,8 +160,8 @@ that is returned by webkit_frame_get_javascript_context_for_script_world().

-

Parameters

-
+

Parameters

+
@@ -193,12 +193,11 @@

Flags: Run Last

-

Since 2.2

+

Since: 2.2

+
Generated by GTK-Doc V1.24.1
\ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitSecurityManager.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitSecurityManager.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitSecurityManager.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitSecurityManager.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitSecurityManager - +WebKitSecurityManager: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -141,7 +141,7 @@

Types and Values

-
+
@@ -154,7 +154,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitSecurityManager
 
@@ -178,8 +178,8 @@ as a local scheme. This means that other non-local pages cannot link to or access URIs of this scheme.

-

Parameters

-
+

Parameters

+
@@ -211,8 +211,8 @@ is considered as a local scheme. See also webkit_security_manager_register_uri_scheme_as_local().

-

Parameters

-
+

Parameters

+
@@ -233,10 +233,9 @@
-

Returns

+

Returns

TRUE if scheme is a local scheme or FALSE otherwise.

-


@@ -250,8 +249,8 @@ as a no-access scheme. This means that pages loaded with this URI scheme cannot access pages loaded with any other URI scheme.

-

Parameters

-
+

Parameters

+
@@ -283,8 +282,8 @@ is considered as a no-access scheme. See also webkit_security_manager_register_uri_scheme_as_no_access().

-

Parameters

-
+

Parameters

+
@@ -305,10 +304,9 @@
-

Returns

+

Returns

TRUE if scheme is a no-access scheme or FALSE otherwise.

-


@@ -322,8 +320,8 @@ as a display isolated scheme. This means that pages cannot display these URIs unless they are from the same scheme.

-

Parameters

-
+

Parameters

+
@@ -355,8 +353,8 @@ is considered as a display isolated scheme. See also webkit_security_manager_register_uri_scheme_as_display_isolated().

-

Parameters

-
+

Parameters

+
@@ -377,10 +375,9 @@
-

Returns

+

Returns

TRUE if scheme is a display isolated scheme or FALSE otherwise.

-


@@ -395,8 +392,8 @@ content warnings won't be generated for this scheme when included by an HTTPS page.

-

Parameters

-
+

Parameters

+
@@ -428,8 +425,8 @@ is considered as a secure scheme. See also webkit_security_manager_register_uri_scheme_as_secure().

-

Parameters

-
+

Parameters

+
@@ -450,10 +447,9 @@
-

Returns

+

Returns

TRUE if scheme is a secure scheme or FALSE otherwise.

-


@@ -468,8 +464,8 @@ This means that CORS requests are allowed. See W3C CORS specification http://www.w3.org/TR/cors/.

-

Parameters

-
+

Parameters

+
@@ -501,8 +497,8 @@ is considered as a CORS enabled scheme. See also webkit_security_manager_register_uri_scheme_as_cors_enabled().

-

Parameters

-
+

Parameters

+
@@ -523,10 +519,9 @@
-

Returns

+

Returns

TRUE if scheme is a CORS enabled scheme or FALSE otherwise.

-


@@ -540,8 +535,8 @@ as an empty document scheme. This means that they are allowed to commit synchronously.

-

Parameters

-
+

Parameters

+
@@ -573,8 +568,8 @@ is considered as an empty document scheme. See also webkit_security_manager_register_uri_scheme_as_empty_document().

-

Parameters

-
+

Parameters

+
@@ -595,10 +590,9 @@
-

Returns

+

Returns

TRUE if scheme is a an empty document scheme or FALSE otherwise.

-

@@ -613,7 +607,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitSettings.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitSettings.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitSettings.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitSettings.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitSettings - +WebKitSettings: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -829,7 +829,7 @@

Properties

-
+
@@ -1090,7 +1090,7 @@

Types and Values

-
+
@@ -1103,7 +1103,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitSettings
 
@@ -1139,9 +1139,8 @@ be manually attached to a WebKitWebViewGroup. See also webkit_settings_new_with_settings().

-

Returns

+

Returns

a new WebKitSettings instance.

-


@@ -1153,8 +1152,8 @@

Creates a new WebKitSettings instance with the given settings. It must be manually attached to a WebKitWebViewGroup.

-

Parameters

-
+

Parameters

+
@@ -1176,9 +1175,8 @@
-

Returns

+

Returns

a new WebKitSettings instance.

-


@@ -1188,8 +1186,8 @@ webkit_settings_get_auto_load_images (WebKitSettings *settings);

Get the “auto-load-images” property.

-

Parameters

-
+

Parameters

+
@@ -1203,9 +1201,8 @@
-

Returns

+

Returns

TRUE If auto loading of images is enabled or FALSE otherwise.

-


@@ -1216,8 +1213,8 @@ gboolean enabled);

Set the “auto-load-images” property.

-

Parameters

-
+

Parameters

+
@@ -1246,8 +1243,8 @@ (WebKitSettings *settings);

Get the “enable-frame-flattening” property.

-

Parameters

-
+

Parameters

+
@@ -1261,9 +1258,8 @@
-

Returns

+

Returns

TRUE If frame flattening is enabled or FALSE otherwise.

-


@@ -1275,8 +1271,8 @@ gboolean enabled);

Set the “enable-frame-flattening” property.

-

Parameters

-
+

Parameters

+
@@ -1305,8 +1301,8 @@ (WebKitSettings *settings);

Get the “enable-html5-database” property.

-

Parameters

-
+

Parameters

+
@@ -1320,9 +1316,8 @@
-

Returns

+

Returns

TRUE If HTML5 database support is enabled or FALSE otherwise.

-


@@ -1334,8 +1329,8 @@ gboolean enabled);

Set the “enable-html5-database” property.

-

Parameters

-
+

Parameters

+
@@ -1364,8 +1359,8 @@ (WebKitSettings *settings);

Get the “enable-html5-local-storage” property.

-

Parameters

-
+

Parameters

+
@@ -1379,9 +1374,8 @@
-

Returns

+

Returns

TRUE If HTML5 local storage support is enabled or FALSE otherwise.

-


@@ -1393,8 +1387,8 @@ gboolean enabled);

Set the “enable-html5-local-storage” property.

-

Parameters

-
+

Parameters

+
@@ -1423,8 +1417,8 @@ (WebKitSettings *settings);

Get the “enable-hyperlink-auditing” property.

-

Parameters

-
+

Parameters

+
@@ -1438,9 +1432,8 @@
-

Returns

+

Returns

TRUE If hyper link auditing is enabled or FALSE otherwise.

-


@@ -1452,8 +1445,8 @@ gboolean enabled);

Set the “enable-hyperlink-auditing” property.

-

Parameters

-
+

Parameters

+
@@ -1481,8 +1474,8 @@ webkit_settings_get_enable_java (WebKitSettings *settings);

Get the “enable-java” property.

-

Parameters

-
+

Parameters

+
@@ -1496,9 +1489,8 @@
-

Returns

+

Returns

TRUE If Java is enabled or FALSE otherwise.

-


@@ -1509,8 +1501,8 @@ gboolean enabled);

Set the “enable-java” property.

-

Parameters

-
+

Parameters

+
@@ -1538,8 +1530,8 @@ webkit_settings_get_enable_javascript (WebKitSettings *settings);

Get the “enable-javascript” property.

-

Parameters

-
+

Parameters

+
@@ -1553,9 +1545,8 @@
-

Returns

+

Returns

TRUE If JavaScript is enabled or FALSE otherwise.

-


@@ -1566,8 +1557,8 @@ gboolean enabled);

Set the “enable-javascript” property.

-

Parameters

-
+

Parameters

+
@@ -1596,8 +1587,8 @@ (WebKitSettings *settings);

Get the “enable-offline-web-application-cache” property.

-

Parameters

-
+

Parameters

+
@@ -1611,9 +1602,8 @@
-

Returns

+

Returns

TRUE If HTML5 offline web application cache support is enabled or FALSE otherwise.

-


@@ -1625,8 +1615,8 @@ gboolean enabled);

Set the “enable-offline-web-application-cache” property.

-

Parameters

-
+

Parameters

+
@@ -1654,8 +1644,8 @@ webkit_settings_get_enable_plugins (WebKitSettings *settings);

Get the “enable-plugins” property.

-

Parameters

-
+

Parameters

+
@@ -1669,9 +1659,8 @@
-

Returns

+

Returns

TRUE If plugins are enabled or FALSE otherwise.

-


@@ -1682,8 +1671,8 @@ gboolean enabled);

Set the “enable-plugins” property.

-

Parameters

-
+

Parameters

+
@@ -1712,8 +1701,8 @@ (WebKitSettings *settings);

Get the “enable-xss-auditor” property.

-

Parameters

-
+

Parameters

+
@@ -1727,9 +1716,8 @@
-

Returns

+

Returns

TRUE If XSS auditing is enabled or FALSE otherwise.

-


@@ -1741,8 +1729,8 @@ gboolean enabled);

Set the “enable-xss-auditor” property.

-

Parameters

-
+

Parameters

+
@@ -1771,8 +1759,8 @@ (WebKitSettings *settings);

Get the “javascript-can-open-windows-automatically” property.

-

Parameters

-
+

Parameters

+
@@ -1786,9 +1774,8 @@
-

Returns

+

Returns

TRUE If JavaScript can open window automatically or FALSE otherwise.

-


@@ -1800,8 +1787,8 @@ gboolean enabled);

Set the “javascript-can-open-windows-automatically” property.

-

Parameters

-
+

Parameters

+
@@ -1830,8 +1817,8 @@ (WebKitSettings *settings);

Get the “load-icons-ignoring-image-load-setting” property.

-

Parameters

-
+

Parameters

+
@@ -1845,9 +1832,8 @@
-

Returns

+

Returns

TRUE If site icon can be loaded irrespective of image loading preference or FALSE otherwise.

-


@@ -1859,8 +1845,8 @@ gboolean enabled);

Set the “load-icons-ignoring-image-load-setting” property.

-

Parameters

-
+

Parameters

+
@@ -1889,10 +1875,6 @@ (WebKitSettings *settings);

-
-

Returns

-

-

@@ -1903,8 +1885,8 @@ const gchar *default_font_family);

Set the “default-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -1933,8 +1915,8 @@ (WebKitSettings *settings);

Gets the “monospace-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -1948,9 +1930,8 @@
-

Returns

+

Returns

Default font family used to display content marked with monospace font.

-


@@ -1962,8 +1943,8 @@ const gchar *monospace_font_family);

Set the “monospace-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -1991,8 +1972,8 @@ webkit_settings_get_serif_font_family (WebKitSettings *settings);

Gets the “serif-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2006,9 +1987,8 @@
-

Returns

+

Returns

The default font family used to display content marked with serif font.

-


@@ -2019,8 +1999,8 @@ const gchar *serif_font_family);

Set the “serif-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2049,8 +2029,8 @@ (WebKitSettings *settings);

Gets the “sans-serif-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2064,9 +2044,8 @@
-

Returns

+

Returns

The default font family used to display content marked with sans-serif font.

-


@@ -2078,8 +2057,8 @@ const gchar *sans_serif_font_family);

Set the “sans-serif-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2108,8 +2087,8 @@ (WebKitSettings *settings);

Gets the “cursive-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2123,9 +2102,8 @@
-

Returns

+

Returns

The default font family used to display content marked with cursive font.

-


@@ -2137,8 +2115,8 @@ const gchar *cursive_font_family);

Set the “cursive-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2167,8 +2145,8 @@ (WebKitSettings *settings);

Gets the “fantasy-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2182,9 +2160,8 @@
-

Returns

+

Returns

The default font family used to display content marked with fantasy font.

-


@@ -2196,8 +2173,8 @@ const gchar *fantasy_font_family);

Set the “fantasy-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2226,8 +2203,8 @@ (WebKitSettings *settings);

Gets the “pictograph-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2241,9 +2218,8 @@
-

Returns

+

Returns

The default font family used to display content marked with pictograph font.

-


@@ -2255,8 +2231,8 @@ const gchar *pictograph_font_family);

Set the “pictograph-font-family” property.

-

Parameters

-
+

Parameters

+
@@ -2284,8 +2260,8 @@ webkit_settings_get_default_font_size (WebKitSettings *settings);

Gets the “default-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2299,9 +2275,8 @@
-

Returns

+

Returns

The default font size.

-


@@ -2312,8 +2287,8 @@ guint32 font_size);

Set the “default-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2342,8 +2317,8 @@ (WebKitSettings *settings);

Gets the “default-monospace-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2357,9 +2332,8 @@
-

Returns

+

Returns

Default monospace font size.

-


@@ -2371,8 +2345,8 @@ guint32 font_size);

Set the “default-monospace-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2400,8 +2374,8 @@ webkit_settings_get_minimum_font_size (WebKitSettings *settings);

Gets the “minimum-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2415,9 +2389,8 @@
-

Returns

+

Returns

Minimum font size.

-


@@ -2428,8 +2401,8 @@ guint32 font_size);

Set the “minimum-font-size” property.

-

Parameters

-
+

Parameters

+
@@ -2457,8 +2430,8 @@ webkit_settings_get_default_charset (WebKitSettings *settings);

Gets the “default-charset” property.

-

Parameters

-
+

Parameters

+
@@ -2472,9 +2445,8 @@
-

Returns

+

Returns

Default charset.

-


@@ -2485,8 +2457,8 @@ const gchar *default_charset);

Set the “default-charset” property.

-

Parameters

-
+

Parameters

+
@@ -2515,8 +2487,8 @@ (WebKitSettings *settings);

Get the “enable-private-browsing” property.

-

Parameters

-
+

Parameters

+
@@ -2530,9 +2502,8 @@
-

Returns

+

Returns

TRUE If private browsing is enabled or FALSE otherwise.

-


@@ -2553,8 +2524,8 @@ (WebKitSettings *settings);

Get the “enable-developer-extras” property.

-

Parameters

-
+

Parameters

+
@@ -2568,9 +2539,8 @@
-

Returns

+

Returns

TRUE If developer extras is enabled or FALSE otherwise.

-


@@ -2582,8 +2552,8 @@ gboolean enabled);

Set the “enable-developer-extras” property.

-

Parameters

-
+

Parameters

+
@@ -2612,8 +2582,8 @@ (WebKitSettings *settings);

Get the “enable-resizable-text-areas” property.

-

Parameters

-
+

Parameters

+
@@ -2627,9 +2597,8 @@
-

Returns

+

Returns

TRUE If text areas can be resized or FALSE otherwise.

-


@@ -2641,8 +2610,8 @@ gboolean enabled);

Set the “enable-resizable-text-areas” property.

-

Parameters

-
+

Parameters

+
@@ -2671,8 +2640,8 @@ (WebKitSettings *settings);

Get the “enable-tabs-to-links” property.

-

Parameters

-
+

Parameters

+
@@ -2686,9 +2655,8 @@
-

Returns

+

Returns

TRUE If tabs to link is enabled or FALSE otherwise.

-


@@ -2700,8 +2668,8 @@ gboolean enabled);

Set the “enable-tabs-to-links” property.

-

Parameters

-
+

Parameters

+
@@ -2730,8 +2698,8 @@ (WebKitSettings *settings);

Get the “enable-dns-prefetching” property.

-

Parameters

-
+

Parameters

+
@@ -2745,9 +2713,8 @@
-

Returns

+

Returns

TRUE If DNS prefetching is enabled or FALSE otherwise.

-


@@ -2759,8 +2726,8 @@ gboolean enabled);

Set the “enable-dns-prefetching” property.

-

Parameters

-
+

Parameters

+
@@ -2789,8 +2756,8 @@ (WebKitSettings *settings);

Get the “enable-caret-browsing” property.

-

Parameters

-
+

Parameters

+
@@ -2804,9 +2771,8 @@
-

Returns

+

Returns

TRUE If caret browsing is enabled or FALSE otherwise.

-


@@ -2818,8 +2784,8 @@ gboolean enabled);

Set the “enable-caret-browsing” property.

-

Parameters

-
+

Parameters

+
@@ -2847,8 +2813,8 @@ webkit_settings_get_enable_fullscreen (WebKitSettings *settings);

Get the “enable-fullscreen” property.

-

Parameters

-
+

Parameters

+
@@ -2862,9 +2828,8 @@
-

Returns

+

Returns

TRUE If fullscreen support is enabled or FALSE otherwise.

-


@@ -2875,8 +2840,8 @@ gboolean enabled);

Set the “enable-fullscreen” property.

-

Parameters

-
+

Parameters

+
@@ -2904,8 +2869,8 @@ webkit_settings_get_print_backgrounds (WebKitSettings *settings);

Get the “print-backgrounds” property.

-

Parameters

-
+

Parameters

+
@@ -2919,9 +2884,8 @@
-

Returns

+

Returns

TRUE If background images should be printed or FALSE otherwise.

-


@@ -2932,8 +2896,8 @@ gboolean print_backgrounds);

Set the “print-backgrounds” property.

-

Parameters

-
+

Parameters

+
@@ -2961,8 +2925,8 @@ webkit_settings_get_enable_webaudio (WebKitSettings *settings);

Get the “enable-webaudio” property.

-

Parameters

-
+

Parameters

+
@@ -2976,9 +2940,8 @@
-

Returns

+

Returns

TRUE If webaudio support is enabled or FALSE otherwise.

-


@@ -2989,8 +2952,8 @@ gboolean enabled);

Set the “enable-webaudio” property.

-

Parameters

-
+

Parameters

+
@@ -3018,8 +2981,8 @@ webkit_settings_get_enable_webgl (WebKitSettings *settings);

Get the “enable-webgl” property.

-

Parameters

-
+

Parameters

+
@@ -3033,9 +2996,8 @@
-

Returns

+

Returns

TRUE If webgl support is enabled or FALSE otherwise.

-


@@ -3046,8 +3008,8 @@ gboolean enabled);

Set the “enable-webgl” property.

-

Parameters

-
+

Parameters

+
@@ -3077,8 +3039,8 @@ gboolean allowed);

Set the “allow-modal-dialogs” property.

-

Parameters

-
+

Parameters

+
@@ -3107,8 +3069,8 @@ (WebKitSettings *settings);

Get the “allow-modal-dialogs” property.

-

Parameters

-
+

Parameters

+
@@ -3122,9 +3084,8 @@
-

Returns

+

Returns

TRUE if it's allowed to create and run modal dialogs or FALSE otherwise.

-


@@ -3134,8 +3095,8 @@ webkit_settings_get_zoom_text_only (WebKitSettings *settings);

Get the “zoom-text-only” property.

-

Parameters

-
+

Parameters

+
@@ -3149,10 +3110,9 @@
-

Returns

+

Returns

TRUE If zoom level of the view should only affect the text or FALSE if all view contents should be scaled.

-


@@ -3163,8 +3123,8 @@ gboolean zoom_text_only);

Set the “zoom-text-only” property.

-

Parameters

-
+

Parameters

+
@@ -3193,8 +3153,8 @@ (WebKitSettings *settings);

Get the “javascript-can-access-clipboard” property.

-

Parameters

-
+

Parameters

+
@@ -3208,9 +3168,8 @@
-

Returns

+

Returns

TRUE If javascript-can-access-clipboard is enabled or FALSE otherwise.

-


@@ -3222,8 +3181,8 @@ gboolean enabled);

Set the “javascript-can-access-clipboard” property.

-

Parameters

-
+

Parameters

+
@@ -3252,8 +3211,8 @@ (WebKitSettings *settings);

Get the “media-playback-requires-user-gesture” property.

-

Parameters

-
+

Parameters

+
@@ -3267,10 +3226,9 @@
-

Returns

+

Returns

TRUE If an user gesture is needed to play or load media or FALSE if no user gesture is needed.

-


@@ -3282,8 +3240,8 @@ gboolean enabled);

Set the “media-playback-requires-user-gesture” property.

-

Parameters

-
+

Parameters

+
@@ -3312,8 +3270,8 @@ (WebKitSettings *settings);

Get the “media-playback-allows-inline” property.

-

Parameters

-
+

Parameters

+
@@ -3327,10 +3285,9 @@
-

Returns

+

Returns

TRUE If inline playback is allowed for media or FALSE if only fullscreen playback is allowed.

-


@@ -3342,8 +3299,8 @@ gboolean enabled);

Set the “media-playback-allows-inline” property.

-

Parameters

-
+

Parameters

+
@@ -3372,8 +3329,8 @@ (WebKitSettings *settings);

Get the “draw-compositing-indicators” property.

-

Parameters

-
+

Parameters

+
@@ -3387,9 +3344,8 @@
-

Returns

+

Returns

TRUE If compositing borders are drawn or FALSE otherwise.

-


@@ -3401,8 +3357,8 @@ gboolean enabled);

Set the “draw-compositing-indicators” property.

-

Parameters

-
+

Parameters

+
@@ -3431,8 +3387,8 @@ (WebKitSettings *settings);

Get the “enable-site-specific-quirks” property.

-

Parameters

-
+

Parameters

+
@@ -3446,9 +3402,8 @@
-

Returns

+

Returns

TRUE if site specific quirks are enabled or FALSE otherwise.

-


@@ -3460,8 +3415,8 @@ gboolean enabled);

Set the “enable-site-specific-quirks” property.

-

Parameters

-
+

Parameters

+
@@ -3489,8 +3444,8 @@ webkit_settings_get_enable_page_cache (WebKitSettings *settings);

Get the “enable-page-cache” property.

-

Parameters

-
+

Parameters

+
@@ -3504,9 +3459,8 @@
-

Returns

+

Returns

TRUE if page cache enabled or FALSE otherwise.

-


@@ -3517,8 +3471,8 @@ gboolean enabled);

Set the “enable-page-cache” property.

-

Parameters

-
+

Parameters

+
@@ -3546,8 +3500,8 @@ webkit_settings_get_user_agent (WebKitSettings *settings);

Get the “user-agent” property.

-

Parameters

-
+

Parameters

+
@@ -3561,9 +3515,8 @@
-

Returns

+

Returns

The current value of the user-agent property.

-


@@ -3574,8 +3527,8 @@ const gchar *user_agent);

Set the “user-agent” property.

-

Parameters

-
+

Parameters

+
@@ -3608,8 +3561,8 @@ agent. If no application name or version is given, the default user agent used will be used. If only the version is given, the default engine version is used with the given application name.

-

Parameters

-
+

Parameters

+
@@ -3643,8 +3596,8 @@ (WebKitSettings *settings);

Get the “enable-smooth-scrolling” property.

-

Parameters

-
+

Parameters

+
@@ -3658,9 +3611,8 @@
-

Returns

+

Returns

TRUE if smooth scrolling is enabled or FALSE otherwise.

-


@@ -3672,8 +3624,8 @@ gboolean enabled);

Set the “enable-smooth-scrolling” property.

-

Parameters

-
+

Parameters

+
@@ -3702,8 +3654,8 @@ (WebKitSettings *settings);

Get the “enable-accelerated-2d-canvas” property.

-

Parameters

-
+

Parameters

+
@@ -3717,11 +3669,10 @@
-

Returns

+

Returns

TRUE if accelerated 2D canvas is enabled or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -3732,8 +3683,8 @@ gboolean enabled);

Set the “enable-accelerated-2d-canvas” property.

-

Parameters

-
+

Parameters

+
@@ -3753,7 +3704,7 @@
-

Since 2.2

+

Since: 2.2


@@ -3763,8 +3714,8 @@ (WebKitSettings *settings);

Get the “enable-write-console-messages-to-stdout” property.

-

Parameters

-
+

Parameters

+
@@ -3778,12 +3729,11 @@
-

Returns

+

Returns

TRUE if writing console messages to stdout is enabled or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -3794,8 +3744,8 @@ gboolean enabled);

Set the “enable-write-console-messages-to-stdout” property.

-

Parameters

-
+

Parameters

+
@@ -3815,7 +3765,7 @@
-

Since 2.2

+

Since: 2.2


@@ -3825,8 +3775,8 @@ (WebKitSettings *settings);

Get the “enable-media-stream” property.

-

Parameters

-
+

Parameters

+
@@ -3840,11 +3790,10 @@
-

Returns

+

Returns

TRUE If mediastream support is enabled or FALSE otherwise.

-

-

Since 2.4

+

Since: 2.4


@@ -3855,8 +3804,8 @@ gboolean enabled);

Set the “enable-media-stream” property.

-

Parameters

-
+

Parameters

+
@@ -3876,7 +3825,7 @@
-

Since 2.4

+

Since: 2.4


@@ -3886,8 +3835,8 @@ (WebKitSettings *settings);

Get the “enable-spatial-navigation” property.

-

Parameters

-
+

Parameters

+
@@ -3901,11 +3850,10 @@
-

Returns

+

Returns

TRUE If HTML5 spatial navigation support is enabled or FALSE otherwise.

-

-

Since 2.2

+

Since: 2.2


@@ -3916,8 +3864,8 @@ gboolean enabled);

Set the “enable-spatial-navigation” property.

-

Parameters

-
+

Parameters

+
@@ -3937,7 +3885,7 @@
-

Since 2.2

+

Since: 2.2


@@ -3947,8 +3895,8 @@ (WebKitSettings *settings);

Get the “enable-mediasource” property.

-

Parameters

-
+

Parameters

+
@@ -3962,11 +3910,10 @@
-

Returns

+

Returns

TRUE If MediaSource support is enabled or FALSE otherwise.

-

-

Since 2.4

+

Since: 2.4


@@ -3977,8 +3924,8 @@ gboolean enabled);

Set the “enable-mediasource” property.

-

Parameters

-
+

Parameters

+
@@ -3998,7 +3945,7 @@
-

Since 2.4

+

Since: 2.4

@@ -4094,7 +4041,7 @@ using hardware accelerated drawing operations.

Flags: Read / Write / Construct

Default value: FALSE

-

Since 2.2

+

Since: 2.2


@@ -4201,7 +4148,7 @@

See also http://dev.w3.org/2011/webrtc/editor/getusermedia.html

Flags: Read / Write / Construct

Default value: FALSE

-

Since 2.4

+

Since: 2.4


@@ -4214,7 +4161,7 @@

See also http://www.w3.org/TR/media-source/

Flags: Read / Write / Construct

Default value: FALSE

-

Since 2.4

+

Since: 2.4


@@ -4302,7 +4249,7 @@ there are multiple elements, which element they probably wants.

Flags: Read / Write / Construct

Default value: FALSE

-

Since 2.3

+

Since: 2.3


@@ -4345,7 +4292,7 @@ sent to the console with console.log and related methods.

Flags: Read / Write / Construct

Default value: FALSE

-

Since 2.2

+

Since: 2.2


@@ -4493,7 +4440,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURIRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURIRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURIRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURIRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitURIRequest - +WebKitURIRequest: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -77,7 +77,7 @@

Properties

-
+
@@ -93,7 +93,7 @@

Types and Values

-
+
@@ -106,7 +106,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitURIRequest
 
@@ -124,8 +124,8 @@ webkit_uri_request_new (const gchar *uri);

Creates a new WebKitURIRequest for the given URI.

-

Parameters

-
+

Parameters

+
@@ -139,9 +139,8 @@
-

Returns

+

Returns

a new WebKitURIRequest

-


@@ -150,8 +149,8 @@
const gchar *
 webkit_uri_request_get_uri (WebKitURIRequest *request);
-

Parameters

-
+

Parameters

+
@@ -165,9 +164,8 @@
-

Returns

+

Returns

the uri of the WebKitURIRequest

-


@@ -179,8 +177,8 @@

Set the URI of request

-

Parameters

-
+

Parameters

+
@@ -208,8 +206,8 @@ webkit_uri_request_get_http_headers (WebKitURIRequest *request);

Get the HTTP headers of a WebKitURIRequest as a SoupMessageHeaders.

-

Parameters

-
+

Parameters

+
@@ -223,7 +221,7 @@
-

Returns

+

Returns

a SoupMessageHeaders with the HTTP headers of request or NULL if request is not an HTTP request.

@@ -252,7 +250,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURIResponse.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURIResponse.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURIResponse.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURIResponse.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitURIResponse - +WebKitURIResponse: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -83,7 +83,7 @@

Properties

-
+
@@ -123,7 +123,7 @@

Types and Values

-
+
@@ -136,7 +136,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitURIResponse
 
@@ -153,8 +153,8 @@
const gchar *
 webkit_uri_response_get_uri (WebKitURIResponse *response);
-

Parameters

-
+

Parameters

+
@@ -168,9 +168,8 @@
-

Returns

+

Returns

the uri of the WebKitURIResponse

-


@@ -183,8 +182,8 @@ example SOUP_STATUS_OK, though the server can respond with any unsigned integer.

-

Parameters

-
+

Parameters

+
@@ -198,10 +197,9 @@
-

Returns

+

Returns

the status code of response

-


@@ -213,8 +211,8 @@

Get the expected content length of the WebKitURIResponse. It can be 0 if the server provided an incorrect or missing Content-Length.

-

Parameters

-
+

Parameters

+
@@ -228,10 +226,9 @@
-

Returns

+

Returns

the expected content length of response .

-


@@ -240,8 +237,8 @@
const gchar *
 webkit_uri_response_get_mime_type (WebKitURIResponse *response);
-

Parameters

-
+

Parameters

+
@@ -255,9 +252,8 @@
-

Returns

+

Returns

the MIME type of the WebKitURIResponse

-


@@ -271,8 +267,8 @@ the 'Content-Disposition' HTTP header, or NULL if it's not present.

-

Parameters

-
+

Parameters

+
@@ -286,7 +282,7 @@
-

Returns

+

Returns

the suggested filename or NULL if the 'Content-Disposition' HTTP header is not present.

[transfer none]

@@ -346,7 +342,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURISchemeRequest.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURISchemeRequest.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitURISchemeRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitURISchemeRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitURISchemeRequest - +WebKitURISchemeRequest: WebKit2GTK+ Reference Manual + - + @@ -34,7 +34,7 @@

Functions

-
+
@@ -90,7 +90,7 @@

Types and Values

-
+
@@ -103,7 +103,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitURISchemeRequest
 
@@ -127,8 +127,8 @@

Get the URI scheme of request

-

Parameters

-
+

Parameters

+
@@ -142,10 +142,9 @@
-

Returns

+

Returns

the URI scheme of request

-


@@ -156,8 +155,8 @@

Get the URI of request

-

Parameters

-
+

Parameters

+
@@ -171,10 +170,9 @@
-

Returns

+

Returns

the full URI of request

-


@@ -185,8 +183,8 @@

Get the URI path of request

-

Parameters

-
+

Parameters

+
@@ -200,10 +198,9 @@
-

Returns

+

Returns

the URI path of request

-


@@ -214,8 +211,8 @@ (WebKitURISchemeRequest *request);

Get the WebKitWebView that initiated the request.

-

Parameters

-
+

Parameters

+
@@ -229,7 +226,7 @@
-

Returns

+

Returns

the WebKitWebView that initiated request .

[transfer none]

@@ -240,13 +237,13 @@

webkit_uri_scheme_request_finish ()

void
 webkit_uri_scheme_request_finish (WebKitURISchemeRequest *request,
-                                  GInputStream *stream,
+                                  GInputStream *stream,
                                   gint64 stream_length,
                                   const gchar *mime_type);

Finish a WebKitURISchemeRequest by setting the contents of the request and its mime type.

-

Parameters

-
+

Parameters

+
@@ -260,7 +257,7 @@ - + @@ -286,8 +283,8 @@ GError *error);

Finish a WebKitURISchemeRequest with a GError.

-

Parameters

-

stream

a GInputStream to read the contents of the request

a GInputStream to read the contents of the request

 
+

Parameters

+
@@ -307,7 +304,7 @@
-

Since 2.2

+

Since: 2.2

@@ -321,7 +318,6 @@
+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebContext.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebContext.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebContext.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebContext.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebContext - +WebKitWebContext: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -276,7 +276,7 @@

Signals

-
+
@@ -298,7 +298,7 @@

Types and Values

-
+
@@ -325,7 +325,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebContext
 
@@ -356,7 +356,7 @@ webkit_web_context_get_default (void);

Gets the default web context

-

Returns

+

Returns

a WebKitWebContext.

[transfer none]

@@ -370,8 +370,8 @@ value check the documentation of the function webkit_web_context_set_cache_model().

-

Parameters

-
+

Parameters

+
@@ -385,9 +385,8 @@
-

Returns

+

Returns

the current WebKitCacheModel

-


@@ -413,8 +412,8 @@ specifying WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER. The default value is WEBKIT_CACHE_MODEL_WEB_BROWSER.

-

Parameters

-
+

Parameters

+
@@ -443,8 +442,8 @@

Clears all resources currently cached. See also webkit_web_context_set_cache_model().

-

Parameters

-
+

Parameters

+
@@ -469,8 +468,8 @@ starting a download from a particular WebKitWebView use webkit_web_view_download_uri() instead.

-

Parameters

-
+

Parameters

+
@@ -491,7 +490,7 @@
-

Returns

+

Returns

a new WebKitDownload representing the the download operation.

[transfer full]

@@ -505,8 +504,8 @@

Get the WebKitCookieManager of context .

-

Parameters

-
+

Parameters

+
@@ -520,7 +519,7 @@
-

Returns

+

Returns

the WebKitCookieManager of context .

[transfer none]

@@ -537,8 +536,8 @@

To initialize the database you need to call webkit_web_context_set_favicon_database_directory().

-

Parameters

-
+

Parameters

+
@@ -552,7 +551,7 @@
-

Returns

+

Returns

the WebKitFaviconDatabase of context .

[transfer none]

@@ -575,8 +574,8 @@ called only once. Further calls for the same instance of WebKitWebContext won't cause any effect.

-

Parameters

-
+

Parameters

+
@@ -613,8 +612,8 @@ webkit_web_context_set_favicon_database_directory() for the first time.

-

Parameters

-
+

Parameters

+
@@ -628,7 +627,7 @@
-

Returns

+

Returns

the path of the directory of the favicons database associated with context , or NULL.

@@ -644,8 +643,8 @@

Get the WebKitSecurityManager of context .

-

Parameters

-
+

Parameters

+
@@ -659,7 +658,7 @@
-

Returns

+

Returns

the WebKitSecurityManager of context .

[transfer none]

@@ -674,8 +673,8 @@ const gchar *directory);

Set an additional directory where WebKit will look for plugins.

-

Parameters

-
+

Parameters

+
@@ -701,7 +700,7 @@

webkit_web_context_get_plugins ()

void
 webkit_web_context_get_plugins (WebKitWebContext *context,
-                                GCancellable *cancellable,
+                                GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
                                 gpointer user_data);

Asynchronously get the list of installed plugins.

@@ -709,8 +708,8 @@ will be called. You can then call webkit_web_context_get_plugins_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -724,7 +723,7 @@ - + @@ -746,12 +745,12 @@

webkit_web_context_get_plugins_finish ()

GList *
 webkit_web_context_get_plugins_finish (WebKitWebContext *context,
-                                       GAsyncResult *result,
+                                       GAsyncResult *result,
                                        GError **error);

Finish an asynchronous operation started with webkit_web_context_get_plugins.

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -765,7 +764,7 @@ - + @@ -777,7 +776,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

a GList of WebKitPlugin. You must free the GList with g_list_free() and unref the WebKitPlugins with g_object_unref() when you're done with them.

[element-type WebKitPlugin][transfer full]

@@ -791,8 +790,8 @@ (WebKitWebContext *context);

Get whether spell checking feature is currently enabled.

-

Parameters

-
+

Parameters

+
@@ -806,9 +805,8 @@
-

Returns

+

Returns

TRUE If spell checking is enabled, or FALSE otherwise.

-


@@ -820,8 +818,8 @@ gboolean enabled);

Enable or disable the spell checking feature.

-

Parameters

-
+

Parameters

+
@@ -854,8 +852,8 @@

See webkit_web_context_set_spell_checking_languages() for more details on the format of the languages in the list.

-

Parameters

-
+

Parameters

+
@@ -869,7 +867,7 @@
-

Returns

+

Returns

A NULL-terminated array of languages if available, or NULL otherwise.

[array zero-terminated=1][element-type utf8][transfer none]

@@ -892,8 +890,8 @@ least once in order to properly enable the spell checking feature in WebKit.

-

Parameters

-
+

Parameters

+
@@ -926,8 +924,8 @@ header that will be included in the network requests started by the WebKitWebContext.

-

Parameters

-
+

Parameters

+
@@ -959,8 +957,8 @@ as policy

-

Parameters

-
+

Parameters

+
@@ -990,8 +988,8 @@

Get the TLS errors policy of context

-

Parameters

-
+

Parameters

+
@@ -1005,9 +1003,8 @@
-

Returns

+

Returns

a WebKitTLSErrorsPolicy

-


@@ -1023,8 +1020,8 @@ “initialize-web-extensions” to call this method before anything is loaded.

-

Parameters

-
+

Parameters

+
@@ -1060,8 +1057,8 @@ “initialize-web-extensions” to call this method before anything is loaded.

-

Parameters

-
+

Parameters

+
@@ -1081,7 +1078,7 @@
-

Since 2.4

+

Since: 2.4


@@ -1094,8 +1091,8 @@ of hostname is requested the load will be performed more quickly.

-

Parameters

-
+

Parameters

+
@@ -1127,8 +1124,8 @@ This method must be called before loading anything in this context, otherwise it will not have any effect.

-

Parameters

-
+

Parameters

+
@@ -1161,8 +1158,8 @@ for the certificate present in info .

-

Parameters

-
+

Parameters

+
@@ -1187,7 +1184,7 @@
-

Since 2.4

+

Since: 2.4


@@ -1197,8 +1194,8 @@

Returns the current process model. For more information about this value see webkit_web_context_set_process_model().

-

Parameters

-
+

Parameters

+
@@ -1212,11 +1209,10 @@
-

Returns

+

Returns

the current WebKitProcessModel

-

-

Since 2.4

+

Since: 2.4


@@ -1242,8 +1238,8 @@ as early as possible in your application. Calling it later will make your application crash.

-

Parameters

-
+

Parameters

+
@@ -1263,7 +1259,7 @@
-

Since 2.4

+

Since: 2.4


@@ -1274,8 +1270,8 @@

Type definition for a function that will be called back when an URI request is made for a user registered URI scheme.

-

Parameters

-
+

Parameters

+
@@ -1390,8 +1386,8 @@
-

Parameters

-
+

Parameters

+
@@ -1442,8 +1438,8 @@

enum WebKitCacheModel

Enum values used for determining the WebKitWebContext cache model.

-

Members

-
+

Members

+
@@ -1486,8 +1482,8 @@

enum WebKitProcessModel

Enum values used for determining the WebKitWebContext process model.

-

Members

-
+

Members

+
@@ -1523,15 +1519,15 @@
-

Since 2.4

+

Since: 2.4


enum WebKitTLSErrorsPolicy

Enum values used to denote the TLS errors policy.

-

Members

-
+

Members

+
@@ -1570,8 +1566,8 @@ gpointer user_data)

This signal is emitted when a new download request is made.

-

Parameters

-
+

Parameters

+
@@ -1609,8 +1605,8 @@ webkit_web_context_set_web_extensions_initialization_user_data() and webkit_web_context_set_web_extensions_directory().

-

Parameters

-
+

Parameters

+
@@ -1631,12 +1627,11 @@

Flags: Run Last

-

Since 2.4

+

Since: 2.4

+
Generated by GTK-Doc V1.24.1
\ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebExtension.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebExtension.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebExtension.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebExtension.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebExtension - +WebKitWebExtension: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -70,7 +70,7 @@

Signals

-
+
@@ -85,7 +85,7 @@

Types and Values

-
+
@@ -98,7 +98,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebExtension
 
@@ -117,8 +117,8 @@

Type definition for a function that will be called to initialize the web extension when the web process starts.

-

Parameters

-
+

Parameters

+
@@ -144,8 +144,8 @@ as additional argument the user data set with webkit_web_context_set_web_extensions_initialization_user_data().

-

Parameters

-
+

Parameters

+
@@ -165,7 +165,7 @@
-

Since 2.4

+

Since: 2.4


@@ -176,8 +176,8 @@

Get the web page of the given page_id .

-

Parameters

-
+

Parameters

+
@@ -198,7 +198,7 @@
-

Returns

+

Returns

the WebKitWebPage for the given page_id , or NULL if the identifier doesn't correspond to an exsiting web page.

@@ -226,8 +226,8 @@

This signal is emitted when a new WebKitWebPage is created in the Web Process.

-

Parameters

-
+

Parameters

+
@@ -257,7 +257,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebInspector.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebInspector.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebInspector.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebInspector.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebInspector - +WebKitWebInspector: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -110,7 +110,7 @@

Properties

-
+
@@ -133,7 +133,7 @@

Signals

-
+
@@ -170,7 +170,7 @@

Types and Values

-
+
@@ -183,7 +183,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebInspector
 
@@ -191,7 +191,7 @@

Description

The WebKit Inspector is a graphical tool to inspect and change the content of a WebKitWebView. It also includes an interactive -JavaScript debugger. Using this class one can get a GtkWidget +JavaScript debugger. Using this class one can get a GtkWidget which can be embedded into an application to show the inspector.

The inspector is available when the WebKitSettings of the WebKitWebView has set the “enable-developer-extras” @@ -236,8 +236,8 @@ This might be NULL if the inspector hasn't been loaded yet, or it has been closed.

-

Parameters

-
+

Parameters

+
@@ -251,7 +251,7 @@
-

Returns

+

Returns

the WebKitWebViewBase used to display the inspector or NULL.

[transfer none]

@@ -267,8 +267,8 @@ has been closed or when inspected view was loaded from a HTML string instead of a URI.

-

Parameters

-
+

Parameters

+
@@ -282,9 +282,8 @@
-

Returns

+

Returns

the URI that is currently being inspected or NULL

-


@@ -296,8 +295,8 @@ view is currently attached to the same window that contains the inspected view.

-

Parameters

-
+

Parameters

+
@@ -311,10 +310,9 @@
-

Returns

+

Returns

TRUE if inspector is currently attached or FALSE otherwise

-


@@ -326,8 +324,8 @@ to be attached. The signal “attach” will be emitted. If the inspector is already attached it does nothing.

-

Parameters

-
+

Parameters

+
@@ -350,8 +348,8 @@ to be detached. The signal “detach” will be emitted. If the inspector is already detached it does nothing.

-

Parameters

-
+

Parameters

+
@@ -373,8 +371,8 @@

Request inspector to be shown.

-

Parameters

-
+

Parameters

+
@@ -396,8 +394,8 @@

Request inspector to be closed.

-

Parameters

-
+

Parameters

+
@@ -421,8 +419,8 @@ it's attached. If the inspector view is not attached this returns 0.

-

Parameters

-
+

Parameters

+
@@ -436,9 +434,8 @@
-

Returns

+

Returns

the height of the inspector view when attached

-

@@ -485,8 +482,8 @@

To prevent the inspector vew from being attached you can connect to this signal and simply return TRUE.

-

Parameters

-
+

Parameters

+
@@ -507,10 +504,9 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

@@ -528,11 +524,11 @@ window, the browser window should be raised and the tab containing the inspector view should be the active one. In both cases, if this signal is not handled, the default implementation -calls gtk_window_present() on the current toplevel GtkWindow of the +calls gtk_window_present() on the current toplevel GtkWindow of the inspector view.

-

Parameters

-
+

Parameters

+
@@ -553,10 +549,9 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

@@ -570,8 +565,8 @@ inspector window, you should connect to this signal and destroy your window.

-

Parameters

-
+

Parameters

+
@@ -608,8 +603,8 @@

To prevent the inspector vew from being detached you can connect to this signal and simply return TRUE.

-

Parameters

-
+

Parameters

+
@@ -630,10 +625,9 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

@@ -644,7 +638,7 @@ user_function (WebKitWebInspector *inspector, gpointer user_data)

Emitted when the inspector is requested to open in a separate window. -If this signal is not handled, a GtkWindow with the inspector will be +If this signal is not handled, a GtkWindow with the inspector will be created and shown, so you only need to handle this signal if you want to use your own window. This signal is emitted after “detach” to show @@ -652,8 +646,8 @@

To prevent the inspector from being shown you can connect to this signal and simply return TRUE

-

Parameters

-
+

Parameters

+
@@ -674,17 +668,15 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebPage.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebPage.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebPage.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebPage.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebPage - +WebKitWebPage: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -44,7 +44,7 @@
-WebKitDOMDocument * +WebKitDOMDocument * webkit_web_page_get_dom_document () @@ -78,7 +78,7 @@

Properties

-
+
@@ -94,7 +94,7 @@

Signals

-
+
@@ -116,7 +116,7 @@

Types and Values

-
+
@@ -129,7 +129,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebPage
 
@@ -142,13 +142,13 @@

Functions

webkit_web_page_get_dom_document ()

-
WebKitDOMDocument *
+
WebKitDOMDocument *
 webkit_web_page_get_dom_document (WebKitWebPage *web_page);
-

Get the WebKitDOMDocument currently loaded in web_page +

Get the WebKitDOMDocument currently loaded in web_page

-

Parameters

-
+

Parameters

+
@@ -162,8 +162,8 @@
-

Returns

-

the WebKitDOMDocument currently loaded, or NULL +

Returns

+

the WebKitDOMDocument currently loaded, or NULL if no document is currently loaded.

[transfer none]

@@ -175,8 +175,8 @@ webkit_web_page_get_id (WebKitWebPage *web_page);

Get the identifier of the WebKitWebPage

-

Parameters

-
+

Parameters

+
@@ -190,10 +190,9 @@
-

Returns

+

Returns

the identifier of web_page

-


@@ -207,8 +206,8 @@ signal of web_page .

-

Parameters

-
+

Parameters

+
@@ -222,11 +221,10 @@
-

Returns

+

Returns

the current active URI of web_view or NULL if nothing has been loaded yet.

-


@@ -236,8 +234,8 @@ webkit_web_page_get_main_frame (WebKitWebPage *web_page);

Returns the main frame of a WebKitWebPage.

-

Parameters

-
+

Parameters

+
@@ -251,12 +249,12 @@
-

Returns

+

Returns

the WebKitFrame that is the main frame of web_page .

[transfer none]

-

Since 2.2

+

Since: 2.2

@@ -290,8 +288,8 @@

You can wait for this signal to get the DOM document with webkit_web_page_get_dom_document().

-

Parameters

-
+

Parameters

+
@@ -334,8 +332,8 @@ parameter containing the response received by the server for the initial request.

-

Parameters

-
+

Parameters

+
@@ -366,17 +364,15 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to continue emission of the event.

-

Flags: Run Last

+
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebResource.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebResource.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebResource.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebResource.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebResource - +WebKitWebResource: WebKit2GTK+ Reference Manual + - + @@ -36,7 +36,7 @@

Functions

-
+
@@ -78,7 +78,7 @@

Properties

-
+
@@ -102,7 +102,7 @@

Signals

-
+
@@ -134,7 +134,7 @@

Types and Values

-
+
@@ -147,7 +147,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebResource
 
@@ -194,8 +194,8 @@ signal of resource .

-

Parameters

-
+

Parameters

+
@@ -209,10 +209,9 @@
-

Returns

+

Returns

the current active URI of resource

-


@@ -225,8 +224,8 @@ is received from the server. You can connect to notify::response signal to be notified when the response is received.

-

Parameters

-
+

Parameters

+
@@ -240,7 +239,7 @@
-

Returns

+

Returns

the WebKitURIResponse, or NULL if the response hasn't been received yet.

[transfer none]

@@ -251,7 +250,7 @@

webkit_web_resource_get_data ()

void
 webkit_web_resource_get_data (WebKitWebResource *resource,
-                              GCancellable *cancellable,
+                              GCancellable *cancellable,
                               GAsyncReadyCallback callback,
                               gpointer user_data);

Asynchronously get the raw data for resource @@ -260,8 +259,8 @@ will be called. You can then call webkit_web_resource_get_data_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -275,7 +274,7 @@ - + @@ -297,13 +296,13 @@

webkit_web_resource_get_data_finish ()

guchar *
 webkit_web_resource_get_data_finish (WebKitWebResource *resource,
-                                     GAsyncResult *result,
+                                     GAsyncResult *result,
                                      gsize *length,
                                      GError **error);

Finish an asynchronous operation started with webkit_web_resource_get_data().

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -317,7 +316,7 @@ - + @@ -334,7 +333,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

a string with the data of resource , or NULL in case of error. if length @@ -381,8 +380,8 @@

This signal is emitted when an error occurs during the resource load operation.

-

Parameters

-
+

Parameters

+
@@ -419,8 +418,8 @@ or due to an error. In case of errors “failed” signal is emitted before this one.

-

Parameters

-
+

Parameters

+
@@ -453,8 +452,8 @@ every time new data has been received. It's useful to know the progress of the resource load operation.

-

Parameters

-
+

Parameters

+
@@ -499,8 +498,8 @@ parameter containing the response received by the server for the initial request.

-

Parameters

-
+

Parameters

+
@@ -535,7 +534,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebViewGroup.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebViewGroup.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebViewGroup.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebViewGroup.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebViewGroup - +WebKitWebViewGroup: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

Functions

-
+
@@ -93,7 +93,7 @@

Properties

-
+
@@ -109,7 +109,7 @@

Types and Values

-
+
@@ -128,7 +128,7 @@

Object Hierarchy

-
    GObject
+
    GObject
     ╰── WebKitWebViewGroup
 
@@ -163,8 +163,8 @@ WebKitWebView, web views are added to the new group when created with webkit_web_view_new_with_group() passing the group.

-

Parameters

-
+

Parameters

+
@@ -178,7 +178,7 @@
-

Returns

+

Returns

a new WebKitWebViewGroup.

[transfer full]

@@ -190,8 +190,8 @@ webkit_web_view_group_get_name (WebKitWebViewGroup *group);

Gets the name that uniquely identifies the WebKitWebViewGroup.

-

Parameters

-
+

Parameters

+
@@ -205,10 +205,9 @@
-

Returns

+

Returns

the name of group

-


@@ -218,8 +217,8 @@ webkit_web_view_group_get_settings (WebKitWebViewGroup *group);

Gets the WebKitSettings of the WebKitWebViewGroup.

-

Parameters

-
+

Parameters

+
@@ -233,7 +232,7 @@
-

Returns

+

Returns

the settings of group .

[transfer none]

@@ -255,8 +254,8 @@ notify::settings signal of group .

-

Parameters

-
+

Parameters

+
@@ -297,8 +296,8 @@ where the host and path components can contain the wildcard character ('*') to represent zero or more other characters.

-

Parameters

-
+

Parameters

+
@@ -348,8 +347,8 @@

Remove all style sheets previously injected into this WebKitWebViewGroup via webkit_web_view_group_add_user_style_sheet().

-

Parameters

-
+

Parameters

+
@@ -377,8 +376,8 @@

enum WebKitInjectedContentFrames

Enum values used for determining into which frames content is injected.

-

Members

-
+

Members

+
@@ -419,7 +418,6 @@ +
Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebView.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebView.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWebView.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWebView.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWebView - +WebKitWebView: WebKit2GTK+ Reference Manual + - + @@ -37,7 +37,7 @@

Functions

-
+
@@ -45,7 +45,7 @@
-GtkWidget * +GtkWidget * webkit_web_view_new () @@ -53,7 +53,7 @@
-GtkWidget * +GtkWidget * webkit_web_view_new_with_context () @@ -61,7 +61,7 @@
-GtkWidget * +GtkWidget * webkit_web_view_new_with_related_view () @@ -69,7 +69,7 @@
-GtkWidget * +GtkWidget * webkit_web_view_new_with_group () @@ -402,7 +402,7 @@
-GInputStream * +GInputStream * webkit_web_view_save_finish () @@ -555,7 +555,7 @@

Properties

-
+
@@ -622,7 +622,7 @@

Signals

-
+
@@ -651,7 +651,7 @@ +GtkWidget* @@ -745,7 +745,7 @@

Types and Values

-
-GtkWidget* create Run Last
+
@@ -827,10 +827,10 @@
    GBoxed
     ├── WebKitJavascriptResult
     ╰── WebKitScriptDialog
-    GObject
+    GObject
     ╰── GInitiallyUnowned
-        ╰── GtkWidget
-            ╰── GtkContainer
+        ╰── GtkWidget
+            ╰── GtkContainer
                 ╰── WebKitWebViewBase
                     ╰── WebKitWebView
 
@@ -839,7 +839,7 @@

Implemented Interfaces

WebKitWebView implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

@@ -849,34 +849,33 @@ string. With WebKitSettings you can control various aspects of the rendering and loading of the content.

Note that WebKitWebView is scrollable by itself, so you don't need -to embed it in a GtkScrolledWindow.

+to embed it in a GtkScrolledWindow.

Functions

webkit_web_view_new ()

-
GtkWidget *
+
GtkWidget *
 webkit_web_view_new (void);

Creates a new WebKitWebView with the default WebKitWebContext and the default WebKitWebViewGroup. See also webkit_web_view_new_with_context() and webkit_web_view_new_with_group().

-

Returns

+

Returns

The newly created WebKitWebView widget

-


webkit_web_view_new_with_context ()

-
GtkWidget *
+
GtkWidget *
 webkit_web_view_new_with_context (WebKitWebContext *context);

Creates a new WebKitWebView with the given WebKitWebContext and the default WebKitWebViewGroup. See also webkit_web_view_new_with_group().

-

Parameters

-
+

Parameters

+
@@ -890,15 +889,14 @@
-

Returns

+

Returns

The newly created WebKitWebView widget

-


webkit_web_view_new_with_related_view ()

-
GtkWidget *
+
GtkWidget *
 webkit_web_view_new_with_related_view (WebKitWebView *web_view);

Creates a new WebKitWebView sharing the same web process with web_view . @@ -909,8 +907,8 @@ You can also use this method to implement other process models based on WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES, like for example, sharing the same web process for all the views in the same security domain.

-

Parameters

-
+

Parameters

+
@@ -924,24 +922,24 @@
-

Returns

+

Returns

The newly created WebKitWebView widget.

[transfer full]

-

Since 2.4

+

Since: 2.4


webkit_web_view_new_with_group ()

-
GtkWidget *
+
GtkWidget *
 webkit_web_view_new_with_group (WebKitWebViewGroup *group);

Creates a new WebKitWebView with the given WebKitWebViewGroup. The view will be part of group and it will be affected by the group properties like the settings.

-

Parameters

-
+

Parameters

+
@@ -955,9 +953,8 @@
-

Returns

+

Returns

The newly created WebKitWebView widget

-


@@ -968,8 +965,8 @@

Gets the web context of web_view .

-

Parameters

-
+

Parameters

+
@@ -983,7 +980,7 @@
-

Returns

+

Returns

the WebKitWebContext of the view.

[transfer none]

@@ -996,8 +993,8 @@

Gets the group web_view belongs to.

-

Parameters

-
+

Parameters

+
@@ -1011,7 +1008,7 @@
-

Returns

+

Returns

the WebKitWebViewGroup to which the view belongs.

[transfer none]

@@ -1026,8 +1023,8 @@ You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1075,8 +1072,8 @@ it defaults to "about:blank". The mime type of the document will be "text/html". You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1118,8 +1115,8 @@ error page, the the back-forward list is maintained appropriately. For everything else this method works the same way as webkit_web_view_load_html().

-

Parameters

-
+

Parameters

+
@@ -1163,8 +1160,8 @@ document will be "text/plain". You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1195,8 +1192,8 @@ You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1225,8 +1222,8 @@

Determines whether web_view has a previous history item.

-

Parameters

-
+

Parameters

+
@@ -1240,9 +1237,8 @@
-

Returns

+

Returns

TRUE if able to move back or FALSE otherwise.

-


@@ -1254,8 +1250,8 @@ You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1277,8 +1273,8 @@

Determines whether web_view has a next history item.

-

Parameters

-
+

Parameters

+
@@ -1292,9 +1288,8 @@
-

Returns

+

Returns

TRUE if able to move forward or FALSE otherwise.

-


@@ -1306,8 +1301,8 @@ You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1331,8 +1326,8 @@ to be notified when the title has been received.

-

Parameters

-
+

Parameters

+
@@ -1346,10 +1341,9 @@
-

Returns

+

Returns

The main frame document title of web_view .

-


@@ -1360,8 +1354,8 @@

Get the identifier of the WebKitWebPage corresponding to the WebKitWebView

-

Parameters

-
+

Parameters

+
@@ -1375,10 +1369,9 @@
-

Returns

+

Returns

the page ID of web_view .

-


@@ -1390,8 +1383,8 @@ . See also webkit_web_view_reload_bypass_cache().

-

Parameters

-
+

Parameters

+
@@ -1414,8 +1407,8 @@ without using any cached data.

-

Parameters

-
+

Parameters

+
@@ -1441,8 +1434,8 @@ “load-failed” signal will be emitted with WEBKIT_NETWORK_ERROR_CANCELLED error.

-

Parameters

-
+

Parameters

+
@@ -1469,8 +1462,8 @@ details about the status of the load operation, for example to start a spinner when the view is loading a page and stop it when it finishes.

-

Parameters

-
+

Parameters

+
@@ -1484,10 +1477,9 @@
-

Returns

+

Returns

TRUE if web_view is loading a page or FALSE otherwise.

-


@@ -1501,8 +1493,8 @@ connecting to the notify::estimated-load-progress signal of web_view .

-

Parameters

-
+

Parameters

+
@@ -1516,10 +1508,9 @@
-

Returns

+

Returns

an estimate of the of the percent complete for a document load as a range from 0.0 to 1.0.

-


@@ -1530,8 +1521,8 @@

Returns the current custom character encoding name of web_view .

-

Parameters

-
+

Parameters

+
@@ -1545,10 +1536,9 @@
-

Returns

+

Returns

the current custom character encoding name or NULL if no custom character encoding has been set.

-


@@ -1564,8 +1554,8 @@ current page. Setting the custom character encoding to NULL removes the character encoding override.

-

Parameters

-
+

Parameters

+
@@ -1594,8 +1584,8 @@

Obtains the WebKitBackForwardList associated with the given WebKitWebView. The WebKitBackForwardList is owned by the WebKitWebView.

-

Parameters

-
+

Parameters

+
@@ -1609,7 +1599,7 @@
-

Returns

+

Returns

the WebKitBackForwardList.

[transfer none]

@@ -1626,8 +1616,8 @@ You can monitor the load operation by connecting to “load-changed” signal.

-

Parameters

-
+

Parameters

+
@@ -1708,8 +1698,8 @@ signal of web_view .

-

Parameters

-
+

Parameters

+
@@ -1723,11 +1713,10 @@
-

Returns

+

Returns

the current active URI of web_view or NULL if nothing has been loaded yet.

-


@@ -1741,8 +1730,8 @@ to be notified when the favicon is available.

-

Parameters

-
+

Parameters

+
@@ -1756,7 +1745,7 @@
-

Returns

+

Returns

a pointer to a cairo_surface_t with the favicon or NULL if there's no icon associated with web_view .

@@ -1779,8 +1768,8 @@ group. See also webkit_web_view_group_set_settings().

-

Parameters

-
+

Parameters

+
@@ -1817,8 +1806,8 @@ WebKitWebViews of the same group. See also webkit_web_view_group_get_settings().

-

Parameters

-
+

Parameters

+
@@ -1832,7 +1821,7 @@
-

Returns

+

Returns

the WebKitSettings attached to web_view .

[transfer none]

@@ -1847,8 +1836,8 @@ that the window containing web_view should have.

-

Parameters

-
+

Parameters

+
@@ -1862,7 +1851,7 @@
-

Returns

+

Returns

the WebKitWindowProperties of web_view .

[transfer none]

@@ -1878,8 +1867,8 @@ , i.e. the factor by which the view contents are scaled with respect to their original size.

-

Parameters

-
+

Parameters

+
@@ -1909,8 +1898,8 @@ , i.e. the factor by which the view contents are scaled with respect to their original size.

-

Parameters

-
+

Parameters

+
@@ -1924,10 +1913,9 @@
-

Returns

+

Returns

the current zoom level of web_view

-


@@ -1937,7 +1925,7 @@ webkit_web_view_can_execute_editing_command (WebKitWebView *web_view, const gchar *command, - GCancellable *cancellable, + GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data);

Asynchronously execute the given editing command.

@@ -1945,8 +1933,8 @@ will be called. You can then call webkit_web_view_can_execute_editing_command_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -1965,7 +1953,7 @@ - + @@ -1988,12 +1976,12 @@
gboolean
 webkit_web_view_can_execute_editing_command_finish
                                (WebKitWebView *web_view,
-                                GAsyncResult *result,
+                                GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_web_view_can_execute_editing_command().

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -2007,7 +1995,7 @@ - + @@ -2019,9 +2007,8 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

TRUE if the editing command can be executed or FALSE otherwise

-


@@ -2037,8 +2024,8 @@ webkit_web_view_can_execute_editing_command() to check whether it's possible to execute the command.

-

Parameters

-
+

Parameters

+
@@ -2067,8 +2054,8 @@

Gets the WebKitFindController that will allow the caller to query the WebKitWebView for the text to look for.

-

Parameters

-
+

Parameters

+
@@ -2082,7 +2069,7 @@
-

Returns

+

Returns

the WebKitFindController associated to this particular WebKitWebView.

[transfer none]

@@ -2096,8 +2083,8 @@

Get the WebKitWebInspector associated to web_view

-

Parameters

-
+

Parameters

+
@@ -2111,7 +2098,7 @@
-

Returns

+

Returns

the WebKitWebInspector of web_view .

[transfer none]

@@ -2127,8 +2114,8 @@ to deserialize the result values of scripts executed with webkit_web_view_run_javascript().

-

Parameters

-
+

Parameters

+
@@ -2142,11 +2129,10 @@
-

Returns

+

Returns

the JSGlobalContextRef used by web_view to deserialize the result values of scripts.

-


@@ -2155,7 +2141,7 @@
void
 webkit_web_view_run_javascript (WebKitWebView *web_view,
                                 const gchar *script,
-                                GCancellable *cancellable,
+                                GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
                                 gpointer user_data);

Asynchronously run script @@ -2166,8 +2152,8 @@ will be called. You can then call webkit_web_view_run_javascript_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -2186,7 +2172,7 @@ - + @@ -2208,7 +2194,7 @@

webkit_web_view_run_javascript_finish ()

WebKitJavascriptResult *
 webkit_web_view_run_javascript_finish (WebKitWebView *web_view,
-                                       GAsyncResult *result,
+                                       GAsyncResult *result,
                                        GError **error);

Finish an asynchronous operation started with webkit_web_view_run_javascript().

This is an example of using webkit_web_view_run_javascript() with a script returning @@ -2317,8 +2303,8 @@

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -2332,7 +2318,7 @@ - + @@ -2344,7 +2330,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

a WebKitJavascriptResult with the result of the last executed statement in script or NULL in case of error.

[transfer full]

@@ -2357,7 +2343,7 @@ webkit_web_view_run_javascript_from_gresource (WebKitWebView *web_view, const gchar *resource, - GCancellable *cancellable, + GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data);

Asynchronously run the script from resource @@ -2369,8 +2355,8 @@ then call webkit_web_view_run_javascript_from_gresource_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -2389,7 +2375,7 @@ - + @@ -2412,13 +2398,13 @@
WebKitJavascriptResult *
 webkit_web_view_run_javascript_from_gresource_finish
                                (WebKitWebView *web_view,
-                                GAsyncResult *result,
+                                GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_web_view_run_javascript_from_gresource().

Check webkit_web_view_run_javascript_finish() for a usage example.

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -2432,7 +2418,7 @@ - + @@ -2444,7 +2430,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

a WebKitJavascriptResult with the result of the last executed statement in script or NULL in case of error.

[transfer full]

@@ -2459,8 +2445,8 @@

Whether or not a MIME type can be displayed in web_view .

-

Parameters

-
+

Parameters

+
@@ -2481,10 +2467,9 @@
-

Returns

+

Returns

TRUE if the MIME type mime_type can be displayed or FALSE otherwise

-


@@ -2493,7 +2478,7 @@
void
 webkit_web_view_save (WebKitWebView *web_view,
                       WebKitSaveMode save_mode,
-                      GCancellable *cancellable,
+                      GCancellable *cancellable,
                       GAsyncReadyCallback callback,
                       gpointer user_data);

Asynchronously save the current web page associated to the @@ -2505,8 +2490,8 @@ then call webkit_web_view_save_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -2525,7 +2510,7 @@ - + @@ -2545,14 +2530,14 @@

webkit_web_view_save_finish ()

-
GInputStream *
+
GInputStream *
 webkit_web_view_save_finish (WebKitWebView *web_view,
-                             GAsyncResult *result,
+                             GAsyncResult *result,
                              GError **error);

Finish an asynchronous operation started with webkit_web_view_save().

-

Parameters

-

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -2566,7 +2551,7 @@ - + @@ -2578,8 +2563,8 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

-

a GInputStream with the result of saving +

Returns

+

a GInputStream with the result of saving the current web page or NULL in case of error.

[transfer full]

@@ -2589,9 +2574,9 @@

webkit_web_view_save_to_file ()

void
 webkit_web_view_save_to_file (WebKitWebView *web_view,
-                              GFile *file,
+                              GFile *file,
                               WebKitSaveMode save_mode,
-                              GCancellable *cancellable,
+                              GCancellable *cancellable,
                               GAsyncReadyCallback callback,
                               gpointer user_data);

Asynchronously save the current web page associated to the @@ -2604,8 +2589,8 @@ then call webkit_web_view_save_to_file_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -2619,7 +2604,7 @@ - + @@ -2629,7 +2614,7 @@ - + @@ -2651,12 +2636,12 @@

webkit_web_view_save_to_file_finish ()

gboolean
 webkit_web_view_save_to_file_finish (WebKitWebView *web_view,
-                                     GAsyncResult *result,
+                                     GAsyncResult *result,
                                      GError **error);

Finish an asynchronous operation started with webkit_web_view_save_to_file().

-

Parameters

-

file

the GFile where the current web page should be saved to.

the GFile where the current web page should be saved to.

 

cancellable

a GCancellable or NULL to ignore.

a GCancellable or NULL to ignore.

[allow-none]
+

Parameters

+
@@ -2670,7 +2655,7 @@ - + @@ -2682,9 +2667,8 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

TRUE if the web page was successfully saved to a file or FALSE otherwise.

-


@@ -2696,8 +2680,8 @@

Requests downloading of the specified URI string for web_view .

-

Parameters

-
+

Parameters

+
@@ -2718,7 +2702,7 @@
-

Returns

+

Returns

a new WebKitDownload representing the the download operation.

[transfer full]

@@ -2737,8 +2721,8 @@ so that the new WebKitViewMode will be applied to the new contents.

-

Parameters

-
+

Parameters

+
@@ -2767,8 +2751,8 @@

Get the view mode of web_view .

-

Parameters

-
+

Parameters

+
@@ -2782,10 +2766,9 @@
-

Returns

+

Returns

the WebKitViewMode of web_view .

-


@@ -2793,9 +2776,9 @@

webkit_web_view_get_tls_info ()

gboolean
 webkit_web_view_get_tls_info (WebKitWebView *web_view,
-                              GTlsCertificate **certificate,
+                              GTlsCertificate **certificate,
                               GTlsCertificateFlags *errors);
-

Retrieves the GTlsCertificate associated with the main resource of web_view +

Retrieves the GTlsCertificate associated with the main resource of web_view , and the GTlsCertificateFlags showing what problems, if any, have been found with that certificate. @@ -2810,8 +2793,8 @@ if the current WebKitTLSErrorsPolicy is WEBKIT_TLS_ERRORS_POLICY_FAIL, in which case subresources that fail certificate verification will be blocked.

-

Parameters

-
+

Parameters

+
@@ -2825,7 +2808,7 @@ - + @@ -2838,11 +2821,10 @@

certificate

return location for a GTlsCertificate.

return location for a GTlsCertificate.

[out][transfer none]
-

Returns

+

Returns

TRUE if the web_view connection uses HTTPS and a response has been received from the server, or FALSE otherwise.

-


@@ -2852,7 +2834,7 @@ webkit_web_view_get_snapshot (WebKitWebView *web_view, WebKitSnapshotRegion region, WebKitSnapshotOptions options, - GCancellable *cancellable, + GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data);

Asynchronously retrieves a snapshot of web_view @@ -2865,8 +2847,8 @@ call webkit_web_view_get_snapshot_finish() to get the result of the operation.

-

Parameters

-
+

Parameters

+
@@ -2890,7 +2872,7 @@ - + @@ -2912,12 +2894,12 @@

webkit_web_view_get_snapshot_finish ()

cairo_surface_t *
 webkit_web_view_get_snapshot_finish (WebKitWebView *web_view,
-                                     GAsyncResult *result,
+                                     GAsyncResult *result,
                                      GError **error);

Finishes an asynchronous operation started with webkit_web_view_get_snapshot().

-

Parameters

-

cancellable

a GCancellable.

a GCancellable.

[allow-none]
+

Parameters

+
@@ -2931,7 +2913,7 @@ - + @@ -2943,7 +2925,7 @@

result

a GAsyncResult

a GAsyncResult

 
-

Returns

+

Returns

a cairo_surface_t with the retrieved snapshot or NULL in error.

[transfer full]

@@ -2957,8 +2939,8 @@ by one. This function is MT-safe and may be called from any thread.

-

Parameters

-
+

Parameters

+
@@ -2972,9 +2954,8 @@
-

Returns

+

Returns

The passed in WebKitJavascriptResult

-


@@ -2988,8 +2969,8 @@ released. This function is MT-safe and may be called from any thread.

-

Parameters

-
+

Parameters

+
@@ -3012,8 +2993,8 @@

Get the global Javascript context that should be used with the JSValueRef returned by webkit_javascript_result_get_value().

-

Parameters

-
+

Parameters

+
@@ -3027,9 +3008,8 @@
-

Returns

+

Returns

the JSGlobalContextRef for the WebKitJavascriptResult

-


@@ -3041,8 +3021,8 @@ . You should use the JSGlobalContextRef returned by webkit_javascript_result_get_global_context() to use the JSValueRef.

-

Parameters

-
+

Parameters

+
@@ -3056,9 +3036,8 @@
-

Returns

+

Returns

the JSValueRef of the WebKitJavascriptResult

-


@@ -3068,8 +3047,8 @@ webkit_script_dialog_get_dialog_type (WebKitScriptDialog *dialog);

Get the dialog type of a WebKitScriptDialog.

-

Parameters

-
+

Parameters

+
@@ -3083,10 +3062,9 @@
-

Returns

+

Returns

the WebKitScriptDialogType of dialog

-


@@ -3096,8 +3074,8 @@ webkit_script_dialog_get_message (WebKitScriptDialog *dialog);

Get the message of a WebKitScriptDialog.

-

Parameters

-
+

Parameters

+
@@ -3111,10 +3089,9 @@
-

Returns

+

Returns

the message of dialog .

-


@@ -3131,8 +3108,8 @@ It's an error to use this method with a WebKitScriptDialog that is not of type WEBKIT_SCRIPT_DIALOG_CONFIRM.

-

Parameters

-
+

Parameters

+
@@ -3163,8 +3140,8 @@ It's an error to use this method with a WebKitScriptDialog that is not of type WEBKIT_SCRIPT_DIALOG_PROMPT.

-

Parameters

-
+

Parameters

+
@@ -3178,10 +3155,9 @@
-

Returns

+

Returns

the default text of dialog

-


@@ -3197,8 +3173,8 @@ It's an error to use this method with a WebKitScriptDialog that is not of type WEBKIT_SCRIPT_DIALOG_PROMPT.

-

Parameters

-
+

Parameters

+
@@ -3227,8 +3203,8 @@

Return the main resource of web_view .

-

Parameters

-
+

Parameters

+
@@ -3242,7 +3218,7 @@
-

Returns

+

Returns

the main WebKitWebResource of the view or NULL if nothing has been loaded.

[transfer none]

@@ -3263,8 +3239,8 @@

Enum values used to denote the different events that happen during a WebKitWebView load operation.

-

Members

-
+

Members

+
@@ -3317,8 +3293,8 @@

Enum values used for determining the type of a policy decision during “decide-policy”.

-

Members

-
+

Members

+
@@ -3375,8 +3351,8 @@

Enum values to specify the different ways in which a WebKitWebView can save its current web page into a self-contained file.

-

Members

-
+

Members

+
@@ -3398,8 +3374,8 @@

Enum values to specify the different ways in which a WebKitWebView can display a web page.

-

Members

-
+

Members

+
@@ -3430,8 +3406,8 @@

Enum values used to denote the different events which can trigger the detection of insecure content.

-

Members

-
+

Members

+
@@ -3466,8 +3442,8 @@

Enum values used to specify options when taking a snapshot from a WebKitWebView.

-

Members

-
+

Members

+
@@ -3499,8 +3475,8 @@

Enum values used to specify the region from which to get a WebKitWebView snapshot

-

Members

-
+

Members

+
@@ -3613,8 +3589,8 @@

enum WebKitScriptDialogType

Enum values used for determining the type of WebKitScriptDialog

-

Members

-
+

Members

+
@@ -3702,7 +3678,7 @@ same web process. This property is not readable because the related web view is only valid during the object construction.

Flags: Write / Construct Only

-

Since 2.4

+

Since: 2.4


@@ -3770,8 +3746,8 @@

The default signal handler will run a default authentication dialog asynchronously for the user to interact with.

-

Parameters

-
+

Parameters

+
@@ -3797,13 +3773,12 @@
-

Returns

+

Returns

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

-

Flags: Run Last

-

Since 2.2

+

Since: 2.2


@@ -3816,8 +3791,8 @@ It is the owner's responsibility to handle this signal to hide or destroy the WebKitWebView, if necessary.

-

Parameters

-
+

Parameters

+
@@ -3845,7 +3820,7 @@
gboolean
 user_function (WebKitWebView       *web_view,
                WebKitContextMenu   *context_menu,
-               GdkEvent            *event,
+               GdkEvent            *event,
                WebKitHitTestResult *hit_test_result,
                gpointer             user_data)

Emmited when a context menu is about to be displayed to give the application @@ -3868,7 +3843,7 @@ To build your own menu, you can remove all items from the proposed menu with webkit_context_menu_remove_all(), add your own items and return FALSE so that the menu will be shown. You can also ignore the proposed WebKitContextMenu, - build your own GtkMenu and return TRUE to prevent the proposed menu from being shown. + build your own GtkMenu and return TRUE to prevent the proposed menu from being shown.

  • If you just want the default menu to be shown always, simply don't connect to this @@ -3882,8 +3857,8 @@ argument is only valid during the signal emission.

    -

    Parameters

    -
  • +

    Parameters

    +
    @@ -3902,7 +3877,7 @@ - + @@ -3919,10 +3894,9 @@

    event

    the GdkEvent that triggered the context menu

    the GdkEvent that triggered the context menu

     
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -3935,8 +3909,8 @@

    Emitted after “context-menu” signal, if the context menu is shown, to notify that the context menu is dismissed.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3961,7 +3935,7 @@

    The “create” signal

    -
    GtkWidget*
    +
    GtkWidget*
     user_function (WebKitWebView *web_view,
                    gpointer       user_data)

    Emitted when the creation of a new WebKitWebView is requested. @@ -3975,8 +3949,8 @@

    The new WebKitWebView should not be displayed to the user until the “ready-to-show” signal is emitted.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3997,7 +3971,7 @@
    -

    Returns

    +

    Returns

    a newly allocated WebKitWebView widget or NULL to propagate the event further.

    [transfer full]

    @@ -4083,8 +4057,8 @@ default signal handler will simply call webkit_policy_decision_use(). Only the first policy decision chosen for a given WebKitPolicyDecision will have any affect.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4116,10 +4090,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4138,8 +4111,8 @@ (e.g. hide some widgets that would otherwise be part of the full screen window).

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4160,10 +4133,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to continue emission of the event.

    -

    Flags: Run Last

    @@ -4183,8 +4155,8 @@ parameter to know exactly which kind of event has been detected (see WebKitInsecureContentEvent).

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4222,8 +4194,8 @@ client code to restore widgets hidden during the “enter-fullscreen” stage for instance.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4244,10 +4216,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to continue emission of the event.

    -

    Flags: Run Last

    @@ -4335,8 +4306,8 @@
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4384,8 +4355,8 @@

    By default, if the signal is not handled, a stock error page will be displayed. You need to handle the signal if you want to provide your own error page.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4421,10 +4392,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4438,7 +4408,7 @@ gpointer user_data)

    Emitted when a TLS error occurs during a load operation. The info -object contains information about the error such as the GTlsCertificate +object contains information about the error such as the GTlsCertificate and the GTlsCertificateFlags. To allow an exception for this certificate and this host use webkit_web_context_allow_tls_certificate_for_host().

    To handle this signal asynchronously you should copy the WebKitCertificateInfo @@ -4446,8 +4416,8 @@

    If FALSE is returned, “load-failed” will be emitted. The load will finish regardless of the returned value.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4478,13 +4448,12 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    -

    Since 2.4

    +

    Since: 2.4


    @@ -4501,13 +4470,13 @@ hit_test_result argument. The modifiers argument is a bitmask of -GdkModifierType flags indicating the state of modifier keys. +GdkModifierType flags indicating the state of modifier keys. The signal is emitted again when the mouse is moved out of the current element with a new hit_test_result .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4526,7 +4495,7 @@ - + @@ -4620,8 +4589,8 @@ webkit_permission_request_deny() will be called over the WebKitPermissionRequest.

    -

    Parameters

    -

    modifiers

    a bitmask of GdkModifierType

    a bitmask of GdkModifierType

     
    +

    Parameters

    +
    @@ -4647,10 +4616,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4672,8 +4640,8 @@

    You can connect to this signal and return TRUE to cancel the print operation or implement your own print dialog.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4699,10 +4667,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4720,8 +4687,8 @@ of web_view . See also webkit_web_view_get_window_properties().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4758,8 +4725,8 @@ of resource .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4805,8 +4772,8 @@ mainloop will be run to block user interaction in the parent WebKitWebView until the new dialog is closed.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4845,10 +4812,10 @@ argument.

    The default signal handler will asynchronously run a regular -GtkFileChooserDialog for the user to interact with.

    +GtkFileChooserDialog for the user to interact with.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4874,10 +4841,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4907,8 +4873,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4934,10 +4900,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -4961,8 +4926,8 @@ If the last reference is removed on a WebKitFormSubmissionRequest and the form has not been submitted, webkit_form_submission_request_submit() will be called.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4997,8 +4962,8 @@ gpointer user_data)

    This signal is emitted when the web process crashes.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5019,17 +4984,15 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWindowProperties.html webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWindowProperties.html --- webkitgtk-2.4.9/Documentation/webkit2gtk/html/WebKitWindowProperties.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/html/WebKitWindowProperties.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKit2GTK+ Reference Manual: WebKitWindowProperties - +WebKitWindowProperties: WebKit2GTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -110,7 +110,7 @@

    Properties

    -
    +
    @@ -124,7 +124,7 @@ +GdkRectangle * @@ -163,7 +163,7 @@

    Types and Values

    -
    -GdkRectangle * geometry Read / Write / Construct Only
    +
    @@ -176,7 +176,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWindowProperties
     
    @@ -290,11 +290,11 @@

    webkit_window_properties_get_geometry ()

    void
     webkit_window_properties_get_geometry (WebKitWindowProperties *window_properties,
    -                                       GdkRectangle *geometry);
    + GdkRectangle *geometry);

    Get the geometry the window should have on the screen when shown.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -323,8 +323,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should have the toolbar visible or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -338,9 +338,8 @@
    -

    Returns

    +

    Returns

    TRUE if toolbar should be visible or FALSE otherwise.

    -


    @@ -351,8 +350,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should have the statusbar visible or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,9 +365,8 @@
    -

    Returns

    +

    Returns

    TRUE if statusbar should be visible or FALSE otherwise.

    -


    @@ -379,8 +377,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should have the scrollbars visible or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -394,9 +392,8 @@
    -

    Returns

    +

    Returns

    TRUE if scrollbars should be visible or FALSE otherwise.

    -


    @@ -407,8 +404,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should have the menubar visible or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -422,9 +419,8 @@
    -

    Returns

    +

    Returns

    TRUE if menubar should be visible or FALSE otherwise.

    -


    @@ -435,8 +431,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should have the locationbar visible or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,9 +446,8 @@
    -

    Returns

    +

    Returns

    TRUE if locationbar should be visible or FALSE otherwise.

    -


    @@ -463,8 +458,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should be resizable by the user or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -478,9 +473,8 @@
    -

    Returns

    +

    Returns

    TRUE if the window should be resizable or FALSE otherwise.

    -


    @@ -491,8 +485,8 @@ (WebKitWindowProperties *window_properties);

    Get whether the window should be shown in fullscreen state or not.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -506,9 +500,8 @@
    -

    Returns

    +

    Returns

    TRUE if the window should be fullscreen or FALSE otherwise.

    -

    @@ -533,7 +526,7 @@

    The “geometry” property

    -
      “geometry”                 GdkRectangle *
    +
      “geometry”                 GdkRectangle *

    The size and position of the window on the screen.

    Flags: Read / Write / Construct Only

    @@ -592,7 +585,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitAuthenticationRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitAuthenticationRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitAuthenticationRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitAuthenticationRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitBackForwardListItem.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitBackForwardListItem.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitBackForwardListItem.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitBackForwardListItem.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitBackForwardList.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitBackForwardList.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitBackForwardList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitBackForwardList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitCertificateInfo.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitCertificateInfo.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitCertificateInfo.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitCertificateInfo.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitContextMenuItem.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitContextMenuItem.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitContextMenuItem.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitContextMenuItem.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitContextMenu.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitContextMenu.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitContextMenu.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitContextMenu.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitCookieManager.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitCookieManager.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitCookieManager.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitCookieManager.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitDownload.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitDownload.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitDownload.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitDownload.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitError.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitError.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitError.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitError.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFaviconDatabase.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFaviconDatabase.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFaviconDatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFaviconDatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFileChooserRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFileChooserRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFileChooserRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFileChooserRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFindController.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFindController.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFindController.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFindController.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFormSubmissionRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFormSubmissionRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFormSubmissionRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFormSubmissionRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFrame.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFrame.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitFrame.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitFrame.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitGeolocationPermissionRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitGeolocationPermissionRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitGeolocationPermissionRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitGeolocationPermissionRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitHitTestResult.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitHitTestResult.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitHitTestResult.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitHitTestResult.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitNavigationPolicyDecision.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitNavigationPolicyDecision.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitNavigationPolicyDecision.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitNavigationPolicyDecision.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPermissionRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPermissionRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPermissionRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPermissionRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPlugin.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPlugin.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPlugin.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPlugin.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPolicyDecision.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPolicyDecision.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPolicyDecision.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPolicyDecision.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPrintOperation.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPrintOperation.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitPrintOperation.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitPrintOperation.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitResponsePolicyDecision.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitResponsePolicyDecision.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitResponsePolicyDecision.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitResponsePolicyDecision.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitScriptWorld.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitScriptWorld.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitScriptWorld.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitScriptWorld.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitSecurityManager.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitSecurityManager.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitSecurityManager.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitSecurityManager.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitSettings.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitSettings.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitSettings.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitSettings.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURIRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURIRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURIRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURIRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURIResponse.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURIResponse.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURIResponse.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURIResponse.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURISchemeRequest.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURISchemeRequest.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitURISchemeRequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitURISchemeRequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitVersion.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitVersion.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitVersion.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitVersion.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebContext.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebContext.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebContext.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebContext.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebExtension.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebExtension.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebExtension.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebExtension.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebInspector.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebInspector.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebInspector.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebInspector.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebPage.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebPage.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebPage.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebPage.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebResource.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebResource.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebResource.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebResource.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebViewBase.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebViewBase.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebViewBase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebViewBase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebViewGroup.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebViewGroup.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebViewGroup.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebViewGroup.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebView.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebView.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWebView.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWebView.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWindowProperties.sgml webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWindowProperties.sgml --- webkitgtk-2.4.9/Documentation/webkit2gtk/tmpl/WebKitWindowProperties.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkit2gtk/tmpl/WebKitWindowProperties.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/annotation-glossary.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/annotation-glossary.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/annotation-glossary.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/annotation-glossary.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,12 +2,12 @@ -WebKitDOMGTK+ Reference Manual: Annotation Glossary - +Annotation Glossary: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,6 @@

    Don't free data after the code is done.

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/api-index-deprecated.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/api-index-deprecated.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/api-index-deprecated.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/api-index-deprecated.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: Index of deprecated symbols - +Index of deprecated symbols: WebKitDOMGTK+ Reference Manual + - + @@ -310,7 +310,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/ch01.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/ch01.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/ch01.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/ch01.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: Class Overview - +Class Overview: WebKitDOMGTK+ Reference Manual + - + @@ -515,7 +515,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index-all.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index-all.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index-all.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index-all.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: Index - +Index: WebKitDOMGTK+ Reference Manual + - + @@ -11438,7 +11438,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index.html 2016-03-14 08:06:04.000000000 +0000 @@ -3,10 +3,10 @@ WebKitDOMGTK+ Reference Manual: WebKitDOMGTK+ Reference Manual - + - + @@ -14,7 +14,7 @@
    -

    for WebKitDOMGTK+ 2.4.9

    +

    for WebKitDOMGTK+ 2.4.10


    @@ -517,7 +517,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/index.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/index.sgml 1970-01-01 00:00:00.000000000 +0000 @@ -1,4326 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/style.css webkitgtk-2.4.10/Documentation/webkitdomgtk/html/style.css --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/style.css 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/style.css 2016-03-14 08:06:04.000000000 +0000 @@ -60,7 +60,7 @@ div.informaltable table { border-collapse: separate; - border-spacing: 1em 0.5em; + border-spacing: 1em 0.3em; border: none; } @@ -148,6 +148,8 @@ h4 { color: #555753; + margin-top: 1em; + margin-bottom: 1em; } hr @@ -166,17 +168,16 @@ padding-bottom: 0.25em; } -dl.toc > dd > dl > dt +dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; + font-weight: bold; } -dl.toc > dt +dl.toc > dl { - padding-top: 1em; padding-bottom: 0.5em; - font-weight: bold; } .parameter @@ -346,7 +347,9 @@ } @media screen { - sup a.footnote + /* these have a as a first child, but since there are no parent selectors + * we can't use that. */ + a.footnote { position: relative; top: 0em ! important; diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAttr.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAttr.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAttr.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAttr.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMAttr - +WebKitDOMAttr: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -95,7 +95,7 @@

    Properties

    -
    +
    @@ -135,7 +135,7 @@

    Types and Values

    -
    +
    @@ -148,7 +148,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMAttr
    @@ -172,8 +172,8 @@
     
    gchar *
     webkit_dom_attr_get_name (WebKitDOMAttr *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -187,9 +187,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -198,8 +197,8 @@
    gboolean
     webkit_dom_attr_get_specified (WebKitDOMAttr *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -213,9 +212,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -224,8 +222,8 @@
    gchar *
     webkit_dom_attr_get_value (WebKitDOMAttr *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -239,9 +237,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -252,8 +249,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,8 +282,8 @@
    WebKitDOMElement *
     webkit_dom_attr_get_owner_element (WebKitDOMAttr *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -300,7 +297,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -311,8 +308,8 @@
    gboolean
     webkit_dom_attr_get_is_id (WebKitDOMAttr *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -326,9 +323,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -384,7 +380,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAudioTrack.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAudioTrack.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAudioTrack.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAudioTrack.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMAudioTrack - +WebKitDOMAudioTrack: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -135,7 +135,7 @@

    Types and Values

    -
    +
    @@ -148,7 +148,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMAudioTrack
     
    @@ -165,8 +165,8 @@
    gchar *
     webkit_dom_audio_track_get_id (WebKitDOMAudioTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -180,9 +180,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -191,8 +190,8 @@
    gchar *
     webkit_dom_audio_track_get_kind (WebKitDOMAudioTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -206,9 +205,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -217,8 +215,8 @@
    gchar *
     webkit_dom_audio_track_get_label (WebKitDOMAudioTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -232,9 +230,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -243,8 +240,8 @@
    gchar *
     webkit_dom_audio_track_get_language (WebKitDOMAudioTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -258,9 +255,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -269,8 +265,8 @@
    gboolean
     webkit_dom_audio_track_get_enabled (WebKitDOMAudioTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -284,9 +280,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -296,8 +291,8 @@ webkit_dom_audio_track_set_enabled (WebKitDOMAudioTrack *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -372,7 +367,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAudioTrackList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAudioTrackList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMAudioTrackList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMAudioTrackList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMAudioTrackList - +WebKitDOMAudioTrackList: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -94,7 +94,7 @@

    Types and Values

    -
    +
    @@ -107,7 +107,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMAudioTrackList
     
    @@ -131,8 +131,8 @@ webkit_dom_audio_track_list_item (WebKitDOMAudioTrackList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -153,7 +153,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAudioTrack.

    [transfer full]

    @@ -166,8 +166,8 @@ (WebKitDOMAudioTrackList *self, const gchar *id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -188,7 +188,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAudioTrack.

    [transfer full]

    @@ -206,8 +206,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,9 +233,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -246,8 +245,8 @@ (WebKitDOMAudioTrackList *self);

    webkit_dom_audio_track_list_get_length is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,9 +260,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -287,7 +285,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBarProp.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBarProp.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBarProp.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBarProp.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMBarProp - +WebKitDOMBarProp: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -67,7 +67,7 @@

    Types and Values

    -
    +
    @@ -80,7 +80,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMBarProp
     
    @@ -97,8 +97,8 @@
    gboolean
     webkit_dom_bar_prop_get_visible (WebKitDOMBarProp *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -112,9 +112,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -139,7 +138,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBatteryManager.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBatteryManager.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBatteryManager.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBatteryManager.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMBatteryManager - +WebKitDOMBatteryManager: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -87,7 +87,7 @@

    Properties

    -
    +
    @@ -119,7 +119,7 @@

    Types and Values

    -
    +
    @@ -132,7 +132,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMBatteryManager
     
    @@ -162,8 +162,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -189,9 +189,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -202,8 +201,8 @@ (WebKitDOMBatteryManager *self);

    webkit_dom_battery_manager_get_charging is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -217,9 +216,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -229,8 +227,8 @@ webkit_dom_battery_manager_get_charging_time (WebKitDOMBatteryManager *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -244,9 +242,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -256,8 +253,8 @@ webkit_dom_battery_manager_get_discharging_time (WebKitDOMBatteryManager *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -271,9 +268,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -282,8 +278,8 @@
    gdouble
     webkit_dom_battery_manager_get_level (WebKitDOMBatteryManager *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -297,9 +293,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -

    @@ -348,7 +343,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBlob.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBlob.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMBlob.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMBlob.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMBlob - +WebKitDOMBlob: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -93,7 +93,7 @@

    Types and Values

    -
    +
    @@ -106,7 +106,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMBlob
                 ╰── WebKitDOMFile
    @@ -127,8 +127,8 @@
                            gint64 end,
                            const gchar *contentType);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -159,7 +159,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBlob.

    [transfer full]

    @@ -170,8 +170,8 @@
    guint64
     webkit_dom_blob_get_size (WebKitDOMBlob *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -185,9 +185,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -201,10 +200,6 @@

    webkit_dom_blob_webkit_slice is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -236,7 +231,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCDATASection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCDATASection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCDATASection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCDATASection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCDATASection - +WebKitDOMCDATASection: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Types and Values

    -
    +
    @@ -48,7 +48,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMCharacterData
    @@ -69,6 +69,7 @@
     

    Functions

    +

    Types and Values

    @@ -81,7 +82,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCharacterData.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCharacterData.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCharacterData.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCharacterData.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCharacterData - +WebKitDOMCharacterData: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -119,7 +119,7 @@

    Properties

    -
    +
    @@ -142,7 +142,7 @@

    Types and Values

    -
    +
    @@ -155,7 +155,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMCharacterData
    @@ -186,8 +186,8 @@
                                     gulong length,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -218,9 +218,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -231,8 +230,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -267,8 +266,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -308,8 +307,8 @@ gulong length, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -351,8 +350,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -395,8 +394,8 @@ webkit_dom_character_data_remove (WebKitDOMCharacterData *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -423,8 +422,8 @@
    gchar *
     webkit_dom_character_data_get_data (WebKitDOMCharacterData *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -438,9 +437,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -451,8 +449,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -484,8 +482,8 @@
    gulong
     webkit_dom_character_data_get_length (WebKitDOMCharacterData *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -499,9 +497,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -533,7 +530,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMComment.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMComment.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMComment.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMComment.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMComment - +WebKitDOMComment: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Types and Values

    -
    +
    @@ -48,7 +48,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMCharacterData
    @@ -68,6 +68,7 @@
     

    Functions

    +

    Types and Values

    @@ -80,7 +81,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMConsole.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMConsole.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMConsole.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMConsole.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMConsole - +WebKitDOMConsole: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -69,7 +69,7 @@

    Types and Values

    -
    +
    @@ -82,7 +82,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMConsole
     
    @@ -100,8 +100,8 @@ webkit_dom_console_time (WebKitDOMConsole *self, const gchar *title);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -128,8 +128,8 @@
    void
     webkit_dom_console_group_end (WebKitDOMConsole *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -151,10 +151,6 @@

    webkit_dom_console_get_memory is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -168,7 +164,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSRule.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSRule.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSRule.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSRule.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCSSRule - +WebKitDOMCSSRule: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -113,7 +113,7 @@

    Types and Values

    -
    +
    @@ -126,7 +126,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMCSSRule
     
    @@ -143,8 +143,8 @@
    gchar *
     webkit_dom_css_rule_get_css_text (WebKitDOMCSSRule *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -158,9 +158,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -171,8 +170,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -205,8 +204,8 @@ webkit_dom_css_rule_get_parent_style_sheet (WebKitDOMCSSRule *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -220,7 +219,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleSheet.

    [transfer full]

    @@ -231,8 +230,8 @@
    WebKitDOMCSSRule *
     webkit_dom_css_rule_get_parent_rule (WebKitDOMCSSRule *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -246,7 +245,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRule.

    [transfer full]

    @@ -295,7 +294,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSRuleList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSRuleList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSRuleList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSRuleList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCSSRuleList - +WebKitDOMCSSRuleList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMCSSRuleList
     
    @@ -108,8 +108,8 @@ webkit_dom_css_rule_list_item (WebKitDOMCSSRuleList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRule.

    [transfer full]

    @@ -141,8 +141,8 @@
    gulong
     webkit_dom_css_rule_list_get_length (WebKitDOMCSSRuleList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -156,9 +156,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -182,7 +181,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleDeclaration.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleDeclaration.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleDeclaration.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleDeclaration.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCSSStyleDeclaration - +WebKitDOMCSSStyleDeclaration: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -142,7 +142,7 @@

    Properties

    -
    +
    @@ -171,7 +171,7 @@

    Types and Values

    -
    +
    @@ -184,7 +184,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMCSSStyleDeclaration
     
    @@ -203,8 +203,8 @@ (WebKitDOMCSSStyleDeclaration *self, const gchar *propertyName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -225,9 +225,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -239,8 +238,8 @@ const gchar *propertyName, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -266,9 +265,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -279,8 +277,8 @@ (WebKitDOMCSSStyleDeclaration *self, const gchar *propertyName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -301,9 +299,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -317,8 +314,8 @@ const gchar *priority, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -361,8 +358,8 @@ webkit_dom_css_style_declaration_item (WebKitDOMCSSStyleDeclaration *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -383,9 +380,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -396,8 +392,8 @@ (WebKitDOMCSSStyleDeclaration *self, const gchar *propertyName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -418,9 +414,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -431,8 +426,8 @@ (WebKitDOMCSSStyleDeclaration *self, const gchar *propertyName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -453,9 +448,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -465,8 +459,8 @@ webkit_dom_css_style_declaration_get_css_text (WebKitDOMCSSStyleDeclaration *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -480,9 +474,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -494,8 +487,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -528,8 +521,8 @@ webkit_dom_css_style_declaration_get_length (WebKitDOMCSSStyleDeclaration *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -543,9 +536,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -555,8 +547,8 @@ webkit_dom_css_style_declaration_get_parent_rule (WebKitDOMCSSStyleDeclaration *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -570,7 +562,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRule.

    [transfer full]

    @@ -585,10 +577,6 @@

    webkit_dom_css_style_declaration_get_property_css_value is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -626,7 +614,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleSheet.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleSheet.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleSheet.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSStyleSheet.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCSSStyleSheet - +WebKitDOMCSSStyleSheet: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -102,7 +102,7 @@

    Properties

    -
    +
    @@ -132,7 +132,7 @@

    Types and Values

    -
    +
    @@ -145,7 +145,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStyleSheet
                 ╰── WebKitDOMCSSStyleSheet
    @@ -167,8 +167,8 @@
                                     gulong index,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -199,9 +199,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -213,8 +212,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -250,8 +249,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -287,9 +286,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -301,8 +299,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -335,8 +333,8 @@ webkit_dom_css_style_sheet_get_owner_rule (WebKitDOMCSSStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -350,7 +348,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRule.

    [transfer full]

    @@ -362,8 +360,8 @@ webkit_dom_css_style_sheet_get_css_rules (WebKitDOMCSSStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -377,7 +375,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRuleList.

    [transfer full]

    @@ -388,8 +386,8 @@
    WebKitDOMCSSRuleList *
     webkit_dom_css_style_sheet_get_rules (WebKitDOMCSSStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -403,7 +401,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSRuleList.

    [transfer full]

    @@ -443,7 +441,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSValue.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSValue.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMCSSValue.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMCSSValue.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCSSValue - +WebKitDOMCSSValue: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -93,7 +93,7 @@

    Types and Values

    -
    +
    @@ -106,7 +106,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMCSSValue
     
    @@ -123,8 +123,8 @@
    gchar *
     webkit_dom_css_value_get_css_text (WebKitDOMCSSValue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -138,9 +138,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -151,8 +150,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -185,8 +184,8 @@ webkit_dom_css_value_get_css_value_type (WebKitDOMCSSValue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,9 +199,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -

    @@ -235,7 +233,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDatabase.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDatabase.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDatabase - +WebKitDOMDatabase: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -68,7 +68,7 @@

    Types and Values

    -
    +
    @@ -81,7 +81,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDatabase
     
    @@ -98,8 +98,8 @@
    gchar *
     webkit_dom_database_get_version (WebKitDOMDatabase *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -113,9 +113,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -140,7 +139,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocumentFragment.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocumentFragment.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocumentFragment.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocumentFragment.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDocumentFragment - +WebKitDOMDocumentFragment: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Types and Values

    -
    +
    @@ -75,7 +75,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMDocumentFragment
    @@ -103,8 +103,8 @@
                                     const gchar *selectors,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -144,8 +144,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -171,7 +171,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -188,7 +188,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocument.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocument.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocument.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocument.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDocument - +WebKitDOMDocument: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -775,7 +775,7 @@

    Properties

    -
    +
    @@ -1022,7 +1022,7 @@

    Types and Values

    -
    +
    @@ -1035,7 +1035,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMDocument
    @@ -1062,8 +1062,8 @@
                                         const gchar *tagName,
                                         GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1089,7 +1089,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1101,8 +1101,8 @@ webkit_dom_document_create_document_fragment (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1116,7 +1116,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentFragment.

    [transfer none]

    @@ -1128,8 +1128,8 @@ webkit_dom_document_create_text_node (WebKitDOMDocument *self, const gchar *data);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1150,7 +1150,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMText.

    [transfer none]

    @@ -1162,8 +1162,8 @@ webkit_dom_document_create_comment (WebKitDOMDocument *self, const gchar *data);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1184,7 +1184,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMComment.

    [transfer none]

    @@ -1198,8 +1198,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1225,7 +1225,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCDATASection.

    [transfer none]

    @@ -1240,8 +1240,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1272,7 +1272,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMProcessingInstruction.

    [transfer none]

    @@ -1285,8 +1285,8 @@ const gchar *name, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1312,7 +1312,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -1326,8 +1326,8 @@ const gchar *name, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1353,7 +1353,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEntityReference.

    [transfer none]

    @@ -1366,8 +1366,8 @@ (WebKitDOMDocument *self, const gchar *tagname);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1388,7 +1388,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1402,8 +1402,8 @@ gboolean deep, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1434,7 +1434,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1448,8 +1448,8 @@ const gchar *qualifiedName, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1480,7 +1480,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1495,8 +1495,8 @@ const gchar *qualifiedName, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1527,7 +1527,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -1541,8 +1541,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1568,7 +1568,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1580,8 +1580,8 @@ webkit_dom_document_get_element_by_id (WebKitDOMDocument *self, const gchar *elementId);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1602,7 +1602,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1615,8 +1615,8 @@ WebKitDOMNode *source, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1642,7 +1642,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1655,8 +1655,8 @@ const gchar *eventType, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1682,7 +1682,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEvent.

    [transfer full]

    @@ -1693,8 +1693,8 @@
    WebKitDOMRange *
     webkit_dom_document_create_range (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1708,7 +1708,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMRange.

    [transfer full]

    @@ -1725,8 +1725,8 @@ gboolean expandEntityReferences, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1767,7 +1767,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeIterator.

    [transfer full]

    @@ -1784,8 +1784,8 @@ gboolean expandEntityReferences, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1826,7 +1826,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTreeWalker.

    [transfer full]

    @@ -1840,8 +1840,8 @@ WebKitDOMElement *element, const gchar *pseudoElement);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1867,7 +1867,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleDeclaration.

    [transfer full]

    @@ -1881,8 +1881,8 @@ WebKitDOMXPathNSResolver *resolver, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1913,7 +1913,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMXPathExpression.

    [transfer full]

    @@ -1926,8 +1926,8 @@ (WebKitDOMDocument *self, WebKitDOMNode *nodeResolver);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1948,7 +1948,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMXPathNSResolver.

    [transfer full]

    @@ -1965,8 +1965,8 @@ WebKitDOMXPathResult *inResult, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2012,7 +2012,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMXPathResult.

    [transfer full]

    @@ -2026,8 +2026,8 @@ gboolean userInterface, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2058,9 +2058,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2071,8 +2070,8 @@ (WebKitDOMDocument *self, const gchar *command);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2093,9 +2092,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2106,8 +2104,8 @@ (WebKitDOMDocument *self, const gchar *command);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2128,9 +2126,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2141,8 +2138,8 @@ (WebKitDOMDocument *self, const gchar *command);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2163,9 +2160,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2176,8 +2172,8 @@ (WebKitDOMDocument *self, const gchar *command);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2198,9 +2194,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2211,8 +2206,8 @@ (WebKitDOMDocument *self, const gchar *command);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2233,9 +2228,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2246,8 +2240,8 @@ (WebKitDOMDocument *self, const gchar *elementName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2268,7 +2262,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -2282,8 +2276,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2309,7 +2303,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2323,8 +2317,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2350,7 +2344,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMRange.

    [transfer full]

    @@ -2362,8 +2356,8 @@ webkit_dom_document_create_css_style_declaration (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2377,7 +2371,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleDeclaration.

    [transfer full]

    @@ -2390,8 +2384,8 @@ (WebKitDOMDocument *self, const gchar *tagname);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2412,7 +2406,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -2425,8 +2419,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2452,7 +2446,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2466,8 +2460,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2493,7 +2487,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -2505,8 +2499,8 @@ webkit_dom_document_webkit_cancel_full_screen (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2527,8 +2521,8 @@ webkit_dom_document_webkit_exit_fullscreen (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2549,8 +2543,8 @@ webkit_dom_document_webkit_exit_pointer_lock (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2571,8 +2565,8 @@ webkit_dom_document_webkit_get_named_flows (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2586,7 +2580,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMNamedFlowCollection.

    [transfer full]

    @@ -2609,8 +2603,8 @@ gfloat webkitForce, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2686,7 +2680,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTouch.

    [transfer full]

    @@ -2697,8 +2691,8 @@
    WebKitDOMDocumentType *
     webkit_dom_document_get_doctype (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2712,7 +2706,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentType.

    [transfer none]

    @@ -2724,8 +2718,8 @@ webkit_dom_document_get_implementation (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2739,7 +2733,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMImplementation.

    [transfer full]

    @@ -2751,8 +2745,8 @@ webkit_dom_document_get_document_element (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2766,7 +2760,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2778,8 +2772,8 @@ webkit_dom_document_get_input_encoding (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2793,9 +2787,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2804,8 +2797,8 @@
    gchar *
     webkit_dom_document_get_xml_encoding (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2819,9 +2812,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2830,8 +2822,8 @@
    gchar *
     webkit_dom_document_get_xml_version (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2845,9 +2837,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2858,8 +2849,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2892,8 +2883,8 @@ webkit_dom_document_get_xml_standalone (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2907,9 +2898,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2921,8 +2911,8 @@ gboolean value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2954,8 +2944,8 @@
    gchar *
     webkit_dom_document_get_document_uri (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2969,9 +2959,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2981,8 +2970,8 @@ webkit_dom_document_set_document_uri (WebKitDOMDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3009,8 +2998,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_document_get_default_view (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3024,7 +3013,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -3035,8 +3024,8 @@
    WebKitDOMStyleSheetList *
     webkit_dom_document_get_style_sheets (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3050,7 +3039,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheetList.

    [transfer none]

    @@ -3061,8 +3050,8 @@
    gchar *
     webkit_dom_document_get_title (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3076,9 +3065,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3088,8 +3076,8 @@ webkit_dom_document_set_title (WebKitDOMDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3116,8 +3104,8 @@
    gchar *
     webkit_dom_document_get_referrer (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3131,9 +3119,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3142,8 +3129,8 @@
    gchar *
     webkit_dom_document_get_domain (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3157,9 +3144,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3168,8 +3154,8 @@
    gchar *
     webkit_dom_document_get_url (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3183,9 +3169,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3195,8 +3180,8 @@ webkit_dom_document_get_cookie (WebKitDOMDocument *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3217,9 +3202,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3230,8 +3214,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3263,8 +3247,8 @@
    WebKitDOMHTMLElement *
     webkit_dom_document_get_body (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3278,7 +3262,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -3291,8 +3275,8 @@ WebKitDOMHTMLElement *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3324,8 +3308,8 @@
    WebKitDOMHTMLHeadElement *
     webkit_dom_document_get_head (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3339,7 +3323,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLHeadElement.

    [transfer none]

    @@ -3350,8 +3334,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_document_get_images (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3365,7 +3349,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -3376,8 +3360,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_document_get_applets (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3391,7 +3375,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -3402,8 +3386,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_document_get_links (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3417,7 +3401,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -3428,8 +3412,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_document_get_forms (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3443,7 +3427,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -3454,8 +3438,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_document_get_anchors (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3469,7 +3453,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -3480,8 +3464,8 @@
    gchar *
     webkit_dom_document_get_last_modified (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3495,9 +3479,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3506,8 +3489,8 @@
    gchar *
     webkit_dom_document_get_charset (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3521,9 +3504,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3533,8 +3515,8 @@ webkit_dom_document_set_charset (WebKitDOMDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3562,8 +3544,8 @@ webkit_dom_document_get_default_charset (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3577,9 +3559,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3588,8 +3569,8 @@
    gchar *
     webkit_dom_document_get_ready_state (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3603,9 +3584,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3614,8 +3594,8 @@
    gchar *
     webkit_dom_document_get_character_set (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3629,9 +3609,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3641,8 +3620,8 @@ webkit_dom_document_get_preferred_stylesheet_set (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3656,9 +3635,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3668,8 +3646,8 @@ webkit_dom_document_get_selected_stylesheet_set (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3683,9 +3661,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3696,8 +3673,8 @@ (WebKitDOMDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3724,8 +3701,8 @@
    gchar *
     webkit_dom_document_get_compat_mode (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3739,9 +3716,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3751,8 +3727,8 @@ webkit_dom_document_get_webkit_is_full_screen (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3766,9 +3742,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3778,8 +3753,8 @@ webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3793,9 +3768,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3805,8 +3779,8 @@ webkit_dom_document_get_webkit_current_full_screen_element (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3820,7 +3794,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -3832,8 +3806,8 @@ webkit_dom_document_get_webkit_fullscreen_enabled (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3847,9 +3821,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3859,8 +3832,8 @@ webkit_dom_document_get_webkit_fullscreen_element (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3874,7 +3847,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -3886,8 +3859,8 @@ webkit_dom_document_get_webkit_pointer_lock_element (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3901,7 +3874,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -3913,8 +3886,8 @@ webkit_dom_document_get_visibility_state (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3928,9 +3901,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3939,8 +3911,8 @@
    gboolean
     webkit_dom_document_get_hidden (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3954,9 +3926,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3966,8 +3937,8 @@ webkit_dom_document_get_security_policy (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3981,7 +3952,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMSecurityPolicy.

    [transfer full]

    @@ -3993,8 +3964,8 @@ webkit_dom_document_get_current_script (WebKitDOMDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4008,7 +3979,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLScriptElement.

    [transfer none]

    @@ -4021,10 +3992,6 @@

    webkit_dom_document_get_webkit_hidden is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -4035,10 +4002,6 @@

    webkit_dom_document_get_webkit_visibility_state is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -4357,7 +4320,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocumentType.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocumentType.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDocumentType.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDocumentType.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDocumentType - +WebKitDOMDocumentType: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -103,7 +103,7 @@

    Properties

    -
    +
    @@ -151,7 +151,7 @@

    Types and Values

    -
    +
    @@ -164,7 +164,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMDocumentType
    @@ -189,8 +189,8 @@
     webkit_dom_document_type_remove (WebKitDOMDocumentType *self,
                                      GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -217,8 +217,8 @@
    gchar *
     webkit_dom_document_type_get_name (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -232,9 +232,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -243,8 +242,8 @@
    WebKitDOMNamedNodeMap *
     webkit_dom_document_type_get_entities (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -258,7 +257,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNamedNodeMap.

    [transfer full]

    @@ -270,8 +269,8 @@ webkit_dom_document_type_get_notations (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,7 +284,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNamedNodeMap.

    [transfer full]

    @@ -297,8 +296,8 @@ webkit_dom_document_type_get_public_id (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -312,9 +311,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -324,8 +322,8 @@ webkit_dom_document_type_get_system_id (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -339,9 +337,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -351,8 +348,8 @@ webkit_dom_document_type_get_internal_subset (WebKitDOMDocumentType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,9 +363,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -431,7 +427,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMApplicationCache.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMApplicationCache.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMApplicationCache.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMApplicationCache.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMApplicationCache - +WebKitDOMDOMApplicationCache: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -87,7 +87,7 @@

    Properties

    -
    +
    @@ -102,7 +102,7 @@

    Types and Values

    -
    +
    @@ -115,7 +115,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMApplicationCache
     
    @@ -140,8 +140,8 @@ (WebKitDOMDOMApplicationCache *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -170,8 +170,8 @@ (WebKitDOMDOMApplicationCache *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -199,8 +199,8 @@ webkit_dom_dom_application_cache_abort (WebKitDOMDOMApplicationCache *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -227,8 +227,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -254,9 +254,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -267,8 +266,8 @@ (WebKitDOMDOMApplicationCache *self);

    webkit_dom_dom_application_cache_get_status is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -282,9 +281,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -

    @@ -309,7 +307,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMImplementation.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMImplementation.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMImplementation.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMImplementation.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMImplementation - +WebKitDOMDOMImplementation: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMImplementation
     
    @@ -118,8 +118,8 @@ const gchar *feature, const gchar *version);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -145,9 +145,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -161,8 +160,8 @@ const gchar *systemId, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -198,7 +197,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentType.

    [transfer none]

    @@ -214,8 +213,8 @@ WebKitDOMDocumentType *doctype, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -251,7 +250,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -266,8 +265,8 @@ const gchar *media, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -298,7 +297,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleSheet.

    [transfer full]

    @@ -311,8 +310,8 @@ (WebKitDOMDOMImplementation *self, const gchar *title);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -333,7 +332,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLDocument.

    [transfer none]

    @@ -350,7 +349,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeTypeArray.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeTypeArray.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeTypeArray.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeTypeArray.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMMimeTypeArray - +WebKitDOMDOMMimeTypeArray: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMMimeTypeArray
     
    @@ -116,8 +116,8 @@ webkit_dom_dom_mime_type_array_item (WebKitDOMDOMMimeTypeArray *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -138,7 +138,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMMimeType.

    [transfer full]

    @@ -151,8 +151,8 @@ (WebKitDOMDOMMimeTypeArray *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -173,7 +173,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMMimeType.

    [transfer full]

    @@ -185,8 +185,8 @@ webkit_dom_dom_mime_type_array_get_length (WebKitDOMDOMMimeTypeArray *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,9 +200,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -226,7 +225,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeType.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeType.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeType.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMMimeType.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMMimeType - +WebKitDOMDOMMimeType: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -106,7 +106,7 @@

    Types and Values

    -
    +
    @@ -119,7 +119,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMMimeType
     
    @@ -136,8 +136,8 @@
    gchar *
     webkit_dom_dom_mime_type_get_suffixes (WebKitDOMDOMMimeType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -151,9 +151,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -163,8 +162,8 @@ webkit_dom_dom_mime_type_get_description (WebKitDOMDOMMimeType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -178,9 +177,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -190,8 +188,8 @@ webkit_dom_dom_mime_type_get_enabled_plugin (WebKitDOMDOMMimeType *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -205,7 +203,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMPlugin.

    [transfer full]

    @@ -255,7 +253,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMNamedFlowCollection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMNamedFlowCollection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMNamedFlowCollection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMNamedFlowCollection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMNamedFlowCollection - +WebKitDOMDOMNamedFlowCollection: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMNamedFlowCollection
     
    @@ -117,8 +117,8 @@ (WebKitDOMDOMNamedFlowCollection *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -139,7 +139,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMWebKitNamedFlow.

    [transfer full]

    @@ -152,8 +152,8 @@ (WebKitDOMDOMNamedFlowCollection *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -174,7 +174,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMWebKitNamedFlow.

    [transfer full]

    @@ -186,8 +186,8 @@ webkit_dom_dom_named_flow_collection_get_length (WebKitDOMDOMNamedFlowCollection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -201,9 +201,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -227,7 +226,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMPluginArray.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMPluginArray.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMPluginArray.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMPluginArray.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMPluginArray - +WebKitDOMDOMPluginArray: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -93,7 +93,7 @@

    Types and Values

    -
    +
    @@ -106,7 +106,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMPluginArray
     
    @@ -124,8 +124,8 @@ webkit_dom_dom_plugin_array_item (WebKitDOMDOMPluginArray *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -146,7 +146,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMPlugin.

    [transfer full]

    @@ -159,8 +159,8 @@ (WebKitDOMDOMPluginArray *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -181,7 +181,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMPlugin.

    [transfer full]

    @@ -193,8 +193,8 @@ webkit_dom_dom_plugin_array_refresh (WebKitDOMDOMPluginArray *self, gboolean reload);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -222,8 +222,8 @@ webkit_dom_dom_plugin_array_get_length (WebKitDOMDOMPluginArray *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -237,9 +237,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -263,7 +262,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMPlugin.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMPlugin.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMPlugin.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMPlugin.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMPlugin - +WebKitDOMDOMPlugin: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -129,7 +129,7 @@

    Types and Values

    -
    +
    @@ -142,7 +142,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMPlugin
     
    @@ -160,8 +160,8 @@ webkit_dom_dom_plugin_item (WebKitDOMDOMPlugin *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -182,7 +182,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMMimeType.

    [transfer full]

    @@ -194,8 +194,8 @@ webkit_dom_dom_plugin_named_item (WebKitDOMDOMPlugin *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -216,7 +216,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMMimeType.

    [transfer full]

    @@ -227,8 +227,8 @@
    gchar *
     webkit_dom_dom_plugin_get_name (WebKitDOMDOMPlugin *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -242,9 +242,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -253,8 +252,8 @@
    gchar *
     webkit_dom_dom_plugin_get_filename (WebKitDOMDOMPlugin *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -268,9 +267,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -279,8 +277,8 @@
    gchar *
     webkit_dom_dom_plugin_get_description (WebKitDOMDOMPlugin *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -294,9 +292,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -305,8 +302,8 @@
    gulong
     webkit_dom_dom_plugin_get_length (WebKitDOMDOMPlugin *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -320,9 +317,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -370,7 +366,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSecurityPolicy.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSecurityPolicy.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSecurityPolicy.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSecurityPolicy.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMSecurityPolicy - +WebKitDOMDOMSecurityPolicy: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -166,7 +166,7 @@

    Properties

    -
    +
    @@ -204,7 +204,7 @@

    Types and Values

    -
    +
    @@ -217,7 +217,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMSecurityPolicy
     
    @@ -236,8 +236,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -258,9 +258,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -271,8 +270,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -293,9 +292,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -306,8 +304,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -328,9 +326,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -341,8 +338,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -363,9 +360,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -376,8 +372,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -398,9 +394,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -411,8 +406,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -433,9 +428,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -446,8 +440,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -468,9 +462,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -481,8 +474,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *type);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -503,9 +496,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -516,8 +508,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -538,9 +530,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -551,8 +542,8 @@ (WebKitDOMDOMSecurityPolicy *self, const gchar *url);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -573,9 +564,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -585,8 +575,8 @@ webkit_dom_dom_security_policy_get_allows_eval (WebKitDOMDOMSecurityPolicy *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -600,9 +590,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -612,8 +601,8 @@ webkit_dom_dom_security_policy_get_allows_inline_script (WebKitDOMDOMSecurityPolicy *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -627,9 +616,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -639,8 +627,8 @@ webkit_dom_dom_security_policy_get_allows_inline_style (WebKitDOMDOMSecurityPolicy *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -654,9 +642,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -666,8 +653,8 @@ webkit_dom_dom_security_policy_get_is_active (WebKitDOMDOMSecurityPolicy *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -681,9 +668,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -693,8 +679,8 @@ webkit_dom_dom_security_policy_get_report_ur_is (WebKitDOMDOMSecurityPolicy *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -708,7 +694,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMStringList.

    [transfer full]

    @@ -766,7 +752,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSelection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSelection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSelection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSelection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMSelection - +WebKitDOMDOMSelection: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -238,7 +238,7 @@

    Properties

    -
    +
    @@ -310,7 +310,7 @@

    Types and Values

    -
    +
    @@ -323,7 +323,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMSelection
     
    @@ -343,8 +343,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -383,8 +383,8 @@ (WebKitDOMDOMSelection *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -413,8 +413,8 @@ (WebKitDOMDOMSelection *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -442,8 +442,8 @@ webkit_dom_dom_selection_delete_from_document (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -466,8 +466,8 @@ WebKitDOMNode *node, gboolean allowPartial);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -493,9 +493,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -507,8 +506,8 @@ WebKitDOMNode *node, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -543,8 +542,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -583,8 +582,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -610,7 +609,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMRange.

    [transfer full]

    @@ -622,8 +621,8 @@ webkit_dom_dom_selection_remove_all_ranges (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -644,8 +643,8 @@ webkit_dom_dom_selection_add_range (WebKitDOMDOMSelection *self, WebKitDOMRange *range);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -675,8 +674,8 @@ const gchar *direction, const gchar *granularity);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -719,8 +718,8 @@ glong extentOffset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -770,8 +769,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -808,8 +807,8 @@
    void
     webkit_dom_dom_selection_empty (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -830,8 +829,8 @@ webkit_dom_dom_selection_get_anchor_node (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -845,7 +844,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -857,8 +856,8 @@ webkit_dom_dom_selection_get_anchor_offset (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -872,9 +871,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -884,8 +882,8 @@ webkit_dom_dom_selection_get_focus_node (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -899,7 +897,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -911,8 +909,8 @@ webkit_dom_dom_selection_get_focus_offset (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -926,9 +924,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -938,8 +935,8 @@ webkit_dom_dom_selection_get_is_collapsed (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -953,9 +950,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -965,8 +961,8 @@ webkit_dom_dom_selection_get_range_count (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -980,9 +976,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -992,8 +987,8 @@ webkit_dom_dom_selection_get_base_node (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1007,7 +1002,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1019,8 +1014,8 @@ webkit_dom_dom_selection_get_base_offset (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1034,9 +1029,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1046,8 +1040,8 @@ webkit_dom_dom_selection_get_extent_node (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1061,7 +1055,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1073,8 +1067,8 @@ webkit_dom_dom_selection_get_extent_offset (WebKitDOMDOMSelection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1088,9 +1082,8 @@
    -

    Returns

    +

    Returns

    A glong

    -

    @@ -1191,7 +1184,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSettableTokenList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSettableTokenList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMSettableTokenList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMSettableTokenList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMSettableTokenList - +WebKitDOMDOMSettableTokenList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -78,7 +78,7 @@

    Types and Values

    -
    +
    @@ -91,7 +91,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMTokenList
                 ╰── WebKitDOMDOMSettableTokenList
    @@ -110,8 +110,8 @@
     webkit_dom_dom_settable_token_list_get_value
                                    (WebKitDOMDOMSettableTokenList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -125,9 +125,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -138,8 +137,8 @@ (WebKitDOMDOMSettableTokenList *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -182,7 +181,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMStringList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMStringList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMStringList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMStringList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMStringList - +WebKitDOMDOMStringList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMStringList
     
    @@ -116,8 +116,8 @@ webkit_dom_dom_string_list_item (WebKitDOMDOMStringList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -138,9 +138,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -150,8 +149,8 @@ webkit_dom_dom_string_list_contains (WebKitDOMDOMStringList *self, const gchar *string);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -172,9 +171,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -183,8 +181,8 @@
    gulong
     webkit_dom_dom_string_list_get_length (WebKitDOMDOMStringList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -198,9 +196,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -224,7 +221,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMStringMap.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMStringMap.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMStringMap.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMStringMap.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMStringMap - +WebKitDOMDOMStringMap: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Types and Values

    -
    +
    @@ -47,7 +47,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMStringMap
     
    @@ -59,6 +59,7 @@

    Functions

    +

    Types and Values

    @@ -71,7 +72,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMTokenList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMTokenList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMTokenList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMTokenList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMTokenList - +WebKitDOMDOMTokenList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -109,7 +109,7 @@

    Types and Values

    -
    +
    @@ -122,7 +122,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMTokenList
                 ╰── WebKitDOMDOMSettableTokenList
    @@ -141,8 +141,8 @@
     webkit_dom_dom_token_list_item (WebKitDOMDOMTokenList *self,
                                     gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -163,9 +163,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -176,8 +175,8 @@ const gchar *token, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -203,9 +202,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -216,8 +214,8 @@ const gchar *tokens, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -251,8 +249,8 @@ const gchar *tokens, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -287,8 +285,8 @@ gboolean force, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -319,9 +317,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -330,8 +327,8 @@
    gulong
     webkit_dom_dom_token_list_get_length (WebKitDOMDOMTokenList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -345,9 +342,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -371,7 +367,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMWindowCSS.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMWindowCSS.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMWindowCSS.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMWindowCSS.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMWindowCSS - +WebKitDOMDOMWindowCSS: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -51,7 +51,7 @@

    Types and Values

    -
    +
    @@ -64,7 +64,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMWindowCSS
     
    @@ -83,8 +83,8 @@ const gchar *property, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -110,9 +110,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -127,7 +126,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMWindow.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMWindow.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMDOMWindow.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMDOMWindow.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMDOMWindow - +WebKitDOMDOMWindow: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -679,7 +679,7 @@

    Properties

    -
    +
    @@ -945,7 +945,7 @@

    Types and Values

    -
    +
    @@ -958,7 +958,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMDOMWindow
     
    @@ -981,8 +981,8 @@
    WebKitDOMDOMSelection *
     webkit_dom_dom_window_get_selection (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -996,7 +996,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMSelection.

    [transfer full]

    @@ -1007,8 +1007,8 @@
    void
     webkit_dom_dom_window_focus (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1028,8 +1028,8 @@
    void
     webkit_dom_dom_window_blur (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1049,8 +1049,8 @@
    void
     webkit_dom_dom_window_close (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1070,8 +1070,8 @@
    void
     webkit_dom_dom_window_print (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1091,8 +1091,8 @@
    void
     webkit_dom_dom_window_stop (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1113,8 +1113,8 @@ webkit_dom_dom_window_alert (WebKitDOMDOMWindow *self, const gchar *message);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1142,8 +1142,8 @@ webkit_dom_dom_window_confirm (WebKitDOMDOMWindow *self, const gchar *message);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1164,9 +1164,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1177,8 +1176,8 @@ const gchar *message, const gchar *defaultValue);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1204,9 +1203,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1222,8 +1220,8 @@ gboolean searchInFrames, gboolean showDialog);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1274,9 +1272,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1287,8 +1284,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1322,8 +1319,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1357,8 +1354,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1392,8 +1389,8 @@ gfloat x, gfloat y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1427,8 +1424,8 @@ gfloat x, gfloat y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1462,8 +1459,8 @@ gfloat x, gfloat y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1497,8 +1494,8 @@ gfloat width, gfloat height);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1531,8 +1528,8 @@ webkit_dom_dom_window_match_media (WebKitDOMDOMWindow *self, const gchar *query);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1553,7 +1550,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMMediaQueryList.

    [transfer full]

    @@ -1567,8 +1564,8 @@ WebKitDOMElement *element, const gchar *pseudoElement);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1594,7 +1591,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleDeclaration.

    [transfer full]

    @@ -1608,8 +1605,8 @@ WebKitDOMNode *node, WebKitDOMWebKitPoint *p);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1635,7 +1632,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMWebKitPoint.

    [transfer full]

    @@ -1649,8 +1646,8 @@ WebKitDOMNode *node, WebKitDOMWebKitPoint *p);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1676,7 +1673,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMWebKitPoint.

    [transfer full]

    @@ -1689,8 +1686,8 @@ (WebKitDOMDOMWindow *self, glong id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1719,8 +1716,8 @@ (WebKitDOMDOMWindow *self, glong id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1749,8 +1746,8 @@ (WebKitDOMDOMWindow *self, glong id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1783,8 +1780,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1810,9 +1807,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1822,8 +1818,8 @@ webkit_dom_dom_window_capture_events (WebKitDOMDOMWindow *self);

    webkit_dom_dom_window_capture_events is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1843,8 +1839,8 @@
    void
     webkit_dom_dom_window_release_events (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1866,8 +1862,8 @@ const gchar *string, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1893,9 +1889,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1906,8 +1901,8 @@ const gchar *string, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1933,9 +1928,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1945,8 +1939,8 @@ webkit_dom_dom_window_clear_timeout (WebKitDOMDOMWindow *self, glong handle);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1974,8 +1968,8 @@ webkit_dom_dom_window_clear_interval (WebKitDOMDOMWindow *self, glong handle);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2002,8 +1996,8 @@
    WebKitDOMScreen *
     webkit_dom_dom_window_get_screen (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2017,7 +2011,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMScreen.

    [transfer full]

    @@ -2028,8 +2022,8 @@
    WebKitDOMHistory *
     webkit_dom_dom_window_get_history (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2043,7 +2037,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHistory.

    [transfer full]

    @@ -2054,8 +2048,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_locationbar (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2069,7 +2063,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2080,8 +2074,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_menubar (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2095,7 +2089,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2106,8 +2100,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_personalbar (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2121,7 +2115,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2132,8 +2126,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_scrollbars (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2147,7 +2141,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2158,8 +2152,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_statusbar (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2173,7 +2167,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2184,8 +2178,8 @@
    WebKitDOMBarProp *
     webkit_dom_dom_window_get_toolbar (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2199,7 +2193,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBarProp.

    [transfer full]

    @@ -2210,8 +2204,8 @@
    WebKitDOMNavigator *
     webkit_dom_dom_window_get_navigator (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2225,7 +2219,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNavigator.

    [transfer full]

    @@ -2237,8 +2231,8 @@ webkit_dom_dom_window_get_client_information (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2252,7 +2246,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNavigator.

    [transfer full]

    @@ -2264,8 +2258,8 @@ webkit_dom_dom_window_get_frame_element (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2279,7 +2273,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2291,8 +2285,8 @@ webkit_dom_dom_window_get_offscreen_buffering (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2306,9 +2300,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2318,8 +2311,8 @@ webkit_dom_dom_window_get_outer_height (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2333,9 +2326,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2344,8 +2336,8 @@
    glong
     webkit_dom_dom_window_get_outer_width (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2359,9 +2351,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2371,8 +2362,8 @@ webkit_dom_dom_window_get_inner_height (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2386,9 +2377,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2397,8 +2387,8 @@
    glong
     webkit_dom_dom_window_get_inner_width (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2412,9 +2402,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2423,8 +2412,8 @@
    glong
     webkit_dom_dom_window_get_screen_x (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2438,9 +2427,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2449,8 +2437,8 @@
    glong
     webkit_dom_dom_window_get_screen_y (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2464,9 +2452,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2475,8 +2462,8 @@
    glong
     webkit_dom_dom_window_get_screen_left (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2490,9 +2477,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2501,8 +2487,8 @@
    glong
     webkit_dom_dom_window_get_screen_top (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2516,9 +2502,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2527,8 +2512,8 @@
    glong
     webkit_dom_dom_window_get_scroll_x (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2542,9 +2527,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2553,8 +2537,8 @@
    glong
     webkit_dom_dom_window_get_scroll_y (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2568,9 +2552,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2580,8 +2563,8 @@ webkit_dom_dom_window_get_page_x_offset (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2595,9 +2578,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2607,8 +2589,8 @@ webkit_dom_dom_window_get_page_y_offset (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2622,9 +2604,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2633,8 +2614,8 @@
    gboolean
     webkit_dom_dom_window_get_closed (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2648,9 +2629,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2659,8 +2639,8 @@
    gulong
     webkit_dom_dom_window_get_length (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2674,9 +2654,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -2685,8 +2664,8 @@
    gchar *
     webkit_dom_dom_window_get_name (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2700,9 +2679,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2712,8 +2690,8 @@ webkit_dom_dom_window_set_name (WebKitDOMDOMWindow *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2740,8 +2718,8 @@
    gchar *
     webkit_dom_dom_window_get_status (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2755,9 +2733,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2767,8 +2744,8 @@ webkit_dom_dom_window_set_status (WebKitDOMDOMWindow *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2796,8 +2773,8 @@ webkit_dom_dom_window_get_default_status (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2811,9 +2788,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2824,8 +2800,8 @@ (WebKitDOMDOMWindow *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2852,8 +2828,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_self (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2867,7 +2843,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -2878,8 +2854,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_window (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2893,7 +2869,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -2904,8 +2880,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_frames (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2919,7 +2895,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -2930,8 +2906,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_opener (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2945,7 +2921,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -2956,8 +2932,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_parent (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2971,7 +2947,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -2982,8 +2958,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_dom_window_get_top (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2997,7 +2973,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -3008,8 +2984,8 @@
    WebKitDOMDocument *
     webkit_dom_dom_window_get_document (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3023,7 +2999,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -3034,8 +3010,8 @@
    WebKitDOMStyleMedia *
     webkit_dom_dom_window_get_style_media (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3049,7 +3025,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleMedia.

    [transfer full]

    @@ -3061,8 +3037,8 @@ webkit_dom_dom_window_get_device_pixel_ratio (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3076,9 +3052,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -3088,8 +3063,8 @@ webkit_dom_dom_window_get_application_cache (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3103,7 +3078,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMApplicationCache.

    [transfer full]

    @@ -3116,8 +3091,8 @@ (WebKitDOMDOMWindow *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3138,7 +3113,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStorage.

    [transfer full]

    @@ -3151,8 +3126,8 @@ (WebKitDOMDOMWindow *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3173,7 +3148,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStorage.

    [transfer full]

    @@ -3184,8 +3159,8 @@
    WebKitDOMConsole *
     webkit_dom_dom_window_get_console (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3199,7 +3174,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMConsole.

    [transfer none]

    @@ -3210,8 +3185,8 @@
    WebKitDOMPerformance *
     webkit_dom_dom_window_get_performance (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3225,7 +3200,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMPerformance.

    [transfer full]

    @@ -3236,8 +3211,8 @@
    WebKitDOMDOMWindowCSS *
     webkit_dom_dom_window_get_css (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3251,7 +3226,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindowCSS.

    [transfer full]

    @@ -3263,8 +3238,8 @@ webkit_dom_dom_window_get_webkit_storage_info (WebKitDOMDOMWindow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3278,7 +3253,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStorageInfo.

    [transfer none]

    @@ -3630,7 +3605,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMElement - +WebKitDOMElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -527,7 +527,7 @@

    Properties

    -
    +
    @@ -676,7 +676,7 @@

    Types and Values

    -
    +
    @@ -689,7 +689,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -715,8 +715,8 @@
     webkit_dom_element_get_attribute (WebKitDOMElement *self,
                                       const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -737,9 +737,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -751,8 +750,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -790,8 +789,8 @@ webkit_dom_element_remove_attribute (WebKitDOMElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -819,8 +818,8 @@ webkit_dom_element_get_attribute_node (WebKitDOMElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -841,7 +840,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -854,8 +853,8 @@ WebKitDOMAttr *newAttr, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -881,7 +880,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -895,8 +894,8 @@ WebKitDOMAttr *oldAttr, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -922,7 +921,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -935,8 +934,8 @@ (WebKitDOMElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -957,7 +956,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -968,8 +967,8 @@
    gboolean
     webkit_dom_element_has_attributes (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -983,9 +982,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -996,8 +994,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1023,9 +1021,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1038,8 +1035,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1084,8 +1081,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1120,8 +1117,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1147,7 +1144,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1161,8 +1158,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1188,7 +1185,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -1202,8 +1199,8 @@ WebKitDOMAttr *newAttr, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1229,7 +1226,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAttr.

    [transfer none]

    @@ -1241,8 +1238,8 @@ webkit_dom_element_has_attribute (WebKitDOMElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1263,9 +1260,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1276,8 +1272,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1303,9 +1299,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1314,8 +1309,8 @@
    void
     webkit_dom_element_focus (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1335,8 +1330,8 @@
    void
     webkit_dom_element_blur (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1357,8 +1352,8 @@ webkit_dom_element_scroll_into_view (WebKitDOMElement *self, gboolean alignWithTop);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1387,8 +1382,8 @@ (WebKitDOMElement *self, gboolean centerIfNeeded);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1416,8 +1411,8 @@ webkit_dom_element_scroll_by_lines (WebKitDOMElement *self, glong lines);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1445,8 +1440,8 @@ webkit_dom_element_scroll_by_pages (WebKitDOMElement *self, glong pages);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1475,8 +1470,8 @@ (WebKitDOMElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1497,7 +1492,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1510,8 +1505,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1537,7 +1532,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1550,8 +1545,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1577,7 +1572,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1591,8 +1586,8 @@ const gchar *selectors, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1618,9 +1613,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1631,8 +1625,8 @@ (WebKitDOMElement *self, gushort flags);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1660,8 +1654,8 @@ webkit_dom_element_webkit_request_fullscreen (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1682,8 +1676,8 @@ webkit_dom_element_webkit_request_pointer_lock (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1704,8 +1698,8 @@ webkit_dom_element_remove (WebKitDOMElement *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1732,8 +1726,8 @@
    gchar *
     webkit_dom_element_get_tag_name (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1747,9 +1741,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1758,8 +1751,8 @@
    WebKitDOMNamedNodeMap *
     webkit_dom_element_get_attributes (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1773,7 +1766,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNamedNodeMap.

    [transfer full]

    @@ -1784,8 +1777,8 @@
    WebKitDOMCSSStyleDeclaration *
     webkit_dom_element_get_style (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1799,7 +1792,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMCSSStyleDeclaration.

    [transfer full]

    @@ -1810,8 +1803,8 @@
    gchar *
     webkit_dom_element_get_id (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1825,9 +1818,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1837,8 +1829,8 @@ webkit_dom_element_set_id (WebKitDOMElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1865,8 +1857,8 @@
    glong
     webkit_dom_element_get_offset_left (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1880,9 +1872,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1891,8 +1882,8 @@
    glong
     webkit_dom_element_get_offset_top (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1906,9 +1897,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1917,8 +1907,8 @@
    glong
     webkit_dom_element_get_offset_width (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1932,9 +1922,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1943,8 +1932,8 @@
    glong
     webkit_dom_element_get_offset_height (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1958,9 +1947,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1969,8 +1957,8 @@
    WebKitDOMElement *
     webkit_dom_element_get_offset_parent (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1984,7 +1972,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1995,8 +1983,8 @@
    glong
     webkit_dom_element_get_client_left (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2010,9 +1998,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2021,8 +2008,8 @@
    glong
     webkit_dom_element_get_client_top (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2036,9 +2023,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2047,8 +2033,8 @@
    glong
     webkit_dom_element_get_client_width (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2062,9 +2048,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2073,8 +2058,8 @@
    glong
     webkit_dom_element_get_client_height (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2088,9 +2073,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2099,8 +2083,8 @@
    glong
     webkit_dom_element_get_scroll_left (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2114,9 +2098,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2126,8 +2109,8 @@ webkit_dom_element_set_scroll_left (WebKitDOMElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2154,8 +2137,8 @@
    glong
     webkit_dom_element_get_scroll_top (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2169,9 +2152,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2181,8 +2163,8 @@ webkit_dom_element_set_scroll_top (WebKitDOMElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2209,8 +2191,8 @@
    glong
     webkit_dom_element_get_scroll_width (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2224,9 +2206,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2235,8 +2216,8 @@
    glong
     webkit_dom_element_get_scroll_height (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2250,9 +2231,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2261,8 +2241,8 @@
    gchar *
     webkit_dom_element_get_class_name (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2276,9 +2256,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2288,8 +2267,8 @@ webkit_dom_element_set_class_name (WebKitDOMElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2316,8 +2295,8 @@
    WebKitDOMDOMTokenList *
     webkit_dom_element_get_class_list (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2331,7 +2310,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMTokenList.

    [transfer full]

    @@ -2343,8 +2322,8 @@ webkit_dom_element_get_first_element_child (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2358,7 +2337,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2370,8 +2349,8 @@ webkit_dom_element_get_last_element_child (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2385,7 +2364,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2397,8 +2376,8 @@ webkit_dom_element_get_previous_element_sibling (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2412,7 +2391,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2424,8 +2403,8 @@ webkit_dom_element_get_next_element_sibling (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2439,7 +2418,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -2451,8 +2430,8 @@ webkit_dom_element_get_child_element_count (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2466,9 +2445,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -2478,8 +2456,8 @@ webkit_dom_element_get_webkit_region_overset (WebKitDOMElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2493,9 +2471,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2507,10 +2484,6 @@

    webkit_dom_element_get_webkit_region_overflow is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -2717,7 +2690,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEntityReference.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEntityReference.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEntityReference.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEntityReference.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMEntityReference - +WebKitDOMEntityReference: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Types and Values

    -
    +
    @@ -48,7 +48,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMEntityReference
    @@ -67,6 +67,7 @@
     

    Functions

    +

    Types and Values

    @@ -79,7 +80,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMEvent - +WebKitDOMEvent: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -174,7 +174,7 @@

    Properties

    -
    +
    @@ -245,7 +245,7 @@

    Types and Values

    -
    +
    @@ -258,7 +258,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ├── WebKitDOMUIEvent
    @@ -277,8 +277,8 @@
     
    void
     webkit_dom_event_stop_propagation (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -298,8 +298,8 @@
    void
     webkit_dom_event_prevent_default (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -322,8 +322,8 @@ gboolean canBubbleArg, gboolean cancelableArg);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -361,8 +361,8 @@ webkit_dom_event_stop_immediate_propagation (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -382,8 +382,8 @@
    WebKitDOMEventTarget *
     webkit_dom_event_get_target (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -397,7 +397,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEventTarget.

    [transfer full]

    @@ -408,8 +408,8 @@
    WebKitDOMEventTarget *
     webkit_dom_event_get_current_target (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -423,7 +423,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEventTarget.

    [transfer full]

    @@ -434,8 +434,8 @@
    gushort
     webkit_dom_event_get_event_phase (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -449,9 +449,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -460,8 +459,8 @@
    gboolean
     webkit_dom_event_get_bubbles (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -475,9 +474,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -486,8 +484,8 @@
    gboolean
     webkit_dom_event_get_cancelable (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -501,9 +499,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -512,8 +509,8 @@
    guint32
     webkit_dom_event_get_time_stamp (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -527,9 +524,8 @@
    -

    Returns

    +

    Returns

    A guint32

    -


    @@ -539,8 +535,8 @@ webkit_dom_event_get_default_prevented (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -554,9 +550,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -565,8 +560,8 @@
    WebKitDOMEventTarget *
     webkit_dom_event_get_src_element (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -580,7 +575,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEventTarget.

    [transfer full]

    @@ -591,8 +586,8 @@
    gboolean
     webkit_dom_event_get_return_value (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -606,9 +601,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -618,8 +612,8 @@ webkit_dom_event_set_return_value (WebKitDOMEvent *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -646,8 +640,8 @@
    gboolean
     webkit_dom_event_get_cancel_bubble (WebKitDOMEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -661,9 +655,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -673,8 +666,8 @@ webkit_dom_event_set_cancel_bubble (WebKitDOMEvent *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -794,7 +787,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEventTarget.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEventTarget.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMEventTarget.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMEventTarget.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMEventTarget - +WebKitDOMEventTarget: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -87,7 +87,7 @@

    Types and Values

    -
    +
    @@ -108,7 +108,7 @@

    Prerequisites

    WebKitDOMEventTarget requires - GObject.

    + GObject.

    Known Implementations

    @@ -132,10 +132,6 @@ GError **error);

    -
    -

    Returns

    -

    -

    @@ -149,10 +145,6 @@ gpointer user_data);

    -
    -

    Returns

    -

    -

    @@ -165,10 +157,6 @@ gboolean use_capture);

    -
    -

    Returns

    -

    -

    @@ -181,10 +169,6 @@ gboolean use_capture);

    -
    -

    Returns

    -

    -

    @@ -197,10 +181,6 @@ gboolean use_capture);

    -
    -

    Returns

    -

    -
    @@ -214,7 +194,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMFile.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMFile.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMFile.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMFile.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMFile - +WebKitDOMFile: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -86,7 +86,7 @@

    Types and Values

    -
    +
    @@ -99,7 +99,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMBlob
                 ╰── WebKitDOMFile
    @@ -117,8 +117,8 @@
     
    gchar *
     webkit_dom_file_get_name (WebKitDOMFile *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -132,9 +132,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -144,8 +143,8 @@ webkit_dom_file_get_webkit_relative_path (WebKitDOMFile *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -159,9 +158,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -194,7 +192,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMFileList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMFileList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMFileList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMFileList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMFileList - +WebKitDOMFileList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMFileList
     
    @@ -108,8 +108,8 @@ webkit_dom_file_list_item (WebKitDOMFileList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMFile.

    [transfer full]

    @@ -141,8 +141,8 @@
    gulong
     webkit_dom_file_list_get_length (WebKitDOMFileList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -156,9 +156,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -182,7 +181,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGamepad.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGamepad.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGamepad.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGamepad.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMGamepad - +WebKitDOMGamepad: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -98,7 +98,7 @@

    Types and Values

    -
    +
    @@ -111,7 +111,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMGamepad
     
    @@ -128,8 +128,8 @@
    gchar *
     webkit_dom_gamepad_get_id (WebKitDOMGamepad *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -143,9 +143,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -154,8 +153,8 @@
    gulong
     webkit_dom_gamepad_get_index (WebKitDOMGamepad *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -169,9 +168,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -180,8 +178,8 @@
    guint64
     webkit_dom_gamepad_get_timestamp (WebKitDOMGamepad *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -195,9 +193,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -

    @@ -237,7 +234,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGamepadList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGamepadList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGamepadList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGamepadList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMGamepadList - +WebKitDOMGamepadList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMGamepadList
     
    @@ -108,8 +108,8 @@ webkit_dom_gamepad_list_item (WebKitDOMGamepadList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMGamepad.

    [transfer full]

    @@ -141,8 +141,8 @@
    gulong
     webkit_dom_gamepad_list_get_length (WebKitDOMGamepadList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -156,9 +156,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -182,7 +181,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGeolocation.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGeolocation.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMGeolocation.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMGeolocation.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMGeolocation - +WebKitDOMGeolocation: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -51,7 +51,7 @@

    Types and Values

    -
    +
    @@ -64,7 +64,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMGeolocation
     
    @@ -82,8 +82,8 @@ webkit_dom_geolocation_clear_watch (WebKitDOMGeolocation *self, glong watchID);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -116,7 +116,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk.devhelp2 webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk.devhelp2 --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk.devhelp2 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk.devhelp2 2016-03-14 08:06:04.000000000 +0000 @@ -1,5 +1,4 @@ - diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMBarInfo.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMBarInfo.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMBarInfo.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMBarInfo.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMBarInfo - +WebKitDOMBarInfo: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -62,10 +62,6 @@

    webkit_dom_bar_info_get_visible is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -73,7 +69,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMCustom.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMCustom.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMCustom.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMCustom.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMCustom - +WebKitDOMCustom: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -80,10 +80,6 @@ (WebKitDOMHTMLTextAreaElement *input);

    -
    -

    Returns

    -

    -

    @@ -93,10 +89,6 @@ (WebKitDOMHTMLInputElement *input);

    -
    -

    Returns

    -

    -

    @@ -115,7 +107,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLPropertiesCollection - +WebKitDOMHTMLPropertiesCollection: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -90,10 +90,6 @@

    webkit_dom_html_properties_collection_item is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -105,10 +101,6 @@

    webkit_dom_html_properties_collection_named_item is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -119,10 +111,6 @@

    webkit_dom_html_properties_collection_get_length is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -133,10 +121,6 @@

    webkit_dom_html_properties_collection_get_names is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -144,7 +128,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMemoryInfo.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMemoryInfo.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMemoryInfo.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMemoryInfo.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMemoryInfo - +WebKitDOMMemoryInfo: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -81,10 +81,6 @@

    webkit_dom_memory_info_get_total_js_heap_size is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -95,10 +91,6 @@

    webkit_dom_memory_info_get_used_js_heap_size is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -109,10 +101,6 @@

    webkit_dom_memory_info_get_js_heap_size_limit is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -120,7 +108,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMicroDataItemValue.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMicroDataItemValue.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMicroDataItemValue.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMMicroDataItemValue.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMicroDataItemValue - +WebKitDOMMicroDataItemValue: WebKitDOMGTK+ Reference Manual + - + @@ -38,13 +38,13 @@

    Functions

    +

    Types and Values

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMPropertyNodeList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMPropertyNodeList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMPropertyNodeList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/webkitdomgtk-WebKitDOMPropertyNodeList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPropertyNodeList - +WebKitDOMPropertyNodeList: WebKitDOMGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -73,10 +73,6 @@

    webkit_dom_property_node_list_item is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -87,10 +83,6 @@

    webkit_dom_property_node_list_get_length is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -98,7 +90,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHistory.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHistory.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHistory.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHistory.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHistory - +WebKitDOMHistory: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -93,7 +93,7 @@

    Types and Values

    -
    +
    @@ -106,7 +106,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMHistory
     
    @@ -123,8 +123,8 @@
    void
     webkit_dom_history_back (WebKitDOMHistory *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -144,8 +144,8 @@
    void
     webkit_dom_history_forward (WebKitDOMHistory *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -166,8 +166,8 @@ webkit_dom_history_go (WebKitDOMHistory *self, glong distance);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -194,8 +194,8 @@
    gulong
     webkit_dom_history_get_length (WebKitDOMHistory *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -209,9 +209,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -235,7 +234,6 @@
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAnchorElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAnchorElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAnchorElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAnchorElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLAnchorElement - +WebKitDOMHTMLAnchorElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -351,7 +351,7 @@

    Properties

    -
    +
    @@ -489,7 +489,7 @@

    Types and Values

    -
    +
    @@ -502,7 +502,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -529,8 +529,8 @@
     webkit_dom_html_anchor_element_get_charset
                                    (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -544,9 +544,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -557,8 +556,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -586,8 +585,8 @@ webkit_dom_html_anchor_element_get_coords (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -601,9 +600,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -614,8 +612,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -643,8 +641,8 @@ webkit_dom_html_anchor_element_get_download (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -658,9 +656,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -671,8 +668,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -700,8 +697,8 @@ webkit_dom_html_anchor_element_get_href (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -715,9 +712,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -728,8 +724,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -757,8 +753,8 @@ webkit_dom_html_anchor_element_get_hreflang (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -772,9 +768,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -785,8 +780,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -814,8 +809,8 @@ webkit_dom_html_anchor_element_get_name (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -829,9 +824,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -842,8 +836,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -871,8 +865,8 @@ webkit_dom_html_anchor_element_get_ping (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -886,9 +880,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -899,8 +892,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -928,8 +921,8 @@ webkit_dom_html_anchor_element_get_rel (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -943,9 +936,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -956,8 +948,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -985,8 +977,8 @@ webkit_dom_html_anchor_element_get_rev (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1000,9 +992,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1013,8 +1004,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1042,8 +1033,8 @@ webkit_dom_html_anchor_element_get_shape (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1057,9 +1048,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1070,8 +1060,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1099,8 +1089,8 @@ webkit_dom_html_anchor_element_get_target (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1114,9 +1104,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1127,8 +1116,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1156,8 +1145,8 @@ webkit_dom_html_anchor_element_get_hash (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1171,9 +1160,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1184,8 +1172,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1213,8 +1201,8 @@ webkit_dom_html_anchor_element_get_host (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1228,9 +1216,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1241,8 +1228,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1270,8 +1257,8 @@ webkit_dom_html_anchor_element_get_hostname (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1285,9 +1272,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1298,8 +1284,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1327,8 +1313,8 @@ webkit_dom_html_anchor_element_get_pathname (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1342,9 +1328,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1355,8 +1340,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1384,8 +1369,8 @@ webkit_dom_html_anchor_element_get_port (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1399,9 +1384,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1412,8 +1396,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1441,8 +1425,8 @@ webkit_dom_html_anchor_element_get_protocol (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1456,9 +1440,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1469,8 +1452,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1498,8 +1481,8 @@ webkit_dom_html_anchor_element_get_search (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1513,9 +1496,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1526,8 +1508,8 @@ (WebKitDOMHTMLAnchorElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1555,8 +1537,8 @@ webkit_dom_html_anchor_element_get_origin (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1570,9 +1552,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1582,8 +1563,8 @@ webkit_dom_html_anchor_element_get_text (WebKitDOMHTMLAnchorElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1597,9 +1578,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -1784,7 +1764,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAppletElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAppletElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAppletElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAppletElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLAppletElement - +WebKitDOMHTMLAppletElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -223,7 +223,7 @@

    Properties

    -
    +
    @@ -299,7 +299,7 @@

    Types and Values

    -
    +
    @@ -312,7 +312,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -339,8 +339,8 @@
     webkit_dom_html_applet_element_get_align
                                    (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -354,9 +354,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -367,8 +366,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -396,8 +395,8 @@ webkit_dom_html_applet_element_get_alt (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -411,9 +410,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -424,8 +422,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -453,8 +451,8 @@ webkit_dom_html_applet_element_get_archive (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -468,9 +466,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -481,8 +478,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -510,8 +507,8 @@ webkit_dom_html_applet_element_get_code (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -525,9 +522,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -538,8 +534,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -567,8 +563,8 @@ webkit_dom_html_applet_element_get_code_base (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -582,9 +578,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -595,8 +590,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -624,8 +619,8 @@ webkit_dom_html_applet_element_get_height (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -639,9 +634,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -652,8 +646,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -681,8 +675,8 @@ webkit_dom_html_applet_element_get_hspace (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -696,9 +690,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -709,8 +702,8 @@ (WebKitDOMHTMLAppletElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -738,8 +731,8 @@ webkit_dom_html_applet_element_get_name (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -753,9 +746,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -766,8 +758,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -795,8 +787,8 @@ webkit_dom_html_applet_element_get_object (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -810,9 +802,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -823,8 +814,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -852,8 +843,8 @@ webkit_dom_html_applet_element_get_vspace (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -867,9 +858,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -880,8 +870,8 @@ (WebKitDOMHTMLAppletElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -909,8 +899,8 @@ webkit_dom_html_applet_element_get_width (WebKitDOMHTMLAppletElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -924,9 +914,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -937,8 +926,8 @@ (WebKitDOMHTMLAppletElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1061,7 +1050,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAreaElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAreaElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAreaElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAreaElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLAreaElement - +WebKitDOMHTMLAreaElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -215,7 +215,7 @@

    Properties

    -
    +
    @@ -310,7 +310,7 @@

    Types and Values

    -
    +
    @@ -323,7 +323,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -349,8 +349,8 @@
     
    gchar *
     webkit_dom_html_area_element_get_alt (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -364,9 +364,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -376,8 +375,8 @@ webkit_dom_html_area_element_set_alt (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -405,8 +404,8 @@ webkit_dom_html_area_element_get_coords (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -420,9 +419,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -433,8 +431,8 @@ (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -461,8 +459,8 @@
    gchar *
     webkit_dom_html_area_element_get_href (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -476,9 +474,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -488,8 +485,8 @@ webkit_dom_html_area_element_set_href (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -517,8 +514,8 @@ webkit_dom_html_area_element_get_no_href (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -532,9 +529,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -545,8 +541,8 @@ (WebKitDOMHTMLAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -573,8 +569,8 @@
    gchar *
     webkit_dom_html_area_element_get_ping (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -588,9 +584,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -600,8 +595,8 @@ webkit_dom_html_area_element_set_ping (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -629,8 +624,8 @@ webkit_dom_html_area_element_get_shape (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -644,9 +639,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -657,8 +651,8 @@ (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -686,8 +680,8 @@ webkit_dom_html_area_element_get_target (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -701,9 +695,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -714,8 +707,8 @@ (WebKitDOMHTMLAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -742,8 +735,8 @@
    gchar *
     webkit_dom_html_area_element_get_hash (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -757,9 +750,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -768,8 +760,8 @@
    gchar *
     webkit_dom_html_area_element_get_host (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -783,9 +775,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -795,8 +786,8 @@ webkit_dom_html_area_element_get_hostname (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -810,9 +801,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -822,8 +812,8 @@ webkit_dom_html_area_element_get_pathname (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -837,9 +827,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -848,8 +837,8 @@
    gchar *
     webkit_dom_html_area_element_get_port (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -863,9 +852,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -875,8 +863,8 @@ webkit_dom_html_area_element_get_protocol (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -890,9 +878,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -902,8 +889,8 @@ webkit_dom_html_area_element_get_search (WebKitDOMHTMLAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -917,9 +904,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -1048,7 +1034,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAudioElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAudioElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLAudioElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLAudioElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLAudioElement - +WebKitDOMHTMLAudioElement: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Types and Values

    -
    +
    @@ -48,7 +48,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -70,6 +70,7 @@
     

    Functions

    +

    Types and Values

    @@ -82,7 +83,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLBaseElement - +WebKitDOMHTMLBaseElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -142,8 +142,8 @@
     
    gchar *
     webkit_dom_html_base_element_get_href (WebKitDOMHTMLBaseElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -169,8 +168,8 @@ webkit_dom_html_base_element_set_href (WebKitDOMHTMLBaseElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -198,8 +197,8 @@ webkit_dom_html_base_element_get_target (WebKitDOMHTMLBaseElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -213,9 +212,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -226,8 +224,8 @@ (WebKitDOMHTMLBaseElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -278,7 +276,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseFontElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseFontElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseFontElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBaseFontElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLBaseFontElement - +WebKitDOMHTMLBaseFontElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -95,7 +95,7 @@

    Properties

    -
    +
    @@ -124,7 +124,7 @@

    Types and Values

    -
    +
    @@ -137,7 +137,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -164,8 +164,8 @@
     webkit_dom_html_base_font_element_get_color
                                    (WebKitDOMHTMLBaseFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -179,9 +179,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -192,8 +191,8 @@ (WebKitDOMHTMLBaseFontElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -221,8 +220,8 @@ webkit_dom_html_base_font_element_get_face (WebKitDOMHTMLBaseFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -236,9 +235,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -249,8 +247,8 @@ (WebKitDOMHTMLBaseFontElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -278,8 +276,8 @@ webkit_dom_html_base_font_element_get_size (WebKitDOMHTMLBaseFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -293,9 +291,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -306,8 +303,8 @@ (WebKitDOMHTMLBaseFontElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,7 +363,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBodyElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBodyElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBodyElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBodyElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLBodyElement - +WebKitDOMHTMLBodyElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -143,7 +143,7 @@

    Properties

    -
    +
    @@ -191,7 +191,7 @@

    Types and Values

    -
    +
    @@ -204,7 +204,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -231,8 +231,8 @@
     webkit_dom_html_body_element_get_a_link
                                    (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -246,9 +246,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -259,8 +258,8 @@ (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -288,8 +287,8 @@ webkit_dom_html_body_element_get_background (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -303,9 +302,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -316,8 +314,8 @@ (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -345,8 +343,8 @@ webkit_dom_html_body_element_get_bg_color (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -360,9 +358,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -373,8 +370,8 @@ (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -401,8 +398,8 @@
    gchar *
     webkit_dom_html_body_element_get_link (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -416,9 +413,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -428,8 +424,8 @@ webkit_dom_html_body_element_set_link (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -456,8 +452,8 @@
    gchar *
     webkit_dom_html_body_element_get_text (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -471,9 +467,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -483,8 +478,8 @@ webkit_dom_html_body_element_set_text (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -512,8 +507,8 @@ webkit_dom_html_body_element_get_v_link (WebKitDOMHTMLBodyElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -527,9 +522,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -540,8 +534,8 @@ (WebKitDOMHTMLBodyElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -624,7 +618,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBRElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBRElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLBRElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLBRElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLBRElement - +WebKitDOMHTMLBRElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     
    gchar *
     webkit_dom_htmlbr_element_get_clear (WebKitDOMHTMLBRElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -145,8 +144,8 @@ webkit_dom_htmlbr_element_set_clear (WebKitDOMHTMLBRElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -189,7 +188,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLButtonElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLButtonElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLButtonElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLButtonElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLButtonElement - +WebKitDOMHTMLButtonElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -247,7 +247,7 @@

    Properties

    -
    +
    @@ -345,7 +345,7 @@

    Types and Values

    -
    +
    @@ -358,7 +358,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -385,8 +385,8 @@
     webkit_dom_html_button_element_check_validity
                                    (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -400,9 +400,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -413,8 +412,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -442,8 +441,8 @@ webkit_dom_html_button_element_get_autofocus (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -457,9 +456,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -470,8 +468,8 @@ (WebKitDOMHTMLButtonElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -499,8 +497,8 @@ webkit_dom_html_button_element_get_disabled (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -514,9 +512,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -527,8 +524,8 @@ (WebKitDOMHTMLButtonElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -556,8 +553,8 @@ webkit_dom_html_button_element_get_form (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -571,7 +568,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -583,8 +580,8 @@ webkit_dom_html_button_element_get_form_action (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -598,9 +595,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -611,8 +607,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -640,8 +636,8 @@ webkit_dom_html_button_element_get_form_enctype (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -655,9 +651,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -668,8 +663,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -697,8 +692,8 @@ webkit_dom_html_button_element_get_form_method (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -712,9 +707,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -725,8 +719,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -754,8 +748,8 @@ webkit_dom_html_button_element_get_form_no_validate (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -769,9 +763,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -782,8 +775,8 @@ (WebKitDOMHTMLButtonElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -811,8 +804,8 @@ webkit_dom_html_button_element_get_form_target (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -826,9 +819,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -839,8 +831,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -868,8 +860,8 @@ webkit_dom_html_button_element_get_name (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -883,9 +875,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -896,8 +887,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -925,8 +916,8 @@ webkit_dom_html_button_element_get_value (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -940,9 +931,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -953,8 +943,8 @@ (WebKitDOMHTMLButtonElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -982,8 +972,8 @@ webkit_dom_html_button_element_get_will_validate (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -997,9 +987,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1009,8 +998,8 @@ webkit_dom_html_button_element_get_validity (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1024,7 +1013,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -1036,8 +1025,8 @@ webkit_dom_html_button_element_get_validation_message (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1051,9 +1040,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1063,8 +1051,8 @@ webkit_dom_html_button_element_get_labels (WebKitDOMHTMLButtonElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1078,7 +1066,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1214,7 +1202,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLCanvasElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLCanvasElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLCanvasElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLCanvasElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLCanvasElement - +WebKitDOMHTMLCanvasElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -101,7 +101,7 @@

    Types and Values

    -
    +
    @@ -114,7 +114,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -141,8 +141,8 @@
     webkit_dom_html_canvas_element_get_width
                                    (WebKitDOMHTMLCanvasElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -156,9 +156,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -169,8 +168,8 @@ (WebKitDOMHTMLCanvasElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -198,8 +197,8 @@ webkit_dom_html_canvas_element_get_height (WebKitDOMHTMLCanvasElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -213,9 +212,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -226,8 +224,8 @@ (WebKitDOMHTMLCanvasElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -278,7 +276,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLCollection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLCollection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLCollection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLCollection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLCollection - +WebKitDOMHTMLCollection: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMHTMLCollection
                 ╰── WebKitDOMHTMLOptionsCollection
    @@ -117,8 +117,8 @@
     webkit_dom_html_collection_item (WebKitDOMHTMLCollection *self,
                                      gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -139,7 +139,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -151,8 +151,8 @@ webkit_dom_html_collection_named_item (WebKitDOMHTMLCollection *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -173,7 +173,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -184,8 +184,8 @@
    gulong
     webkit_dom_html_collection_get_length (WebKitDOMHTMLCollection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -199,9 +199,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -225,7 +224,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDetailsElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDetailsElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDetailsElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDetailsElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLDetailsElement - +WebKitDOMHTMLDetailsElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -78,7 +78,7 @@

    Types and Values

    -
    +
    @@ -91,7 +91,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     webkit_dom_html_details_element_get_open
                                    (WebKitDOMHTMLDetailsElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -146,8 +145,8 @@ (WebKitDOMHTMLDetailsElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -190,7 +189,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDirectoryElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDirectoryElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDirectoryElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDirectoryElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLDirectoryElement - +WebKitDOMHTMLDirectoryElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -78,7 +78,7 @@

    Types and Values

    -
    +
    @@ -91,7 +91,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     webkit_dom_html_directory_element_get_compact
                                    (WebKitDOMHTMLDirectoryElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -146,8 +145,8 @@ (WebKitDOMHTMLDirectoryElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -190,7 +189,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDivElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDivElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDivElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDivElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLDivElement - +WebKitDOMHTMLDivElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     
    gchar *
     webkit_dom_html_div_element_get_align (WebKitDOMHTMLDivElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -145,8 +144,8 @@ webkit_dom_html_div_element_set_align (WebKitDOMHTMLDivElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -189,7 +188,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDListElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDListElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDListElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDListElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLDListElement - +WebKitDOMHTMLDListElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -78,7 +78,7 @@

    Types and Values

    -
    +
    @@ -91,7 +91,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     webkit_dom_htmld_list_element_get_compact
                                    (WebKitDOMHTMLDListElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -146,8 +145,8 @@ (WebKitDOMHTMLDListElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -190,7 +189,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDocument.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDocument.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLDocument.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLDocument.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLDocument - +WebKitDOMHTMLDocument: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -263,7 +263,7 @@

    Properties

    -
    +
    @@ -357,7 +357,7 @@

    Types and Values

    -
    +
    @@ -370,7 +370,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMDocument
    @@ -395,8 +395,8 @@
     
    void
     webkit_dom_html_document_close (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -416,8 +416,8 @@
    void
     webkit_dom_html_document_clear (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -438,8 +438,8 @@ webkit_dom_html_document_capture_events (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -460,8 +460,8 @@ webkit_dom_html_document_release_events (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -481,8 +481,8 @@
    gboolean
     webkit_dom_html_document_has_focus (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -496,9 +496,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -507,8 +506,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_html_document_get_embeds (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -522,7 +521,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -533,8 +532,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_html_document_get_plugins (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -548,7 +547,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -559,8 +558,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_html_document_get_scripts (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -574,7 +573,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -585,8 +584,8 @@
    glong
     webkit_dom_html_document_get_width (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -600,9 +599,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -611,8 +609,8 @@
    glong
     webkit_dom_html_document_get_height (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -626,9 +624,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -637,8 +634,8 @@
    gchar *
     webkit_dom_html_document_get_dir (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -652,9 +649,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -664,8 +660,8 @@ webkit_dom_html_document_set_dir (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -693,8 +689,8 @@ webkit_dom_html_document_get_design_mode (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -708,9 +704,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -721,8 +716,8 @@ (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -750,8 +745,8 @@ webkit_dom_html_document_get_compat_mode (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -765,9 +760,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -777,8 +771,8 @@ webkit_dom_html_document_get_active_element (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -792,7 +786,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -803,8 +797,8 @@
    gchar *
     webkit_dom_html_document_get_bg_color (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -818,9 +812,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -830,8 +823,8 @@ webkit_dom_html_document_set_bg_color (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -858,8 +851,8 @@
    gchar *
     webkit_dom_html_document_get_fg_color (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -873,9 +866,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -885,8 +877,8 @@ webkit_dom_html_document_set_fg_color (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -914,8 +906,8 @@ webkit_dom_html_document_get_alink_color (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -929,9 +921,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -942,8 +933,8 @@ (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -971,8 +962,8 @@ webkit_dom_html_document_get_link_color (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -986,9 +977,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -999,8 +989,8 @@ (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1028,8 +1018,8 @@ webkit_dom_html_document_get_vlink_color (WebKitDOMHTMLDocument *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1043,9 +1033,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1056,8 +1045,8 @@ (WebKitDOMHTMLDocument *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1209,7 +1198,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLElement - +WebKitDOMHTMLElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -431,7 +431,7 @@

    Properties

    -
    +
    @@ -539,7 +539,7 @@

    Types and Values

    -
    +
    @@ -552,7 +552,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -638,8 +638,8 @@
                                     WebKitDOMElement *element,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -670,7 +670,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -685,8 +685,8 @@ const gchar *html, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -727,8 +727,8 @@ const gchar *text, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -765,8 +765,8 @@
    void
     webkit_dom_html_element_click (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -786,8 +786,8 @@
    gchar *
     webkit_dom_html_element_get_title (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -801,9 +801,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -813,8 +812,8 @@ webkit_dom_html_element_set_title (WebKitDOMHTMLElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -841,8 +840,8 @@
    gchar *
     webkit_dom_html_element_get_lang (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -856,9 +855,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -868,8 +866,8 @@ webkit_dom_html_element_set_lang (WebKitDOMHTMLElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -896,8 +894,8 @@
    gboolean
     webkit_dom_html_element_get_translate (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -911,9 +909,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -923,8 +920,8 @@ webkit_dom_html_element_set_translate (WebKitDOMHTMLElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -951,8 +948,8 @@
    gchar *
     webkit_dom_html_element_get_dir (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -966,9 +963,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -978,8 +974,8 @@ webkit_dom_html_element_set_dir (WebKitDOMHTMLElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1006,8 +1002,8 @@
    glong
     webkit_dom_html_element_get_tab_index (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1021,9 +1017,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1033,8 +1028,8 @@ webkit_dom_html_element_set_tab_index (WebKitDOMHTMLElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1061,8 +1056,8 @@
    gboolean
     webkit_dom_html_element_get_draggable (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1076,9 +1071,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1088,8 +1082,8 @@ webkit_dom_html_element_set_draggable (WebKitDOMHTMLElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1117,8 +1111,8 @@ webkit_dom_html_element_get_webkitdropzone (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1132,9 +1126,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1145,8 +1138,8 @@ (WebKitDOMHTMLElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1173,8 +1166,8 @@
    gboolean
     webkit_dom_html_element_get_hidden (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1188,9 +1181,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1200,8 +1192,8 @@ webkit_dom_html_element_set_hidden (WebKitDOMHTMLElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1229,8 +1221,8 @@ webkit_dom_html_element_get_access_key (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1244,9 +1236,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1257,8 +1248,8 @@ (WebKitDOMHTMLElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1286,8 +1277,8 @@ webkit_dom_html_element_get_inner_html (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1301,9 +1292,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1315,8 +1305,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1349,8 +1339,8 @@ webkit_dom_html_element_get_inner_text (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1364,9 +1354,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1378,8 +1367,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1412,8 +1401,8 @@ webkit_dom_html_element_get_outer_html (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1427,9 +1416,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1441,8 +1429,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1475,8 +1463,8 @@ webkit_dom_html_element_get_outer_text (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1490,9 +1478,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1504,8 +1491,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1537,8 +1524,8 @@
    WebKitDOMHTMLCollection *
     webkit_dom_html_element_get_children (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1552,7 +1539,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -1564,8 +1551,8 @@ webkit_dom_html_element_get_content_editable (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1579,9 +1566,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1593,8 +1579,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1627,8 +1613,8 @@ webkit_dom_html_element_get_is_content_editable (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1642,9 +1628,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1654,8 +1639,8 @@ webkit_dom_html_element_get_spellcheck (WebKitDOMHTMLElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1669,9 +1654,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1682,8 +1666,8 @@ (WebKitDOMHTMLElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1712,10 +1696,6 @@

    webkit_dom_html_element_get_id is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1736,10 +1716,6 @@

    webkit_dom_html_element_get_class_name is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1761,10 +1737,6 @@

    webkit_dom_html_element_get_class_list is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1784,10 +1756,6 @@

    webkit_dom_html_element_get_item_id is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1797,10 +1765,6 @@

    webkit_dom_html_element_get_item_ref is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1810,10 +1774,6 @@

    webkit_dom_html_element_get_item_prop is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1835,10 +1795,6 @@

    webkit_dom_html_element_get_item_scope is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1848,10 +1804,6 @@

    webkit_dom_html_element_get_item_type is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -2002,7 +1954,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLEmbedElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLEmbedElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLEmbedElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLEmbedElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLEmbedElement - +WebKitDOMHTMLEmbedElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -127,7 +127,7 @@

    Properties

    -
    +
    @@ -173,7 +173,7 @@

    Types and Values

    -
    +
    @@ -186,7 +186,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -213,8 +213,8 @@
     webkit_dom_html_embed_element_get_align
                                    (WebKitDOMHTMLEmbedElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -228,9 +228,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -241,8 +240,8 @@ (WebKitDOMHTMLEmbedElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -270,8 +269,8 @@ webkit_dom_html_embed_element_get_height (WebKitDOMHTMLEmbedElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,9 +284,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -298,8 +296,8 @@ (WebKitDOMHTMLEmbedElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -327,8 +325,8 @@ webkit_dom_html_embed_element_get_name (WebKitDOMHTMLEmbedElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -342,9 +340,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -355,8 +352,8 @@ (WebKitDOMHTMLEmbedElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -383,8 +380,8 @@
    gchar *
     webkit_dom_html_embed_element_get_src (WebKitDOMHTMLEmbedElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -398,9 +395,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -410,8 +406,8 @@ webkit_dom_html_embed_element_set_src (WebKitDOMHTMLEmbedElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -439,8 +435,8 @@ webkit_dom_html_embed_element_get_width (WebKitDOMHTMLEmbedElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -454,9 +450,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -467,8 +462,8 @@ (WebKitDOMHTMLEmbedElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -551,7 +546,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFieldSetElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFieldSetElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFieldSetElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFieldSetElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLFieldSetElement - +WebKitDOMHTMLFieldSetElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -135,7 +135,7 @@

    Properties

    -
    +
    @@ -193,7 +193,7 @@

    Types and Values

    -
    +
    @@ -206,7 +206,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -233,8 +233,8 @@
     webkit_dom_html_field_set_element_check_validity
                                    (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -248,9 +248,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -261,8 +260,8 @@ (WebKitDOMHTMLFieldSetElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -290,8 +289,8 @@ webkit_dom_html_field_set_element_get_disabled (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -305,9 +304,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -318,8 +316,8 @@ (WebKitDOMHTMLFieldSetElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -347,8 +345,8 @@ webkit_dom_html_field_set_element_get_form (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -362,7 +360,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -374,8 +372,8 @@ webkit_dom_html_field_set_element_get_name (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -389,9 +387,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -402,8 +399,8 @@ (WebKitDOMHTMLFieldSetElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -431,8 +428,8 @@ webkit_dom_html_field_set_element_get_elements (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -446,7 +443,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -458,8 +455,8 @@ webkit_dom_html_field_set_element_get_will_validate (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -473,9 +470,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -485,8 +481,8 @@ webkit_dom_html_field_set_element_get_validity (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -500,7 +496,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -512,8 +508,8 @@ webkit_dom_html_field_set_element_get_validation_message (WebKitDOMHTMLFieldSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -527,9 +523,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -607,7 +602,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFontElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFontElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFontElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFontElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLFontElement - +WebKitDOMHTMLFontElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -95,7 +95,7 @@

    Properties

    -
    +
    @@ -125,7 +125,7 @@

    Types and Values

    -
    +
    @@ -138,7 +138,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -165,8 +165,8 @@
     webkit_dom_html_font_element_get_color
                                    (WebKitDOMHTMLFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -180,9 +180,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -193,8 +192,8 @@ (WebKitDOMHTMLFontElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -221,8 +220,8 @@
    gchar *
     webkit_dom_html_font_element_get_face (WebKitDOMHTMLFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -236,9 +235,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -248,8 +246,8 @@ webkit_dom_html_font_element_set_face (WebKitDOMHTMLFontElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -276,8 +274,8 @@
    gchar *
     webkit_dom_html_font_element_get_size (WebKitDOMHTMLFontElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -291,9 +289,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -303,8 +300,8 @@ webkit_dom_html_font_element_set_size (WebKitDOMHTMLFontElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -363,7 +360,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFormElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFormElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFormElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFormElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLFormElement - +WebKitDOMHTMLFormElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -279,7 +279,7 @@

    Properties

    -
    +
    @@ -366,7 +366,7 @@

    Types and Values

    -
    +
    @@ -379,7 +379,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -405,8 +405,8 @@
     
    void
     webkit_dom_html_form_element_submit (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -426,8 +426,8 @@
    void
     webkit_dom_html_form_element_reset (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -448,8 +448,8 @@ webkit_dom_html_form_element_check_validity (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -463,9 +463,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -475,8 +474,8 @@ webkit_dom_html_form_element_get_accept_charset (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -490,9 +489,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -503,8 +501,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -532,8 +530,8 @@ webkit_dom_html_form_element_get_action (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -547,9 +545,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -560,8 +557,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -589,8 +586,8 @@ webkit_dom_html_form_element_get_autocomplete (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -604,9 +601,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -617,8 +613,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -646,8 +642,8 @@ webkit_dom_html_form_element_get_enctype (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -661,9 +657,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -674,8 +669,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -703,8 +698,8 @@ webkit_dom_html_form_element_get_encoding (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -718,9 +713,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -731,8 +725,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -760,8 +754,8 @@ webkit_dom_html_form_element_get_method (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -775,9 +769,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -788,8 +781,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -816,8 +809,8 @@
    gchar *
     webkit_dom_html_form_element_get_name (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -831,9 +824,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -843,8 +835,8 @@ webkit_dom_html_form_element_set_name (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -872,8 +864,8 @@ webkit_dom_html_form_element_get_no_validate (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -887,9 +879,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -900,8 +891,8 @@ (WebKitDOMHTMLFormElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -929,8 +920,8 @@ webkit_dom_html_form_element_get_target (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -944,9 +935,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -957,8 +947,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -986,8 +976,8 @@ webkit_dom_html_form_element_get_elements (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1001,7 +991,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -1013,8 +1003,8 @@ webkit_dom_html_form_element_get_length (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1028,9 +1018,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1040,8 +1029,8 @@ webkit_dom_html_form_element_get_autocorrect (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1055,9 +1044,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1068,8 +1056,8 @@ (WebKitDOMHTMLFormElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1097,8 +1085,8 @@ webkit_dom_html_form_element_get_autocapitalize (WebKitDOMHTMLFormElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1112,9 +1100,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1125,8 +1112,8 @@ (WebKitDOMHTMLFormElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1284,7 +1271,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLFrameElement - +WebKitDOMHTMLFrameElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -207,7 +207,7 @@

    Properties

    -
    +
    @@ -288,7 +288,7 @@

    Types and Values

    -
    +
    @@ -301,7 +301,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -328,8 +328,8 @@
     webkit_dom_html_frame_element_get_frame_border
                                    (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -343,9 +343,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -356,8 +355,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -385,8 +384,8 @@ webkit_dom_html_frame_element_get_long_desc (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -400,9 +399,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -413,8 +411,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -442,8 +440,8 @@ webkit_dom_html_frame_element_get_margin_height (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -457,9 +455,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -470,8 +467,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -499,8 +496,8 @@ webkit_dom_html_frame_element_get_margin_width (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -514,9 +511,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -527,8 +523,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -556,8 +552,8 @@ webkit_dom_html_frame_element_get_name (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -571,9 +567,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -584,8 +579,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -613,8 +608,8 @@ webkit_dom_html_frame_element_get_no_resize (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -628,9 +623,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -641,8 +635,8 @@ (WebKitDOMHTMLFrameElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -670,8 +664,8 @@ webkit_dom_html_frame_element_get_scrolling (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -685,9 +679,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -698,8 +691,8 @@ (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -726,8 +719,8 @@
    gchar *
     webkit_dom_html_frame_element_get_src (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -741,9 +734,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -753,8 +745,8 @@ webkit_dom_html_frame_element_set_src (WebKitDOMHTMLFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -782,8 +774,8 @@ webkit_dom_html_frame_element_get_content_document (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -797,7 +789,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -809,8 +801,8 @@ webkit_dom_html_frame_element_get_content_window (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -824,7 +816,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -836,8 +828,8 @@ webkit_dom_html_frame_element_get_width (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -851,9 +843,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -863,8 +854,8 @@ webkit_dom_html_frame_element_get_height (WebKitDOMHTMLFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -878,9 +869,8 @@
    -

    Returns

    +

    Returns

    A glong

    -

    @@ -991,7 +981,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameSetElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameSetElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameSetElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLFrameSetElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLFrameSetElement - +WebKitDOMHTMLFrameSetElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -143,8 +143,8 @@
     webkit_dom_html_frame_set_element_get_cols
                                    (WebKitDOMHTMLFrameSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -158,9 +158,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -171,8 +170,8 @@ (WebKitDOMHTMLFrameSetElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,8 +199,8 @@ webkit_dom_html_frame_set_element_get_rows (WebKitDOMHTMLFrameSetElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -215,9 +214,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -228,8 +226,8 @@ (WebKitDOMHTMLFrameSetElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -280,7 +278,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLHeadElement - +WebKitDOMHTMLHeadElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_head_element_get_profile
                                    (WebKitDOMHTMLHeadElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLHeadElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadingElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadingElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadingElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHeadingElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLHeadingElement - +WebKitDOMHTMLHeadingElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_heading_element_get_align
                                    (WebKitDOMHTMLHeadingElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLHeadingElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHRElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHRElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHRElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHRElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLHRElement - +WebKitDOMHTMLHRElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -111,7 +111,7 @@

    Properties

    -
    +
    @@ -146,7 +146,7 @@

    Types and Values

    -
    +
    @@ -159,7 +159,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -185,8 +185,8 @@
     
    gchar *
     webkit_dom_htmlhr_element_get_align (WebKitDOMHTMLHRElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,9 +200,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -212,8 +211,8 @@ webkit_dom_htmlhr_element_set_align (WebKitDOMHTMLHRElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -241,8 +240,8 @@ webkit_dom_htmlhr_element_get_no_shade (WebKitDOMHTMLHRElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -256,9 +255,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -269,8 +267,8 @@ (WebKitDOMHTMLHRElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -297,8 +295,8 @@
    gchar *
     webkit_dom_htmlhr_element_get_size (WebKitDOMHTMLHRElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -312,9 +310,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -324,8 +321,8 @@ webkit_dom_htmlhr_element_set_size (WebKitDOMHTMLHRElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -352,8 +349,8 @@
    gchar *
     webkit_dom_htmlhr_element_get_width (WebKitDOMHTMLHRElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -367,9 +364,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -379,8 +375,8 @@ webkit_dom_htmlhr_element_set_width (WebKitDOMHTMLHRElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -447,7 +443,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHtmlElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHtmlElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLHtmlElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLHtmlElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLHtmlElement - +WebKitDOMHTMLHtmlElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -143,8 +143,8 @@
     webkit_dom_html_html_element_get_version
                                    (WebKitDOMHTMLHtmlElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -158,9 +158,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -171,8 +170,8 @@ (WebKitDOMHTMLHtmlElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,8 +199,8 @@ webkit_dom_html_html_element_get_manifest (WebKitDOMHTMLHtmlElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -215,9 +214,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -228,8 +226,8 @@ (WebKitDOMHTMLHtmlElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -280,7 +278,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLIFrameElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLIFrameElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLIFrameElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLIFrameElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLIFrameElement - +WebKitDOMHTMLIFrameElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -271,7 +271,7 @@

    Properties

    -
    +
    @@ -372,7 +372,7 @@

    Types and Values

    -
    +
    @@ -385,7 +385,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -412,8 +412,8 @@
     webkit_dom_html_iframe_element_get_align
                                    (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -427,9 +427,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -440,8 +439,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -469,8 +468,8 @@ webkit_dom_html_iframe_element_get_frame_border (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -484,9 +483,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -497,8 +495,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -526,8 +524,8 @@ webkit_dom_html_iframe_element_get_height (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -541,9 +539,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -554,8 +551,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -583,8 +580,8 @@ webkit_dom_html_iframe_element_get_long_desc (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -598,9 +595,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -611,8 +607,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -640,8 +636,8 @@ webkit_dom_html_iframe_element_get_margin_height (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -655,9 +651,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -668,8 +663,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -697,8 +692,8 @@ webkit_dom_html_iframe_element_get_margin_width (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -712,9 +707,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -725,8 +719,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -754,8 +748,8 @@ webkit_dom_html_iframe_element_get_name (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -769,9 +763,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -782,8 +775,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -811,8 +804,8 @@ webkit_dom_html_iframe_element_get_sandbox (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -826,9 +819,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -839,8 +831,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -868,8 +860,8 @@ webkit_dom_html_iframe_element_get_seamless (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -883,9 +875,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -896,8 +887,8 @@ (WebKitDOMHTMLIFrameElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -925,8 +916,8 @@ webkit_dom_html_iframe_element_get_scrolling (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -940,9 +931,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -953,8 +943,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -982,8 +972,8 @@ webkit_dom_html_iframe_element_get_src (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -997,9 +987,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1010,8 +999,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1039,8 +1028,8 @@ webkit_dom_html_iframe_element_get_srcdoc (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1054,9 +1043,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1067,8 +1055,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1096,8 +1084,8 @@ webkit_dom_html_iframe_element_get_width (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1111,9 +1099,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1124,8 +1111,8 @@ (WebKitDOMHTMLIFrameElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1153,8 +1140,8 @@ webkit_dom_html_iframe_element_get_content_document (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1168,7 +1155,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -1180,8 +1167,8 @@ webkit_dom_html_iframe_element_get_content_window (WebKitDOMHTMLIFrameElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1195,7 +1182,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -1332,7 +1319,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLImageElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLImageElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLImageElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLImageElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLImageElement - +WebKitDOMHTMLImageElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -327,7 +327,7 @@

    Properties

    -
    +
    @@ -449,7 +449,7 @@

    Types and Values

    -
    +
    @@ -462,7 +462,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -489,8 +489,8 @@
     webkit_dom_html_image_element_get_name
                                    (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -504,9 +504,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -517,8 +516,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -546,8 +545,8 @@ webkit_dom_html_image_element_get_align (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -561,9 +560,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -574,8 +572,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -602,8 +600,8 @@
    gchar *
     webkit_dom_html_image_element_get_alt (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -617,9 +615,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -629,8 +626,8 @@ webkit_dom_html_image_element_set_alt (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -658,8 +655,8 @@ webkit_dom_html_image_element_get_border (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -673,9 +670,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -686,8 +682,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -715,8 +711,8 @@ webkit_dom_html_image_element_get_cross_origin (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -730,9 +726,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -743,8 +738,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -772,8 +767,8 @@ webkit_dom_html_image_element_get_height (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -787,9 +782,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -800,8 +794,8 @@ (WebKitDOMHTMLImageElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -829,8 +823,8 @@ webkit_dom_html_image_element_get_hspace (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -844,9 +838,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -857,8 +850,8 @@ (WebKitDOMHTMLImageElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -886,8 +879,8 @@ webkit_dom_html_image_element_get_is_map (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -901,9 +894,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -914,8 +906,8 @@ (WebKitDOMHTMLImageElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -943,8 +935,8 @@ webkit_dom_html_image_element_get_long_desc (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -958,9 +950,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -971,8 +962,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -999,8 +990,8 @@
    gchar *
     webkit_dom_html_image_element_get_src (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1014,9 +1005,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1026,8 +1016,8 @@ webkit_dom_html_image_element_set_src (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1055,8 +1045,8 @@ webkit_dom_html_image_element_get_srcset (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1070,9 +1060,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1083,8 +1072,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1112,8 +1101,8 @@ webkit_dom_html_image_element_get_use_map (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1127,9 +1116,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1140,8 +1128,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1169,8 +1157,8 @@ webkit_dom_html_image_element_get_vspace (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1184,9 +1172,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1197,8 +1184,8 @@ (WebKitDOMHTMLImageElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1226,8 +1213,8 @@ webkit_dom_html_image_element_get_width (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1241,9 +1228,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1254,8 +1240,8 @@ (WebKitDOMHTMLImageElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1283,8 +1269,8 @@ webkit_dom_html_image_element_get_complete (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1298,9 +1284,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1310,8 +1295,8 @@ webkit_dom_html_image_element_get_lowsrc (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1325,9 +1310,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1338,8 +1322,8 @@ (WebKitDOMHTMLImageElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1367,8 +1351,8 @@ webkit_dom_html_image_element_get_natural_height (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1382,9 +1366,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1394,8 +1377,8 @@ webkit_dom_html_image_element_get_natural_width (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1409,9 +1392,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1420,8 +1402,8 @@
    glong
     webkit_dom_html_image_element_get_x (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1435,9 +1417,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1446,8 +1427,8 @@
    glong
     webkit_dom_html_image_element_get_y (WebKitDOMHTMLImageElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1461,9 +1442,8 @@
    -

    Returns

    +

    Returns

    A glong

    -

    @@ -1640,7 +1620,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLInputElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLInputElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLInputElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLInputElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLInputElement - +WebKitDOMHTMLInputElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -807,7 +807,7 @@

    Properties

    -
    +
    @@ -1087,7 +1087,7 @@

    Types and Values

    -
    +
    @@ -1100,7 +1100,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -1128,8 +1128,8 @@
                                            glong n,
                                            GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1164,8 +1164,8 @@ glong n, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1198,8 +1198,8 @@ webkit_dom_html_input_element_check_validity (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1213,9 +1213,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1226,8 +1225,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1254,8 +1253,8 @@
    void
     webkit_dom_html_input_element_select (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1281,8 +1280,8 @@ const gchar *selectionMode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1331,8 +1330,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1360,8 +1359,8 @@ webkit_dom_html_input_element_get_accept (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1375,9 +1374,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1388,8 +1386,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1416,8 +1414,8 @@
    gchar *
     webkit_dom_html_input_element_get_alt (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1431,9 +1429,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1443,8 +1440,8 @@ webkit_dom_html_input_element_set_alt (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1472,8 +1469,8 @@ webkit_dom_html_input_element_get_autocomplete (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1487,9 +1484,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1500,8 +1496,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1529,8 +1525,8 @@ webkit_dom_html_input_element_get_autofocus (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1544,9 +1540,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1557,8 +1552,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1586,8 +1581,8 @@ webkit_dom_html_input_element_get_default_checked (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1601,9 +1596,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1614,8 +1608,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1643,8 +1637,8 @@ webkit_dom_html_input_element_get_checked (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1658,9 +1652,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1671,8 +1664,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1700,8 +1693,8 @@ webkit_dom_html_input_element_get_dir_name (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1715,9 +1708,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1728,8 +1720,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1757,8 +1749,8 @@ webkit_dom_html_input_element_get_disabled (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1772,9 +1764,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1785,8 +1776,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1814,8 +1805,8 @@ webkit_dom_html_input_element_get_form (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1829,7 +1820,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -1841,8 +1832,8 @@ webkit_dom_html_input_element_get_files (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1856,7 +1847,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMFileList.

    [transfer full]

    @@ -1869,8 +1860,8 @@ (WebKitDOMHTMLInputElement *self, WebKitDOMFileList *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1898,8 +1889,8 @@ webkit_dom_html_input_element_get_form_action (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1913,9 +1904,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1926,8 +1916,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1955,8 +1945,8 @@ webkit_dom_html_input_element_get_form_enctype (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1970,9 +1960,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1983,8 +1972,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2012,8 +2001,8 @@ webkit_dom_html_input_element_get_form_method (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2027,9 +2016,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2040,8 +2028,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2069,8 +2057,8 @@ webkit_dom_html_input_element_get_form_no_validate (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2084,9 +2072,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2097,8 +2084,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2126,8 +2113,8 @@ webkit_dom_html_input_element_get_form_target (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2141,9 +2128,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2154,8 +2140,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2183,8 +2169,8 @@ webkit_dom_html_input_element_get_height (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2198,9 +2184,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -2211,8 +2196,8 @@ (WebKitDOMHTMLInputElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2240,8 +2225,8 @@ webkit_dom_html_input_element_get_indeterminate (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2255,9 +2240,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2268,8 +2252,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2297,8 +2281,8 @@ webkit_dom_html_input_element_get_list (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2312,7 +2296,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -2323,8 +2307,8 @@
    gchar *
     webkit_dom_html_input_element_get_max (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2338,9 +2322,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2350,8 +2333,8 @@ webkit_dom_html_input_element_set_max (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2379,8 +2362,8 @@ webkit_dom_html_input_element_get_max_length (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2394,9 +2377,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -2408,8 +2390,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2441,8 +2423,8 @@
    gchar *
     webkit_dom_html_input_element_get_min (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2456,9 +2438,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2468,8 +2449,8 @@ webkit_dom_html_input_element_set_min (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2497,8 +2478,8 @@ webkit_dom_html_input_element_get_multiple (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2512,9 +2493,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2525,8 +2505,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2554,8 +2534,8 @@ webkit_dom_html_input_element_get_name (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2569,9 +2549,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2582,8 +2561,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2611,8 +2590,8 @@ webkit_dom_html_input_element_get_pattern (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2626,9 +2605,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2639,8 +2617,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2668,8 +2646,8 @@ webkit_dom_html_input_element_get_placeholder (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2683,9 +2661,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2696,8 +2673,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2725,8 +2702,8 @@ webkit_dom_html_input_element_get_read_only (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2740,9 +2717,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2753,8 +2729,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2782,8 +2758,8 @@ webkit_dom_html_input_element_get_required (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2797,9 +2773,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2810,8 +2785,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2839,8 +2814,8 @@ webkit_dom_html_input_element_get_size (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2854,9 +2829,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -2868,8 +2842,8 @@ gulong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2901,8 +2875,8 @@
    gchar *
     webkit_dom_html_input_element_get_src (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2916,9 +2890,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2928,8 +2901,8 @@ webkit_dom_html_input_element_set_src (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2957,8 +2930,8 @@ webkit_dom_html_input_element_get_step (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2972,9 +2945,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2985,8 +2957,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3014,8 +2986,8 @@ webkit_dom_html_input_element_get_default_value (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3029,9 +3001,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3042,8 +3013,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3071,8 +3042,8 @@ webkit_dom_html_input_element_get_value (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3086,9 +3057,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3099,8 +3069,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3128,8 +3098,8 @@ webkit_dom_html_input_element_get_value_as_number (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3143,9 +3113,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -3157,8 +3126,8 @@ gdouble value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3191,8 +3160,8 @@ webkit_dom_html_input_element_get_width (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3206,9 +3175,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -3219,8 +3187,8 @@ (WebKitDOMHTMLInputElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3248,8 +3216,8 @@ webkit_dom_html_input_element_get_will_validate (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3263,9 +3231,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3275,8 +3242,8 @@ webkit_dom_html_input_element_get_validity (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3290,7 +3257,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -3302,8 +3269,8 @@ webkit_dom_html_input_element_get_validation_message (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3317,9 +3284,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3329,8 +3295,8 @@ webkit_dom_html_input_element_get_labels (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3344,7 +3310,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -3356,8 +3322,8 @@ webkit_dom_html_input_element_get_align (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3371,9 +3337,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3384,8 +3349,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3413,8 +3378,8 @@ webkit_dom_html_input_element_get_webkitdirectory (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3428,9 +3393,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3441,8 +3405,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3470,8 +3434,8 @@ webkit_dom_html_input_element_get_use_map (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3485,9 +3449,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3498,8 +3461,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3527,8 +3490,8 @@ webkit_dom_html_input_element_get_incremental (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3542,9 +3505,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3555,8 +3517,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3584,8 +3546,8 @@ webkit_dom_html_input_element_get_webkit_speech (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3599,9 +3561,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3612,8 +3573,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3641,8 +3602,8 @@ webkit_dom_html_input_element_get_webkit_grammar (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3656,9 +3617,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3669,8 +3629,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3698,8 +3658,8 @@ webkit_dom_html_input_element_get_autocorrect (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3713,9 +3673,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -3726,8 +3685,8 @@ (WebKitDOMHTMLInputElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3755,8 +3714,8 @@ webkit_dom_html_input_element_get_autocapitalize (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3770,9 +3729,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3783,8 +3741,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3812,8 +3770,8 @@ webkit_dom_html_input_element_get_capture (WebKitDOMHTMLInputElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3827,9 +3785,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -3840,8 +3797,8 @@ (WebKitDOMHTMLInputElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4252,7 +4209,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLKeygenElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLKeygenElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLKeygenElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLKeygenElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLKeygenElement - +WebKitDOMHTMLKeygenElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -183,7 +183,7 @@

    Properties

    -
    +
    @@ -258,7 +258,7 @@

    Types and Values

    -
    +
    @@ -271,7 +271,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -298,8 +298,8 @@
     webkit_dom_html_keygen_element_check_validity
                                    (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -313,9 +313,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -326,8 +325,8 @@ (WebKitDOMHTMLKeygenElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -355,8 +354,8 @@ webkit_dom_html_keygen_element_get_autofocus (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -370,9 +369,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -383,8 +381,8 @@ (WebKitDOMHTMLKeygenElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -412,8 +410,8 @@ webkit_dom_html_keygen_element_get_challenge (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -427,9 +425,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -440,8 +437,8 @@ (WebKitDOMHTMLKeygenElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -469,8 +466,8 @@ webkit_dom_html_keygen_element_get_disabled (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -484,9 +481,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -497,8 +493,8 @@ (WebKitDOMHTMLKeygenElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -526,8 +522,8 @@ webkit_dom_html_keygen_element_get_form (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -541,7 +537,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -553,8 +549,8 @@ webkit_dom_html_keygen_element_get_keytype (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -568,9 +564,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -581,8 +576,8 @@ (WebKitDOMHTMLKeygenElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -610,8 +605,8 @@ webkit_dom_html_keygen_element_get_name (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -625,9 +620,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -638,8 +632,8 @@ (WebKitDOMHTMLKeygenElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -667,8 +661,8 @@ webkit_dom_html_keygen_element_get_will_validate (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -682,9 +676,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -694,8 +687,8 @@ webkit_dom_html_keygen_element_get_validity (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -709,7 +702,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -721,8 +714,8 @@ webkit_dom_html_keygen_element_get_validation_message (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -736,9 +729,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -748,8 +740,8 @@ webkit_dom_html_keygen_element_get_labels (WebKitDOMHTMLKeygenElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -763,7 +755,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -867,7 +859,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLabelElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLabelElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLabelElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLabelElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLLabelElement - +WebKitDOMHTMLLabelElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -109,7 +109,7 @@

    Types and Values

    -
    +
    @@ -122,7 +122,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -149,8 +149,8 @@
     webkit_dom_html_label_element_get_form
                                    (WebKitDOMHTMLLabelElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -164,7 +164,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -176,8 +176,8 @@ webkit_dom_html_label_element_get_html_for (WebKitDOMHTMLLabelElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,9 +191,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -204,8 +203,8 @@ (WebKitDOMHTMLLabelElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,8 +232,8 @@ webkit_dom_html_label_element_get_control (WebKitDOMHTMLLabelElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -248,7 +247,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -289,7 +288,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLegendElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLegendElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLegendElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLegendElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLLegendElement - +WebKitDOMHTMLLegendElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -71,7 +71,7 @@

    Properties

    -
    +
    @@ -95,7 +95,7 @@

    Types and Values

    -
    +
    @@ -108,7 +108,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -135,8 +135,8 @@
     webkit_dom_html_legend_element_get_form
                                    (WebKitDOMHTMLLegendElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -150,7 +150,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -162,8 +162,8 @@ webkit_dom_html_legend_element_get_align (WebKitDOMHTMLLegendElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -177,9 +177,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -190,8 +189,8 @@ (WebKitDOMHTMLLegendElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -241,7 +240,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLIElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLIElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLIElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLIElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLLIElement - +WebKitDOMHTMLLIElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -86,7 +86,7 @@

    Types and Values

    -
    +
    @@ -99,7 +99,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -125,8 +125,8 @@
     
    glong
     webkit_dom_htmlli_element_get_value (WebKitDOMHTMLLIElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -140,9 +140,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -152,8 +151,8 @@ webkit_dom_htmlli_element_set_value (WebKitDOMHTMLLIElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -204,7 +203,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLinkElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLinkElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLLinkElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLLinkElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLLinkElement - +WebKitDOMHTMLLinkElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -183,7 +183,7 @@

    Properties

    -
    +
    @@ -254,7 +254,7 @@

    Types and Values

    -
    +
    @@ -267,7 +267,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -294,8 +294,8 @@
     webkit_dom_html_link_element_get_disabled
                                    (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -309,9 +309,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -322,8 +321,8 @@ (WebKitDOMHTMLLinkElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -351,8 +350,8 @@ webkit_dom_html_link_element_get_charset (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,9 +365,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -379,8 +377,8 @@ (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -407,8 +405,8 @@
    gchar *
     webkit_dom_html_link_element_get_href (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -422,9 +420,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -434,8 +431,8 @@ webkit_dom_html_link_element_set_href (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -463,8 +460,8 @@ webkit_dom_html_link_element_get_hreflang (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -478,9 +475,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -491,8 +487,8 @@ (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -520,8 +516,8 @@ webkit_dom_html_link_element_get_media (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -535,9 +531,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -548,8 +543,8 @@ (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -576,8 +571,8 @@
    gchar *
     webkit_dom_html_link_element_get_rel (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -591,9 +586,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -603,8 +597,8 @@ webkit_dom_html_link_element_set_rel (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -631,8 +625,8 @@
    gchar *
     webkit_dom_html_link_element_get_rev (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -646,9 +640,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -658,8 +651,8 @@ webkit_dom_html_link_element_set_rev (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -687,8 +680,8 @@ webkit_dom_html_link_element_get_target (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -702,9 +695,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -715,8 +707,8 @@ (WebKitDOMHTMLLinkElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -744,8 +736,8 @@ webkit_dom_html_link_element_get_sheet (WebKitDOMHTMLLinkElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -759,7 +751,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheet.

    [transfer full]

    @@ -857,7 +849,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMapElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMapElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMapElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMapElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLMapElement - +WebKitDOMHTMLMapElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -71,7 +71,7 @@

    Properties

    -
    +
    @@ -95,7 +95,7 @@

    Types and Values

    -
    +
    @@ -108,7 +108,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -134,8 +134,8 @@
     
    WebKitDOMHTMLCollection *
     webkit_dom_html_map_element_get_areas (WebKitDOMHTMLMapElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -149,7 +149,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -160,8 +160,8 @@
    gchar *
     webkit_dom_html_map_element_get_name (WebKitDOMHTMLMapElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -175,9 +175,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -187,8 +186,8 @@ webkit_dom_html_map_element_set_name (WebKitDOMHTMLMapElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -238,7 +237,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMarqueeElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMarqueeElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMarqueeElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMarqueeElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLMarqueeElement - +WebKitDOMHTMLMarqueeElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -239,7 +239,7 @@

    Properties

    -
    +
    @@ -311,7 +311,7 @@

    Types and Values

    -
    +
    @@ -324,7 +324,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -350,8 +350,8 @@
     
    void
     webkit_dom_html_marquee_element_start (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -371,8 +371,8 @@
    void
     webkit_dom_html_marquee_element_stop (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -393,8 +393,8 @@ webkit_dom_html_marquee_element_get_behavior (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -408,9 +408,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -421,8 +420,8 @@ (WebKitDOMHTMLMarqueeElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,8 +449,8 @@ webkit_dom_html_marquee_element_get_bg_color (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -465,9 +464,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -478,8 +476,8 @@ (WebKitDOMHTMLMarqueeElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -507,8 +505,8 @@ webkit_dom_html_marquee_element_get_direction (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -522,9 +520,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -535,8 +532,8 @@ (WebKitDOMHTMLMarqueeElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -564,8 +561,8 @@ webkit_dom_html_marquee_element_get_height (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -579,9 +576,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -592,8 +588,8 @@ (WebKitDOMHTMLMarqueeElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -621,8 +617,8 @@ webkit_dom_html_marquee_element_get_hspace (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -636,9 +632,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -649,8 +644,8 @@ (WebKitDOMHTMLMarqueeElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -678,8 +673,8 @@ webkit_dom_html_marquee_element_get_loop (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -693,9 +688,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -707,8 +701,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -741,8 +735,8 @@ webkit_dom_html_marquee_element_get_scroll_amount (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -756,9 +750,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -770,8 +763,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -804,8 +797,8 @@ webkit_dom_html_marquee_element_get_scroll_delay (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -819,9 +812,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -833,8 +825,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -867,8 +859,8 @@ webkit_dom_html_marquee_element_get_true_speed (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -882,9 +874,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -895,8 +886,8 @@ (WebKitDOMHTMLMarqueeElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -924,8 +915,8 @@ webkit_dom_html_marquee_element_get_vspace (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -939,9 +930,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -952,8 +942,8 @@ (WebKitDOMHTMLMarqueeElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -981,8 +971,8 @@ webkit_dom_html_marquee_element_get_width (WebKitDOMHTMLMarqueeElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -996,9 +986,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1009,8 +998,8 @@ (WebKitDOMHTMLMarqueeElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1131,7 +1120,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMediaElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMediaElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMediaElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMediaElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLMediaElement - +WebKitDOMHTMLMediaElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -487,7 +487,7 @@

    Properties

    -
    +
    @@ -676,7 +676,7 @@

    Types and Values

    -
    +
    @@ -689,7 +689,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -717,8 +717,8 @@
     
    void
     webkit_dom_html_media_element_load (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -740,8 +740,8 @@ (WebKitDOMHTMLMediaElement *self, const gchar *type);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -762,9 +762,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -773,8 +772,8 @@
    void
     webkit_dom_html_media_element_play (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -794,8 +793,8 @@
    void
     webkit_dom_html_media_element_pause (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -817,8 +816,8 @@ (WebKitDOMHTMLMediaElement *self, gdouble time);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -850,8 +849,8 @@ const gchar *language, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -887,7 +886,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrack.

    [transfer full]

    @@ -899,8 +898,8 @@ webkit_dom_html_media_element_webkit_show_playback_target_picker (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -921,8 +920,8 @@ webkit_dom_html_media_element_get_error (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -936,7 +935,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMMediaError.

    [transfer full]

    @@ -947,8 +946,8 @@
    gchar *
     webkit_dom_html_media_element_get_src (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -962,9 +961,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -974,8 +972,8 @@ webkit_dom_html_media_element_set_src (WebKitDOMHTMLMediaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1003,8 +1001,8 @@ webkit_dom_html_media_element_get_current_src (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1018,9 +1016,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1030,8 +1027,8 @@ webkit_dom_html_media_element_get_network_state (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1045,9 +1042,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -1057,8 +1053,8 @@ webkit_dom_html_media_element_get_preload (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1072,9 +1068,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1085,8 +1080,8 @@ (WebKitDOMHTMLMediaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1114,8 +1109,8 @@ webkit_dom_html_media_element_get_buffered (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1129,7 +1124,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -1141,8 +1136,8 @@ webkit_dom_html_media_element_get_ready_state (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1156,9 +1151,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -1168,8 +1162,8 @@ webkit_dom_html_media_element_get_seeking (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1183,9 +1177,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1195,8 +1188,8 @@ webkit_dom_html_media_element_get_current_time (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1210,9 +1203,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -1222,8 +1214,8 @@ webkit_dom_html_media_element_get_duration (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1237,9 +1229,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -1249,8 +1240,8 @@ webkit_dom_html_media_element_get_paused (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1264,9 +1255,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1276,8 +1266,8 @@ webkit_dom_html_media_element_get_default_playback_rate (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1291,9 +1281,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -1304,8 +1293,8 @@ (WebKitDOMHTMLMediaElement *self, gdouble value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1333,8 +1322,8 @@ webkit_dom_html_media_element_get_playback_rate (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1348,9 +1337,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -1361,8 +1349,8 @@ (WebKitDOMHTMLMediaElement *self, gdouble value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1390,8 +1378,8 @@ webkit_dom_html_media_element_get_played (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1405,7 +1393,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -1417,8 +1405,8 @@ webkit_dom_html_media_element_get_seekable (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1432,7 +1420,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -1444,8 +1432,8 @@ webkit_dom_html_media_element_get_ended (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1459,9 +1447,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1471,8 +1458,8 @@ webkit_dom_html_media_element_get_autoplay (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1486,9 +1473,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1499,8 +1485,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1528,8 +1514,8 @@ webkit_dom_html_media_element_get_loop (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1543,9 +1529,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1556,8 +1541,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1585,8 +1570,8 @@ webkit_dom_html_media_element_get_controls (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1600,9 +1585,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1613,8 +1597,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1642,8 +1626,8 @@ webkit_dom_html_media_element_get_volume (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1657,9 +1641,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -1671,8 +1654,8 @@ gdouble value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1705,8 +1688,8 @@ webkit_dom_html_media_element_get_muted (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1720,9 +1703,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1733,8 +1715,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1762,8 +1744,8 @@ webkit_dom_html_media_element_get_default_muted (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1777,9 +1759,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1790,8 +1771,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1819,8 +1800,8 @@ webkit_dom_html_media_element_get_webkit_preserves_pitch (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1834,9 +1815,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1847,8 +1827,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1876,8 +1856,8 @@ webkit_dom_html_media_element_get_webkit_has_closed_captions (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1891,9 +1871,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1903,8 +1882,8 @@ webkit_dom_html_media_element_get_webkit_closed_captions_visible (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1918,9 +1897,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1931,8 +1909,8 @@ (WebKitDOMHTMLMediaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1960,8 +1938,8 @@ webkit_dom_html_media_element_get_webkit_audio_decoded_byte_count (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1975,9 +1953,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -1987,8 +1964,8 @@ webkit_dom_html_media_element_get_webkit_video_decoded_byte_count (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2002,9 +1979,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -2014,8 +1990,8 @@ webkit_dom_html_media_element_get_audio_tracks (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2029,7 +2005,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMAudioTrackList.

    [transfer full]

    @@ -2041,8 +2017,8 @@ webkit_dom_html_media_element_get_text_tracks (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2056,7 +2032,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrackList.

    [transfer none]

    @@ -2068,8 +2044,8 @@ webkit_dom_html_media_element_get_video_tracks (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2083,7 +2059,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMVideoTrackList.

    [transfer none]

    @@ -2095,8 +2071,8 @@ webkit_dom_html_media_element_get_media_group (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2110,9 +2086,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -2123,8 +2098,8 @@ (WebKitDOMHTMLMediaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2152,8 +2127,8 @@ webkit_dom_html_media_element_get_controller (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2167,7 +2142,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMMediaController.

    [transfer full]

    @@ -2179,8 +2154,8 @@ webkit_dom_html_media_element_get_webkit_current_playback_target_is_wireless (WebKitDOMHTMLMediaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2194,9 +2169,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -2208,10 +2182,6 @@

    webkit_dom_html_media_element_get_start_time is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -2222,10 +2192,6 @@

    webkit_dom_html_media_element_get_initial_time is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -2495,7 +2461,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMenuElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMenuElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMenuElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMenuElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLMenuElement - +WebKitDOMHTMLMenuElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -78,7 +78,7 @@

    Types and Values

    -
    +
    @@ -91,7 +91,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -118,8 +118,8 @@
     webkit_dom_html_menu_element_get_compact
                                    (WebKitDOMHTMLMenuElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -133,9 +133,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -146,8 +145,8 @@ (WebKitDOMHTMLMenuElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -190,7 +189,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMetaElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMetaElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLMetaElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLMetaElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLMetaElement - +WebKitDOMHTMLMetaElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -111,7 +111,7 @@

    Properties

    -
    +
    @@ -147,7 +147,7 @@

    Types and Values

    -
    +
    @@ -160,7 +160,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -187,8 +187,8 @@
     webkit_dom_html_meta_element_get_content
                                    (WebKitDOMHTMLMetaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -202,9 +202,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -215,8 +214,8 @@ (WebKitDOMHTMLMetaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -244,8 +243,8 @@ webkit_dom_html_meta_element_get_http_equiv (WebKitDOMHTMLMetaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -259,9 +258,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -272,8 +270,8 @@ (WebKitDOMHTMLMetaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -300,8 +298,8 @@
    gchar *
     webkit_dom_html_meta_element_get_name (WebKitDOMHTMLMetaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -315,9 +313,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -327,8 +324,8 @@ webkit_dom_html_meta_element_set_name (WebKitDOMHTMLMetaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -356,8 +353,8 @@ webkit_dom_html_meta_element_get_scheme (WebKitDOMHTMLMetaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -371,9 +368,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -384,8 +380,8 @@ (WebKitDOMHTMLMetaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -452,7 +448,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLModElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLModElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLModElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLModElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLModElement - +WebKitDOMHTMLModElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -142,8 +142,8 @@
     
    gchar *
     webkit_dom_html_mod_element_get_cite (WebKitDOMHTMLModElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -169,8 +168,8 @@ webkit_dom_html_mod_element_set_cite (WebKitDOMHTMLModElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -198,8 +197,8 @@ webkit_dom_html_mod_element_get_date_time (WebKitDOMHTMLModElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -213,9 +212,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -226,8 +224,8 @@ (WebKitDOMHTMLModElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -278,7 +276,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLObjectElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLObjectElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLObjectElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLObjectElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLObjectElement - +WebKitDOMHTMLObjectElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -343,7 +343,7 @@

    Properties

    -
    +
    @@ -477,7 +477,7 @@

    Types and Values

    -
    +
    @@ -490,7 +490,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -517,8 +517,8 @@
     webkit_dom_html_object_element_check_validity
                                    (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -532,9 +532,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -545,8 +544,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -574,8 +573,8 @@ webkit_dom_html_object_element_get_form (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -589,7 +588,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -601,8 +600,8 @@ webkit_dom_html_object_element_get_code (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -616,9 +615,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -629,8 +627,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -658,8 +656,8 @@ webkit_dom_html_object_element_get_align (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -673,9 +671,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -686,8 +683,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -715,8 +712,8 @@ webkit_dom_html_object_element_get_archive (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -730,9 +727,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -743,8 +739,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -772,8 +768,8 @@ webkit_dom_html_object_element_get_border (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -787,9 +783,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -800,8 +795,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -829,8 +824,8 @@ webkit_dom_html_object_element_get_code_base (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -844,9 +839,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -857,8 +851,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -886,8 +880,8 @@ webkit_dom_html_object_element_get_code_type (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -901,9 +895,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -914,8 +907,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -943,8 +936,8 @@ webkit_dom_html_object_element_get_data (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -958,9 +951,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -971,8 +963,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1000,8 +992,8 @@ webkit_dom_html_object_element_get_declare (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1015,9 +1007,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1028,8 +1019,8 @@ (WebKitDOMHTMLObjectElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1057,8 +1048,8 @@ webkit_dom_html_object_element_get_height (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1072,9 +1063,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1085,8 +1075,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1114,8 +1104,8 @@ webkit_dom_html_object_element_get_hspace (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1129,9 +1119,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1142,8 +1131,8 @@ (WebKitDOMHTMLObjectElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1171,8 +1160,8 @@ webkit_dom_html_object_element_get_name (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1186,9 +1175,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1199,8 +1187,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1228,8 +1216,8 @@ webkit_dom_html_object_element_get_standby (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1243,9 +1231,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1256,8 +1243,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1285,8 +1272,8 @@ webkit_dom_html_object_element_get_use_map (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1300,9 +1287,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1313,8 +1299,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1342,8 +1328,8 @@ webkit_dom_html_object_element_get_vspace (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1357,9 +1343,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1370,8 +1355,8 @@ (WebKitDOMHTMLObjectElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1399,8 +1384,8 @@ webkit_dom_html_object_element_get_width (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1414,9 +1399,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1427,8 +1411,8 @@ (WebKitDOMHTMLObjectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1456,8 +1440,8 @@ webkit_dom_html_object_element_get_will_validate (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1471,9 +1455,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1483,8 +1466,8 @@ webkit_dom_html_object_element_get_validity (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1498,7 +1481,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -1510,8 +1493,8 @@ webkit_dom_html_object_element_get_validation_message (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1525,9 +1508,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1537,8 +1519,8 @@ webkit_dom_html_object_element_get_content_document (WebKitDOMHTMLObjectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1552,7 +1534,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -1736,7 +1718,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOListElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOListElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOListElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOListElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLOListElement - +WebKitDOMHTMLOListElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -95,7 +95,7 @@

    Properties

    -
    +
    @@ -128,7 +128,7 @@

    Types and Values

    -
    +
    @@ -141,7 +141,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -168,8 +168,8 @@
     webkit_dom_htmlo_list_element_get_compact
                                    (WebKitDOMHTMLOListElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -183,9 +183,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -196,8 +195,8 @@ (WebKitDOMHTMLOListElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -225,8 +224,8 @@ webkit_dom_htmlo_list_element_get_start (WebKitDOMHTMLOListElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -240,9 +239,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -253,8 +251,8 @@ (WebKitDOMHTMLOListElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -282,8 +280,8 @@ webkit_dom_htmlo_list_element_get_reversed (WebKitDOMHTMLOListElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -297,9 +295,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -310,8 +307,8 @@ (WebKitDOMHTMLOListElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -378,7 +375,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptGroupElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptGroupElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptGroupElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptGroupElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLOptGroupElement - +WebKitDOMHTMLOptGroupElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -102,7 +102,7 @@

    Types and Values

    -
    +
    @@ -115,7 +115,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -142,8 +142,8 @@
     webkit_dom_html_opt_group_element_get_disabled
                                    (WebKitDOMHTMLOptGroupElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -170,8 +169,8 @@ (WebKitDOMHTMLOptGroupElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -199,8 +198,8 @@ webkit_dom_html_opt_group_element_get_label (WebKitDOMHTMLOptGroupElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -214,9 +213,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -227,8 +225,8 @@ (WebKitDOMHTMLOptGroupElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -279,7 +277,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLOptionElement - +WebKitDOMHTMLOptionElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -151,7 +151,7 @@

    Properties

    -
    +
    @@ -207,7 +207,7 @@

    Types and Values

    -
    +
    @@ -220,7 +220,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -247,8 +247,8 @@
     webkit_dom_html_option_element_get_disabled
                                    (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -262,9 +262,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -275,8 +274,8 @@ (WebKitDOMHTMLOptionElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -304,8 +303,8 @@ webkit_dom_html_option_element_get_form (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -319,7 +318,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -331,8 +330,8 @@ webkit_dom_html_option_element_get_label (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -346,9 +345,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -359,8 +357,8 @@ (WebKitDOMHTMLOptionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -388,8 +386,8 @@ webkit_dom_html_option_element_get_default_selected (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -403,9 +401,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -416,8 +413,8 @@ (WebKitDOMHTMLOptionElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -445,8 +442,8 @@ webkit_dom_html_option_element_get_selected (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -460,9 +457,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -473,8 +469,8 @@ (WebKitDOMHTMLOptionElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -502,8 +498,8 @@ webkit_dom_html_option_element_get_value (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -517,9 +513,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -530,8 +525,8 @@ (WebKitDOMHTMLOptionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -559,8 +554,8 @@ webkit_dom_html_option_element_get_text (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -574,9 +569,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -586,8 +580,8 @@ webkit_dom_html_option_element_get_index (WebKitDOMHTMLOptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -601,9 +595,8 @@
    -

    Returns

    +

    Returns

    A glong

    -

    @@ -683,7 +676,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionsCollection.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionsCollection.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionsCollection.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLOptionsCollection.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLOptionsCollection - +WebKitDOMHTMLOptionsCollection: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -100,7 +100,7 @@

    Types and Values

    -
    +
    @@ -113,7 +113,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMHTMLCollection
                 ╰── WebKitDOMHTMLOptionsCollection
    @@ -133,8 +133,8 @@
                                    (WebKitDOMHTMLOptionsCollection *self,
                                     const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -155,7 +155,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -167,8 +167,8 @@ webkit_dom_html_options_collection_get_selected_index (WebKitDOMHTMLOptionsCollection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -182,9 +182,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -195,8 +194,8 @@ (WebKitDOMHTMLOptionsCollection *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -224,8 +223,8 @@ webkit_dom_html_options_collection_get_length (WebKitDOMHTMLOptionsCollection *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -239,9 +238,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -273,7 +271,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLParagraphElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLParagraphElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLParagraphElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLParagraphElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLParagraphElement - +WebKitDOMHTMLParagraphElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_paragraph_element_get_align
                                    (WebKitDOMHTMLParagraphElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLParagraphElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLParamElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLParamElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLParamElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLParamElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLParamElement - +WebKitDOMHTMLParamElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -95,7 +95,7 @@

    Properties

    -
    +
    @@ -131,7 +131,7 @@

    Types and Values

    -
    +
    @@ -144,7 +144,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -171,8 +171,8 @@
     webkit_dom_html_param_element_get_name
                                    (WebKitDOMHTMLParamElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -186,9 +186,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -199,8 +198,8 @@ (WebKitDOMHTMLParamElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -228,8 +227,8 @@ webkit_dom_html_param_element_get_value (WebKitDOMHTMLParamElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -243,9 +242,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -256,8 +254,8 @@ (WebKitDOMHTMLParamElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,8 +283,8 @@ webkit_dom_html_param_element_get_value_type (WebKitDOMHTMLParamElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -300,9 +298,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -313,8 +310,8 @@ (WebKitDOMHTMLParamElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -381,7 +378,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLPreElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLPreElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLPreElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLPreElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLPreElement - +WebKitDOMHTMLPreElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -101,7 +101,7 @@

    Types and Values

    -
    +
    @@ -114,7 +114,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -140,8 +140,8 @@
     
    glong
     webkit_dom_html_pre_element_get_width (WebKitDOMHTMLPreElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -155,9 +155,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -167,8 +166,8 @@ webkit_dom_html_pre_element_set_width (WebKitDOMHTMLPreElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -195,8 +194,8 @@
    gboolean
     webkit_dom_html_pre_element_get_wrap (WebKitDOMHTMLPreElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -210,9 +209,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -222,8 +220,8 @@ webkit_dom_html_pre_element_set_wrap (WebKitDOMHTMLPreElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -274,7 +272,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLQuoteElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLQuoteElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLQuoteElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLQuoteElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLQuoteElement - +WebKitDOMHTMLQuoteElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_quote_element_get_cite
                                    (WebKitDOMHTMLQuoteElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLQuoteElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLScriptElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLScriptElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLScriptElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLScriptElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLScriptElement - +WebKitDOMHTMLScriptElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -191,7 +191,7 @@

    Properties

    -
    +
    @@ -261,7 +261,7 @@

    Types and Values

    -
    +
    @@ -274,7 +274,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -301,8 +301,8 @@
     webkit_dom_html_script_element_get_text
                                    (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -316,9 +316,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -329,8 +328,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -358,8 +357,8 @@ webkit_dom_html_script_element_get_html_for (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -373,9 +372,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -386,8 +384,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -415,8 +413,8 @@ webkit_dom_html_script_element_get_event (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -430,9 +428,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -443,8 +440,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -472,8 +469,8 @@ webkit_dom_html_script_element_get_charset (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -487,9 +484,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -500,8 +496,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -529,8 +525,8 @@ webkit_dom_html_script_element_get_async (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -544,9 +540,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -557,8 +552,8 @@ (WebKitDOMHTMLScriptElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -586,8 +581,8 @@ webkit_dom_html_script_element_get_defer (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -601,9 +596,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -614,8 +608,8 @@ (WebKitDOMHTMLScriptElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -643,8 +637,8 @@ webkit_dom_html_script_element_get_src (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -658,9 +652,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -671,8 +664,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -700,8 +693,8 @@ webkit_dom_html_script_element_get_cross_origin (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -715,9 +708,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -728,8 +720,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -757,8 +749,8 @@ webkit_dom_html_script_element_get_nonce (WebKitDOMHTMLScriptElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -772,9 +764,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -785,8 +776,8 @@ (WebKitDOMHTMLScriptElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -901,7 +892,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLSelectElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLSelectElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLSelectElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLSelectElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLSelectElement - +WebKitDOMHTMLSelectElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -295,7 +295,7 @@

    Properties

    -
    +
    @@ -401,7 +401,7 @@

    Types and Values

    -
    +
    @@ -414,7 +414,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -441,8 +441,8 @@
     webkit_dom_html_select_element_item (WebKitDOMHTMLSelectElement *self,
                                          gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -463,7 +463,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -476,8 +476,8 @@ (WebKitDOMHTMLSelectElement *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -498,7 +498,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -512,8 +512,8 @@ WebKitDOMHTMLElement *before, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -551,8 +551,8 @@ webkit_dom_html_select_element_remove (WebKitDOMHTMLSelectElement *self, glong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -580,8 +580,8 @@ webkit_dom_html_select_element_check_validity (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -595,9 +595,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -608,8 +607,8 @@ (WebKitDOMHTMLSelectElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -637,8 +636,8 @@ webkit_dom_html_select_element_get_autofocus (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -652,9 +651,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -665,8 +663,8 @@ (WebKitDOMHTMLSelectElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -694,8 +692,8 @@ webkit_dom_html_select_element_get_disabled (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -709,9 +707,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -722,8 +719,8 @@ (WebKitDOMHTMLSelectElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -751,8 +748,8 @@ webkit_dom_html_select_element_get_form (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -766,7 +763,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -778,8 +775,8 @@ webkit_dom_html_select_element_get_multiple (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -793,9 +790,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -806,8 +802,8 @@ (WebKitDOMHTMLSelectElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -835,8 +831,8 @@ webkit_dom_html_select_element_get_name (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -850,9 +846,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -863,8 +858,8 @@ (WebKitDOMHTMLSelectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -892,8 +887,8 @@ webkit_dom_html_select_element_get_required (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -907,9 +902,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -920,8 +914,8 @@ (WebKitDOMHTMLSelectElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -949,8 +943,8 @@ webkit_dom_html_select_element_get_size (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -964,9 +958,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -977,8 +970,8 @@ (WebKitDOMHTMLSelectElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1006,8 +999,8 @@ webkit_dom_html_select_element_get_options (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1021,7 +1014,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLOptionsCollection.

    [transfer full]

    @@ -1033,8 +1026,8 @@ webkit_dom_html_select_element_get_length (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1048,9 +1041,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -1062,8 +1054,8 @@ gulong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1096,8 +1088,8 @@ webkit_dom_html_select_element_get_selected_options (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1111,7 +1103,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -1123,8 +1115,8 @@ webkit_dom_html_select_element_get_selected_index (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1138,9 +1130,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1151,8 +1142,8 @@ (WebKitDOMHTMLSelectElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1180,8 +1171,8 @@ webkit_dom_html_select_element_get_value (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1195,9 +1186,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1208,8 +1198,8 @@ (WebKitDOMHTMLSelectElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1237,8 +1227,8 @@ webkit_dom_html_select_element_get_will_validate (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1252,9 +1242,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1264,8 +1253,8 @@ webkit_dom_html_select_element_get_validity (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1279,7 +1268,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -1291,8 +1280,8 @@ webkit_dom_html_select_element_get_validation_message (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1306,9 +1295,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1318,8 +1306,8 @@ webkit_dom_html_select_element_get_labels (WebKitDOMHTMLSelectElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1333,7 +1321,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1482,7 +1470,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLStyleElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLStyleElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLStyleElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLStyleElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLStyleElement - +WebKitDOMHTMLStyleElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -103,7 +103,7 @@

    Properties

    -
    +
    @@ -138,7 +138,7 @@

    Types and Values

    -
    +
    @@ -151,7 +151,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -178,8 +178,8 @@
     webkit_dom_html_style_element_get_disabled
                                    (WebKitDOMHTMLStyleElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -193,9 +193,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -206,8 +205,8 @@ (WebKitDOMHTMLStyleElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -235,8 +234,8 @@ webkit_dom_html_style_element_get_media (WebKitDOMHTMLStyleElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -250,9 +249,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -263,8 +261,8 @@ (WebKitDOMHTMLStyleElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -292,8 +290,8 @@ webkit_dom_html_style_element_get_sheet (WebKitDOMHTMLStyleElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -307,7 +305,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheet.

    [transfer full]

    @@ -332,10 +330,6 @@

    webkit_dom_html_style_element_get_scoped is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -382,7 +376,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCaptionElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCaptionElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCaptionElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCaptionElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableCaptionElement - +WebKitDOMHTMLTableCaptionElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_table_caption_element_get_align
                                    (WebKitDOMHTMLTableCaptionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLTableCaptionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCellElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCellElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCellElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableCellElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableCellElement - +WebKitDOMHTMLTableCellElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -279,7 +279,7 @@

    Properties

    -
    +
    @@ -377,7 +377,7 @@

    Types and Values

    -
    +
    @@ -390,7 +390,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -417,8 +417,8 @@
     webkit_dom_html_table_cell_element_get_cell_index
                                    (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -432,9 +432,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -444,8 +443,8 @@ webkit_dom_html_table_cell_element_get_abbr (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -459,9 +458,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -472,8 +470,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -501,8 +499,8 @@ webkit_dom_html_table_cell_element_get_align (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -516,9 +514,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -529,8 +526,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -558,8 +555,8 @@ webkit_dom_html_table_cell_element_get_axis (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -573,9 +570,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -586,8 +582,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -615,8 +611,8 @@ webkit_dom_html_table_cell_element_get_bg_color (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -630,9 +626,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -643,8 +638,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -672,8 +667,8 @@ webkit_dom_html_table_cell_element_get_ch (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -687,9 +682,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -700,8 +694,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -729,8 +723,8 @@ webkit_dom_html_table_cell_element_get_ch_off (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -744,9 +738,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -757,8 +750,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -786,8 +779,8 @@ webkit_dom_html_table_cell_element_get_col_span (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -801,9 +794,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -814,8 +806,8 @@ (WebKitDOMHTMLTableCellElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -843,8 +835,8 @@ webkit_dom_html_table_cell_element_get_headers (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -858,9 +850,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -871,8 +862,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -900,8 +891,8 @@ webkit_dom_html_table_cell_element_get_height (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -915,9 +906,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -928,8 +918,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -957,8 +947,8 @@ webkit_dom_html_table_cell_element_get_no_wrap (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -972,9 +962,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -985,8 +974,8 @@ (WebKitDOMHTMLTableCellElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1014,8 +1003,8 @@ webkit_dom_html_table_cell_element_get_row_span (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1029,9 +1018,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1042,8 +1030,8 @@ (WebKitDOMHTMLTableCellElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1071,8 +1059,8 @@ webkit_dom_html_table_cell_element_get_scope (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1086,9 +1074,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1099,8 +1086,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1128,8 +1115,8 @@ webkit_dom_html_table_cell_element_get_v_align (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1143,9 +1130,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1156,8 +1142,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1185,8 +1171,8 @@ webkit_dom_html_table_cell_element_get_width (WebKitDOMHTMLTableCellElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1200,9 +1186,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1213,8 +1198,8 @@ (WebKitDOMHTMLTableCellElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1369,7 +1354,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableColElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableColElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableColElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableColElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableColElement - +WebKitDOMHTMLTableColElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -143,7 +143,7 @@

    Properties

    -
    +
    @@ -190,7 +190,7 @@

    Types and Values

    -
    +
    @@ -203,7 +203,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -230,8 +230,8 @@
     webkit_dom_html_table_col_element_get_align
                                    (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -245,9 +245,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -258,8 +257,8 @@ (WebKitDOMHTMLTableColElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -287,8 +286,8 @@ webkit_dom_html_table_col_element_get_ch (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -302,9 +301,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -315,8 +313,8 @@ (WebKitDOMHTMLTableColElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -344,8 +342,8 @@ webkit_dom_html_table_col_element_get_ch_off (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -359,9 +357,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -372,8 +369,8 @@ (WebKitDOMHTMLTableColElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -401,8 +398,8 @@ webkit_dom_html_table_col_element_get_span (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -416,9 +413,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -429,8 +425,8 @@ (WebKitDOMHTMLTableColElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -458,8 +454,8 @@ webkit_dom_html_table_col_element_get_v_align (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -473,9 +469,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -486,8 +481,8 @@ (WebKitDOMHTMLTableColElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -515,8 +510,8 @@ webkit_dom_html_table_col_element_get_width (WebKitDOMHTMLTableColElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -530,9 +525,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -543,8 +537,8 @@ (WebKitDOMHTMLTableColElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -627,7 +621,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableElement - +WebKitDOMHTMLTableElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -327,7 +327,7 @@

    Properties

    -
    +
    @@ -423,7 +423,7 @@

    Types and Values

    -
    +
    @@ -436,7 +436,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -463,8 +463,8 @@
     webkit_dom_html_table_element_create_t_head
                                    (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -478,7 +478,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -490,8 +490,8 @@ webkit_dom_html_table_element_delete_t_head (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -512,8 +512,8 @@ webkit_dom_html_table_element_create_t_foot (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -527,7 +527,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -539,8 +539,8 @@ webkit_dom_html_table_element_delete_t_foot (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -561,8 +561,8 @@ webkit_dom_html_table_element_create_t_body (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -576,7 +576,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -588,8 +588,8 @@ webkit_dom_html_table_element_create_caption (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -603,7 +603,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -615,8 +615,8 @@ webkit_dom_html_table_element_delete_caption (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -639,8 +639,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -666,7 +666,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -680,8 +680,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -714,8 +714,8 @@ webkit_dom_html_table_element_get_caption (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -729,7 +729,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLTableCaptionElement.

    [transfer none]

    @@ -743,8 +743,8 @@ WebKitDOMHTMLTableCaptionElement *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -777,8 +777,8 @@ webkit_dom_html_table_element_get_t_head (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -792,7 +792,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLTableSectionElement.

    [transfer none]

    @@ -806,8 +806,8 @@ WebKitDOMHTMLTableSectionElement *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -840,8 +840,8 @@ webkit_dom_html_table_element_get_t_foot (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -855,7 +855,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLTableSectionElement.

    [transfer none]

    @@ -869,8 +869,8 @@ WebKitDOMHTMLTableSectionElement *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -903,8 +903,8 @@ webkit_dom_html_table_element_get_rows (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -918,7 +918,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -930,8 +930,8 @@ webkit_dom_html_table_element_get_t_bodies (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -945,7 +945,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -957,8 +957,8 @@ webkit_dom_html_table_element_get_align (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -972,9 +972,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -985,8 +984,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1014,8 +1013,8 @@ webkit_dom_html_table_element_get_bg_color (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1029,9 +1028,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1042,8 +1040,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1071,8 +1069,8 @@ webkit_dom_html_table_element_get_border (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1086,9 +1084,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1099,8 +1096,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1128,8 +1125,8 @@ webkit_dom_html_table_element_get_cell_padding (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1143,9 +1140,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1156,8 +1152,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1185,8 +1181,8 @@ webkit_dom_html_table_element_get_cell_spacing (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1200,9 +1196,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1213,8 +1208,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1242,8 +1237,8 @@ webkit_dom_html_table_element_get_frame (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1257,9 +1252,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1270,8 +1264,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1299,8 +1293,8 @@ webkit_dom_html_table_element_get_rules (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1314,9 +1308,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1327,8 +1320,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1356,8 +1349,8 @@ webkit_dom_html_table_element_get_summary (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1371,9 +1364,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1384,8 +1376,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1413,8 +1405,8 @@ webkit_dom_html_table_element_get_width (WebKitDOMHTMLTableElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1428,9 +1420,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1441,8 +1432,8 @@ (WebKitDOMHTMLTableElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1584,7 +1575,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableRowElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableRowElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableRowElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableRowElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableRowElement - +WebKitDOMHTMLTableRowElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -167,7 +167,7 @@

    Properties

    -
    +
    @@ -225,7 +225,7 @@

    Types and Values

    -
    +
    @@ -238,7 +238,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -267,8 +267,8 @@
                                     glong index,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -294,7 +294,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -308,8 +308,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -342,8 +342,8 @@ webkit_dom_html_table_row_element_get_row_index (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -357,9 +357,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -369,8 +368,8 @@ webkit_dom_html_table_row_element_get_section_row_index (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -384,9 +383,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -396,8 +394,8 @@ webkit_dom_html_table_row_element_get_cells (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -411,7 +409,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -423,8 +421,8 @@ webkit_dom_html_table_row_element_get_align (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -438,9 +436,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -451,8 +448,8 @@ (WebKitDOMHTMLTableRowElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -480,8 +477,8 @@ webkit_dom_html_table_row_element_get_bg_color (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -495,9 +492,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -508,8 +504,8 @@ (WebKitDOMHTMLTableRowElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -537,8 +533,8 @@ webkit_dom_html_table_row_element_get_ch (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -552,9 +548,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -565,8 +560,8 @@ (WebKitDOMHTMLTableRowElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -594,8 +589,8 @@ webkit_dom_html_table_row_element_get_ch_off (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -609,9 +604,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -622,8 +616,8 @@ (WebKitDOMHTMLTableRowElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -651,8 +645,8 @@ webkit_dom_html_table_row_element_get_v_align (WebKitDOMHTMLTableRowElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -666,9 +660,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -679,8 +672,8 @@ (WebKitDOMHTMLTableRowElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -778,7 +771,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableSectionElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableSectionElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableSectionElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTableSectionElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTableSectionElement - +WebKitDOMHTMLTableSectionElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -135,7 +135,7 @@

    Properties

    -
    +
    @@ -177,7 +177,7 @@

    Types and Values

    -
    +
    @@ -190,7 +190,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -219,8 +219,8 @@
                                     glong index,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -246,7 +246,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLElement.

    [transfer none]

    @@ -260,8 +260,8 @@ glong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -294,8 +294,8 @@ webkit_dom_html_table_section_element_get_align (WebKitDOMHTMLTableSectionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -309,9 +309,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -322,8 +321,8 @@ (WebKitDOMHTMLTableSectionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -351,8 +350,8 @@ webkit_dom_html_table_section_element_get_ch (WebKitDOMHTMLTableSectionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,9 +365,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -379,8 +377,8 @@ (WebKitDOMHTMLTableSectionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -408,8 +406,8 @@ webkit_dom_html_table_section_element_get_ch_off (WebKitDOMHTMLTableSectionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -423,9 +421,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -436,8 +433,8 @@ (WebKitDOMHTMLTableSectionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -465,8 +462,8 @@ webkit_dom_html_table_section_element_get_v_align (WebKitDOMHTMLTableSectionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -480,9 +477,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -493,8 +489,8 @@ (WebKitDOMHTMLTableSectionElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -522,8 +518,8 @@ webkit_dom_html_table_section_element_get_rows (WebKitDOMHTMLTableSectionElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -537,7 +533,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLCollection.

    [transfer full]

    @@ -595,7 +591,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTextAreaElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTextAreaElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTextAreaElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTextAreaElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTextAreaElement - +WebKitDOMHTMLTextAreaElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -423,7 +423,7 @@

    Properties

    -
    +
    @@ -573,7 +573,7 @@

    Types and Values

    -
    +
    @@ -586,7 +586,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -613,8 +613,8 @@
     webkit_dom_html_text_area_element_check_validity
                                    (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -628,9 +628,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -641,8 +640,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -670,8 +669,8 @@ webkit_dom_html_text_area_element_select (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -697,8 +696,8 @@ const gchar *selectionMode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -749,8 +748,8 @@ glong end, const gchar *direction);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -788,8 +787,8 @@ webkit_dom_html_text_area_element_get_autofocus (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -803,9 +802,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -816,8 +814,8 @@ (WebKitDOMHTMLTextAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -845,8 +843,8 @@ webkit_dom_html_text_area_element_get_cols (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -860,9 +858,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -873,8 +870,8 @@ (WebKitDOMHTMLTextAreaElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -902,8 +899,8 @@ webkit_dom_html_text_area_element_get_dir_name (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -917,9 +914,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -930,8 +926,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -959,8 +955,8 @@ webkit_dom_html_text_area_element_get_disabled (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -974,9 +970,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -987,8 +982,8 @@ (WebKitDOMHTMLTextAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1016,8 +1011,8 @@ webkit_dom_html_text_area_element_get_form (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1031,7 +1026,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMHTMLFormElement.

    [transfer none]

    @@ -1043,8 +1038,8 @@ webkit_dom_html_text_area_element_get_max_length (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1058,9 +1053,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1072,8 +1066,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1106,8 +1100,8 @@ webkit_dom_html_text_area_element_get_name (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1121,9 +1115,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1134,8 +1127,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1163,8 +1156,8 @@ webkit_dom_html_text_area_element_get_placeholder (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1178,9 +1171,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1191,8 +1183,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1220,8 +1212,8 @@ webkit_dom_html_text_area_element_get_read_only (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1235,9 +1227,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1248,8 +1239,8 @@ (WebKitDOMHTMLTextAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1277,8 +1268,8 @@ webkit_dom_html_text_area_element_get_required (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1292,9 +1283,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1305,8 +1295,8 @@ (WebKitDOMHTMLTextAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1334,8 +1324,8 @@ webkit_dom_html_text_area_element_get_rows (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1349,9 +1339,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1362,8 +1351,8 @@ (WebKitDOMHTMLTextAreaElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1391,8 +1380,8 @@ webkit_dom_html_text_area_element_get_wrap (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1406,9 +1395,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1419,8 +1407,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1448,8 +1436,8 @@ webkit_dom_html_text_area_element_get_default_value (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1463,9 +1451,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1476,8 +1463,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1505,8 +1492,8 @@ webkit_dom_html_text_area_element_get_value (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1520,9 +1507,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1533,8 +1519,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1562,8 +1548,8 @@ webkit_dom_html_text_area_element_get_text_length (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1577,9 +1563,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -1589,8 +1574,8 @@ webkit_dom_html_text_area_element_get_will_validate (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1604,9 +1589,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1616,8 +1600,8 @@ webkit_dom_html_text_area_element_get_validity (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1631,7 +1615,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMValidityState.

    [transfer full]

    @@ -1643,8 +1627,8 @@ webkit_dom_html_text_area_element_get_validation_message (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1658,9 +1642,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1670,8 +1653,8 @@ webkit_dom_html_text_area_element_get_labels (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1685,7 +1668,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1697,8 +1680,8 @@ webkit_dom_html_text_area_element_get_selection_start (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1712,9 +1695,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1725,8 +1707,8 @@ (WebKitDOMHTMLTextAreaElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1754,8 +1736,8 @@ webkit_dom_html_text_area_element_get_selection_end (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1769,9 +1751,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1782,8 +1763,8 @@ (WebKitDOMHTMLTextAreaElement *self, glong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1811,8 +1792,8 @@ webkit_dom_html_text_area_element_get_selection_direction (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1826,9 +1807,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1839,8 +1819,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1868,8 +1848,8 @@ webkit_dom_html_text_area_element_get_autocorrect (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1883,9 +1863,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1896,8 +1875,8 @@ (WebKitDOMHTMLTextAreaElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1925,8 +1904,8 @@ webkit_dom_html_text_area_element_get_autocapitalize (WebKitDOMHTMLTextAreaElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1940,9 +1919,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1953,8 +1931,8 @@ (WebKitDOMHTMLTextAreaElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2185,7 +2163,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTitleElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTitleElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLTitleElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLTitleElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLTitleElement - +WebKitDOMHTMLTitleElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -79,7 +79,7 @@

    Types and Values

    -
    +
    @@ -92,7 +92,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -119,8 +119,8 @@
     webkit_dom_html_title_element_get_text
                                    (WebKitDOMHTMLTitleElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -134,9 +134,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -147,8 +146,8 @@ (WebKitDOMHTMLTitleElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -191,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLUListElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLUListElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLUListElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLUListElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLUListElement - +WebKitDOMHTMLUListElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -63,7 +63,7 @@

    Properties

    -
    +
    @@ -86,7 +86,7 @@

    Types and Values

    -
    +
    @@ -99,7 +99,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -126,8 +126,8 @@
     webkit_dom_htmlu_list_element_get_compact
                                    (WebKitDOMHTMLUListElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -141,9 +141,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -154,8 +153,8 @@ (WebKitDOMHTMLUListElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -206,7 +205,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLVideoElement.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLVideoElement.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMHTMLVideoElement.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMHTMLVideoElement.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMHTMLVideoElement - +WebKitDOMHTMLVideoElement: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -191,7 +191,7 @@

    Properties

    -
    +
    @@ -254,7 +254,7 @@

    Types and Values

    -
    +
    @@ -267,7 +267,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMElement
    @@ -296,8 +296,8 @@
                                    (WebKitDOMHTMLVideoElement *self,
                                     GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -325,8 +325,8 @@ webkit_dom_html_video_element_webkit_exit_fullscreen (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -348,8 +348,8 @@ (WebKitDOMHTMLVideoElement *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -377,8 +377,8 @@ webkit_dom_html_video_element_webkit_exit_full_screen (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -399,8 +399,8 @@ webkit_dom_html_video_element_get_width (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -414,9 +414,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -427,8 +426,8 @@ (WebKitDOMHTMLVideoElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -456,8 +455,8 @@ webkit_dom_html_video_element_get_height (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -471,9 +470,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -484,8 +482,8 @@ (WebKitDOMHTMLVideoElement *self, gulong value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -513,8 +511,8 @@ webkit_dom_html_video_element_get_video_width (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -528,9 +526,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -540,8 +537,8 @@ webkit_dom_html_video_element_get_video_height (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -555,9 +552,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -567,8 +563,8 @@ webkit_dom_html_video_element_get_poster (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -582,9 +578,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -595,8 +590,8 @@ (WebKitDOMHTMLVideoElement *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -624,8 +619,8 @@ webkit_dom_html_video_element_get_webkit_supports_fullscreen (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -639,9 +634,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -651,8 +645,8 @@ webkit_dom_html_video_element_get_webkit_displaying_fullscreen (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -666,9 +660,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -678,8 +671,8 @@ webkit_dom_html_video_element_get_webkit_wireless_video_playback_disabled (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -693,9 +686,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -706,8 +698,8 @@ (WebKitDOMHTMLVideoElement *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -735,8 +727,8 @@ webkit_dom_html_video_element_get_webkit_decoded_frame_count (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -750,9 +742,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -762,8 +753,8 @@ webkit_dom_html_video_element_get_webkit_dropped_frame_count (WebKitDOMHTMLVideoElement *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -777,9 +768,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -870,7 +860,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMKeyboardEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMKeyboardEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMKeyboardEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMKeyboardEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMKeyboardEvent - +WebKitDOMKeyboardEvent: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -118,7 +118,7 @@

    Properties

    -
    +
    @@ -166,7 +166,7 @@

    Types and Values

    -
    +
    @@ -179,7 +179,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ╰── WebKitDOMUIEvent
    @@ -200,8 +200,8 @@
                                    (WebKitDOMKeyboardEvent *self,
                                     const gchar *keyIdentifierArg);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -222,9 +222,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -245,8 +244,8 @@ gboolean metaKey, gboolean altGraphKey);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -324,8 +323,8 @@ webkit_dom_keyboard_event_get_key_identifier (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -339,9 +338,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -351,8 +349,8 @@ webkit_dom_keyboard_event_get_key_location (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,9 +364,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -378,8 +375,8 @@ webkit_dom_keyboard_event_get_ctrl_key (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -393,9 +390,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -405,8 +401,8 @@ webkit_dom_keyboard_event_get_shift_key (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -420,9 +416,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -431,8 +426,8 @@
    gboolean
     webkit_dom_keyboard_event_get_alt_key (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -446,9 +441,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -458,8 +452,8 @@ webkit_dom_keyboard_event_get_meta_key (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -473,9 +467,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -485,8 +478,8 @@ webkit_dom_keyboard_event_get_alt_graph_key (WebKitDOMKeyboardEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -500,9 +493,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -574,7 +566,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMLocation.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMLocation.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMLocation.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMLocation.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMLocation - +WebKitDOMLocation: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -126,7 +126,7 @@

    Properties

    -
    +
    @@ -198,7 +198,7 @@

    Types and Values

    -
    +
    @@ -211,7 +211,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMLocation
     
    @@ -228,8 +228,8 @@
    gchar *
     webkit_dom_location_get_href (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -243,9 +243,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -254,8 +253,8 @@
    gchar *
     webkit_dom_location_get_protocol (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -269,9 +268,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -280,8 +278,8 @@
    gchar *
     webkit_dom_location_get_host (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -295,9 +293,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -306,8 +303,8 @@
    gchar *
     webkit_dom_location_get_hostname (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -321,9 +318,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -332,8 +328,8 @@
    gchar *
     webkit_dom_location_get_port (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -347,9 +343,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -358,8 +353,8 @@
    gchar *
     webkit_dom_location_get_pathname (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -373,9 +368,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -384,8 +378,8 @@
    gchar *
     webkit_dom_location_get_search (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -399,9 +393,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -410,8 +403,8 @@
    gchar *
     webkit_dom_location_get_hash (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -425,9 +418,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -436,8 +428,8 @@
    gchar *
     webkit_dom_location_get_origin (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -451,9 +443,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -463,8 +454,8 @@ webkit_dom_location_get_ancestor_origins (WebKitDOMLocation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -478,7 +469,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMStringList.

    [transfer full]

    @@ -576,7 +567,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaController.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaController.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaController.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaController.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMediaController - +WebKitDOMMediaController: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -199,7 +199,7 @@

    Properties

    -
    +
    @@ -270,7 +270,7 @@

    Types and Values

    -
    +
    @@ -283,7 +283,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMMediaController
     
    @@ -306,8 +306,8 @@
    void
     webkit_dom_media_controller_play (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -327,8 +327,8 @@
    void
     webkit_dom_media_controller_pause (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -348,8 +348,8 @@
    void
     webkit_dom_media_controller_unpause (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -370,8 +370,8 @@ webkit_dom_media_controller_get_buffered (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -385,7 +385,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -397,8 +397,8 @@ webkit_dom_media_controller_get_seekable (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -412,7 +412,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -424,8 +424,8 @@ webkit_dom_media_controller_get_duration (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -439,9 +439,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -451,8 +450,8 @@ webkit_dom_media_controller_get_current_time (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -466,9 +465,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -479,8 +477,8 @@ (WebKitDOMMediaController *self, gdouble value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -508,8 +506,8 @@ webkit_dom_media_controller_get_paused (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -523,9 +521,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -535,8 +532,8 @@ webkit_dom_media_controller_get_played (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -550,7 +547,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTimeRanges.

    [transfer full]

    @@ -562,8 +559,8 @@ webkit_dom_media_controller_get_playback_state (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -577,9 +574,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -589,8 +585,8 @@ webkit_dom_media_controller_get_default_playback_rate (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -604,9 +600,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -617,8 +612,8 @@ (WebKitDOMMediaController *self, gdouble value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -646,8 +641,8 @@ webkit_dom_media_controller_get_playback_rate (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -661,9 +656,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -674,8 +668,8 @@ (WebKitDOMMediaController *self, gdouble value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -703,8 +697,8 @@ webkit_dom_media_controller_get_volume (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -718,9 +712,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -732,8 +725,8 @@ gdouble value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -765,8 +758,8 @@
    gboolean
     webkit_dom_media_controller_get_muted (WebKitDOMMediaController *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -780,9 +773,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -792,8 +784,8 @@ webkit_dom_media_controller_set_muted (WebKitDOMMediaController *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -913,7 +905,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaError.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaError.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaError.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaError.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMediaError - +WebKitDOMMediaError: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -67,7 +67,7 @@

    Types and Values

    -
    +
    @@ -80,7 +80,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMMediaError
     
    @@ -97,8 +97,8 @@
    gushort
     webkit_dom_media_error_get_code (WebKitDOMMediaError *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -112,9 +112,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -

    @@ -139,7 +138,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMediaList - +WebKitDOMMediaList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -117,7 +117,7 @@

    Types and Values

    -
    +
    @@ -130,7 +130,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMMediaList
     
    @@ -148,8 +148,8 @@ webkit_dom_media_list_item (WebKitDOMMediaList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -170,9 +170,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -183,8 +182,8 @@ const gchar *oldMedium, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -218,8 +217,8 @@ const gchar *newMedium, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -251,8 +250,8 @@
    gchar *
     webkit_dom_media_list_get_media_text (WebKitDOMMediaList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -266,9 +265,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -279,8 +277,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -312,8 +310,8 @@
    gulong
     webkit_dom_media_list_get_length (WebKitDOMMediaList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -327,9 +325,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -361,7 +358,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaQueryList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaQueryList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMediaQueryList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMediaQueryList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMediaQueryList - +WebKitDOMMediaQueryList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMMediaQueryList
     
    @@ -115,8 +115,8 @@
    gchar *
     webkit_dom_media_query_list_get_media (WebKitDOMMediaQueryList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,9 +130,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -142,8 +141,8 @@ webkit_dom_media_query_list_get_matches (WebKitDOMMediaQueryList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +156,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -192,7 +190,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMessagePort.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMessagePort.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMessagePort.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMessagePort.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMessagePort - +WebKitDOMMessagePort: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Types and Values

    -
    +
    @@ -48,7 +48,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMMessagePort
     
    @@ -66,6 +66,7 @@

    Functions

    +

    Types and Values

    @@ -78,7 +79,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMouseEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMouseEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMMouseEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMMouseEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMMouseEvent - +WebKitDOMMouseEvent: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -198,7 +198,7 @@

    Properties

    -
    +
    @@ -303,7 +303,7 @@

    Types and Values

    -
    +
    @@ -316,7 +316,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ╰── WebKitDOMUIEvent
    @@ -352,8 +352,8 @@
                                     gushort button,
                                     WebKitDOMEventTarget *relatedTarget);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,8 +450,8 @@
    glong
     webkit_dom_mouse_event_get_screen_x (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -465,9 +465,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -476,8 +475,8 @@
    glong
     webkit_dom_mouse_event_get_screen_y (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -491,9 +490,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -502,8 +500,8 @@
    glong
     webkit_dom_mouse_event_get_client_x (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -517,9 +515,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -528,8 +525,8 @@
    glong
     webkit_dom_mouse_event_get_client_y (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -543,9 +540,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -554,8 +550,8 @@
    gboolean
     webkit_dom_mouse_event_get_ctrl_key (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -569,9 +565,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -580,8 +575,8 @@
    gboolean
     webkit_dom_mouse_event_get_shift_key (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -595,9 +590,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -606,8 +600,8 @@
    gboolean
     webkit_dom_mouse_event_get_alt_key (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -621,9 +615,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -632,8 +625,8 @@
    gboolean
     webkit_dom_mouse_event_get_meta_key (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -647,9 +640,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -658,8 +650,8 @@
    gushort
     webkit_dom_mouse_event_get_button (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -673,9 +665,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -685,8 +676,8 @@ webkit_dom_mouse_event_get_related_target (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -700,7 +691,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEventTarget.

    [transfer full]

    @@ -712,8 +703,8 @@ webkit_dom_mouse_event_get_webkit_movement_x (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -727,9 +718,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -739,8 +729,8 @@ webkit_dom_mouse_event_get_webkit_movement_y (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -754,9 +744,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -765,8 +754,8 @@
    glong
     webkit_dom_mouse_event_get_offset_x (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -780,9 +769,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -791,8 +779,8 @@
    glong
     webkit_dom_mouse_event_get_offset_y (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -806,9 +794,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -817,8 +804,8 @@
    glong
     webkit_dom_mouse_event_get_x (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -832,9 +819,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -843,8 +829,8 @@
    glong
     webkit_dom_mouse_event_get_y (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -858,9 +844,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -870,8 +855,8 @@ webkit_dom_mouse_event_get_from_element (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -885,7 +870,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -896,8 +881,8 @@
    WebKitDOMNode *
     webkit_dom_mouse_event_get_to_element (WebKitDOMMouseEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -911,7 +896,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1071,7 +1056,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNamedNodeMap.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNamedNodeMap.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNamedNodeMap.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNamedNodeMap.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNamedNodeMap - +WebKitDOMNamedNodeMap: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -110,7 +110,7 @@

    Properties

    -
    +
    @@ -125,7 +125,7 @@

    Types and Values

    -
    +
    @@ -138,7 +138,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNamedNodeMap
     
    @@ -157,8 +157,8 @@ (WebKitDOMNamedNodeMap *self, const gchar *name);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -179,7 +179,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -193,8 +193,8 @@ WebKitDOMNode *node, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -220,7 +220,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -234,8 +234,8 @@ const gchar *name, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,7 +261,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -273,8 +273,8 @@ webkit_dom_named_node_map_item (WebKitDOMNamedNodeMap *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -295,7 +295,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -309,8 +309,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -336,7 +336,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -350,8 +350,8 @@ WebKitDOMNode *node, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -377,7 +377,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -392,8 +392,8 @@ const gchar *localName, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -424,7 +424,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -435,8 +435,8 @@
    gulong
     webkit_dom_named_node_map_get_length (WebKitDOMNamedNodeMap *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,9 +450,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -476,7 +475,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNavigator.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNavigator.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNavigator.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNavigator.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNavigator - +WebKitDOMNavigator: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -238,7 +238,7 @@

    Properties

    -
    +
    @@ -356,7 +356,7 @@

    Types and Values

    -
    +
    @@ -369,7 +369,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNavigator
     
    @@ -386,8 +386,8 @@
    gboolean
     webkit_dom_navigator_java_enabled (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -401,9 +401,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -413,8 +412,8 @@ webkit_dom_navigator_get_storage_updates (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -435,8 +434,8 @@ webkit_dom_navigator_webkit_get_gamepads (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,7 +449,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMGamepadList.

    [transfer full]

    @@ -466,8 +465,8 @@ const gchar *title, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -513,8 +512,8 @@ const gchar *url, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -545,9 +544,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -560,8 +558,8 @@ const gchar *url, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -599,8 +597,8 @@ webkit_dom_navigator_get_app_code_name (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -614,9 +612,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -625,8 +622,8 @@
    gchar *
     webkit_dom_navigator_get_app_name (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -640,9 +637,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -651,8 +647,8 @@
    gchar *
     webkit_dom_navigator_get_app_version (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -666,9 +662,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -677,8 +672,8 @@
    gchar *
     webkit_dom_navigator_get_language (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -692,9 +687,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -703,8 +697,8 @@
    gchar *
     webkit_dom_navigator_get_user_agent (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -718,9 +712,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -729,8 +722,8 @@
    gchar *
     webkit_dom_navigator_get_platform (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -744,9 +737,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -755,8 +747,8 @@
    WebKitDOMDOMPluginArray *
     webkit_dom_navigator_get_plugins (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -770,7 +762,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMPluginArray.

    [transfer full]

    @@ -781,8 +773,8 @@
    WebKitDOMDOMMimeTypeArray *
     webkit_dom_navigator_get_mime_types (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -796,7 +788,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMMimeTypeArray.

    [transfer full]

    @@ -807,8 +799,8 @@
    gchar *
     webkit_dom_navigator_get_product (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -822,9 +814,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -833,8 +824,8 @@
    gchar *
     webkit_dom_navigator_get_product_sub (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -848,9 +839,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -859,8 +849,8 @@
    gchar *
     webkit_dom_navigator_get_vendor (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -874,9 +864,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -885,8 +874,8 @@
    gchar *
     webkit_dom_navigator_get_vendor_sub (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -900,9 +889,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -912,8 +900,8 @@ webkit_dom_navigator_get_cookie_enabled (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -927,9 +915,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -938,8 +925,8 @@
    gboolean
     webkit_dom_navigator_get_on_line (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -953,9 +940,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -965,8 +951,8 @@ webkit_dom_navigator_get_webkit_battery (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -980,7 +966,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMBatteryManager.

    [transfer full]

    @@ -991,8 +977,8 @@
    WebKitDOMGeolocation *
     webkit_dom_navigator_get_geolocation (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1006,7 +992,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMGeolocation.

    [transfer full]

    @@ -1018,8 +1004,8 @@ webkit_dom_navigator_get_webkit_temporary_storage (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1033,7 +1019,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStorageQuota.

    [transfer none]

    @@ -1045,8 +1031,8 @@ webkit_dom_navigator_get_webkit_persistent_storage (WebKitDOMNavigator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1060,7 +1046,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStorageQuota.

    [transfer none]

    @@ -1217,7 +1203,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeFilter.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeFilter.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeFilter.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeFilter.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNodeFilter - +WebKitDOMNodeFilter: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -51,7 +51,7 @@

    Types and Values

    -
    +
    @@ -64,7 +64,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNodeFilter
     
    @@ -82,8 +82,8 @@ webkit_dom_node_filter_accept_node (WebKitDOMNodeFilter *self, WebKitDOMNode *n);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -104,9 +104,8 @@
    -

    Returns

    +

    Returns

    A gshort

    -

    @@ -121,7 +120,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNode.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNode.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNode.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNode.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNode - +WebKitDOMNode: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -343,7 +343,7 @@

    Properties

    -
    +
    @@ -450,7 +450,7 @@

    Types and Values

    -
    +
    @@ -463,7 +463,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ├── WebKitDOMAttr
    @@ -496,8 +496,8 @@
                                    WebKitDOMNode *refChild,
                                    GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -528,7 +528,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -542,8 +542,8 @@ WebKitDOMNode *oldChild, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -574,7 +574,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -587,8 +587,8 @@ WebKitDOMNode *oldChild, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -614,7 +614,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -627,8 +627,8 @@ WebKitDOMNode *newChild, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -654,7 +654,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -665,8 +665,8 @@
    gboolean
     webkit_dom_node_has_child_nodes (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -680,9 +680,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -692,8 +691,8 @@ webkit_dom_node_clone_node (WebKitDOMNode *self, gboolean deep);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -714,7 +713,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -725,8 +724,8 @@
    void
     webkit_dom_node_normalize (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -748,8 +747,8 @@ const gchar *feature, const gchar *version);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -775,9 +774,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -787,8 +785,8 @@ webkit_dom_node_is_same_node (WebKitDOMNode *self, WebKitDOMNode *other);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -809,9 +807,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -821,8 +818,8 @@ webkit_dom_node_is_equal_node (WebKitDOMNode *self, WebKitDOMNode *other);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -843,9 +840,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -855,8 +851,8 @@ webkit_dom_node_lookup_prefix (WebKitDOMNode *self, const gchar *namespaceURI);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -877,9 +873,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -889,8 +884,8 @@ webkit_dom_node_is_default_namespace (WebKitDOMNode *self, const gchar *namespaceURI);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -911,9 +906,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -923,8 +917,8 @@ webkit_dom_node_lookup_namespace_uri (WebKitDOMNode *self, const gchar *prefix);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -945,9 +939,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -958,8 +951,8 @@ (WebKitDOMNode *self, WebKitDOMNode *other);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -980,9 +973,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -992,8 +984,8 @@ webkit_dom_node_contains (WebKitDOMNode *self, WebKitDOMNode *other);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1014,9 +1006,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1031,8 +1022,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1058,9 +1049,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1070,8 +1060,8 @@ webkit_dom_node_get_node_name (WebKitDOMNode *self);

    webkit_dom_node_get_node_name is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1085,9 +1075,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1096,8 +1085,8 @@
    gchar *
     webkit_dom_node_get_node_value (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1111,9 +1100,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1124,8 +1112,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1157,8 +1145,8 @@
    gushort
     webkit_dom_node_get_node_type (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1172,9 +1160,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -1183,8 +1170,8 @@
    WebKitDOMNode *
     webkit_dom_node_get_parent_node (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1198,7 +1185,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1209,8 +1196,8 @@
    WebKitDOMNodeList *
     webkit_dom_node_get_child_nodes (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1224,7 +1211,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -1235,8 +1222,8 @@
    WebKitDOMNode *
     webkit_dom_node_get_first_child (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1250,7 +1237,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1261,8 +1248,8 @@
    WebKitDOMNode *
     webkit_dom_node_get_last_child (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1276,7 +1263,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1287,8 +1274,8 @@
    WebKitDOMNode *
     webkit_dom_node_get_previous_sibling (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1302,7 +1289,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1313,8 +1300,8 @@
    WebKitDOMNode *
     webkit_dom_node_get_next_sibling (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1328,7 +1315,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1339,8 +1326,8 @@
    WebKitDOMDocument *
     webkit_dom_node_get_owner_document (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1354,7 +1341,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocument.

    [transfer none]

    @@ -1365,8 +1352,8 @@
    gchar *
     webkit_dom_node_get_namespace_uri (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1380,9 +1367,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1391,8 +1377,8 @@
    gchar *
     webkit_dom_node_get_prefix (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1406,9 +1392,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1419,8 +1404,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1452,8 +1437,8 @@
    gchar *
     webkit_dom_node_get_local_name (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1467,9 +1452,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1478,8 +1462,8 @@
    gchar *
     webkit_dom_node_get_base_uri (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1493,9 +1477,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1504,8 +1487,8 @@
    gchar *
     webkit_dom_node_get_text_content (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1519,9 +1502,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1532,8 +1514,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1565,8 +1547,8 @@
    WebKitDOMElement *
     webkit_dom_node_get_parent_element (WebKitDOMNode *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1580,7 +1562,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -1593,10 +1575,6 @@

    webkit_dom_node_get_attributes is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -1606,10 +1584,6 @@

    webkit_dom_node_has_attributes is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -1745,7 +1719,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeIterator.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeIterator.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeIterator.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeIterator.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNodeIterator - +WebKitDOMNodeIterator: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -118,7 +118,7 @@

    Properties

    -
    +
    @@ -163,7 +163,7 @@

    Types and Values

    -
    +
    @@ -176,7 +176,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNodeIterator
     
    @@ -194,8 +194,8 @@ webkit_dom_node_iterator_next_node (WebKitDOMNodeIterator *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -216,7 +216,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -229,8 +229,8 @@ (WebKitDOMNodeIterator *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -251,7 +251,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -262,8 +262,8 @@
    void
     webkit_dom_node_iterator_detach (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -283,8 +283,8 @@
    WebKitDOMNode *
     webkit_dom_node_iterator_get_root (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -298,7 +298,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -310,8 +310,8 @@ webkit_dom_node_iterator_get_what_to_show (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -325,9 +325,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -336,8 +335,8 @@
    WebKitDOMNodeFilter *
     webkit_dom_node_iterator_get_filter (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -351,7 +350,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeFilter.

    [transfer full]

    @@ -363,8 +362,8 @@ webkit_dom_node_iterator_get_expand_entity_references (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -378,9 +377,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -390,8 +388,8 @@ webkit_dom_node_iterator_get_reference_node (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -405,7 +403,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -417,8 +415,8 @@ webkit_dom_node_iterator_get_pointer_before_reference_node (WebKitDOMNodeIterator *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -432,9 +430,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -495,7 +492,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMNodeList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMNodeList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMNodeList - +WebKitDOMNodeList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNodeList
     
    @@ -108,8 +108,8 @@ webkit_dom_node_list_item (WebKitDOMNodeList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -141,8 +141,8 @@
    gulong
     webkit_dom_node_list_get_length (WebKitDOMNodeList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -156,9 +156,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -182,7 +181,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMObject.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMObject.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMObject.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMObject.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMObject - +WebKitDOMObject: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Properties

    -
    +
    @@ -50,7 +50,7 @@

    Types and Values

    -
    +
    @@ -63,7 +63,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ├── WebKitDOMNode
             ├── WebKitDOMAudioTrack
    @@ -147,6 +147,7 @@
     

    Functions

    +

    Types and Values

    @@ -168,7 +169,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntry.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntry.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntry.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntry.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPerformanceEntry - +WebKitDOMPerformanceEntry: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -112,7 +112,7 @@

    Types and Values

    -
    +
    @@ -125,7 +125,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMPerformanceEntry
     
    @@ -142,8 +142,8 @@
    gchar *
     webkit_dom_performance_entry_get_name (WebKitDOMPerformanceEntry *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -169,8 +168,8 @@ webkit_dom_performance_entry_get_entry_type (WebKitDOMPerformanceEntry *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -184,9 +183,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -196,8 +194,8 @@ webkit_dom_performance_entry_get_start_time (WebKitDOMPerformanceEntry *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -211,9 +209,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -223,8 +220,8 @@ webkit_dom_performance_entry_get_duration (WebKitDOMPerformanceEntry *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -238,9 +235,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -

    @@ -289,7 +285,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntryList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntryList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntryList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceEntryList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPerformanceEntryList - +WebKitDOMPerformanceEntryList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMPerformanceEntryList
     
    @@ -109,8 +109,8 @@ (WebKitDOMPerformanceEntryList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -131,7 +131,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMPerformanceEntry.

    [transfer full]

    @@ -143,8 +143,8 @@ webkit_dom_performance_entry_list_get_length (WebKitDOMPerformanceEntryList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -158,9 +158,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -184,7 +183,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformance.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformance.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformance.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformance.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPerformance - +WebKitDOMPerformance: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMPerformance
     
    @@ -139,8 +139,8 @@
    gdouble
     webkit_dom_performance_now (WebKitDOMPerformance *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -154,9 +154,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -165,8 +164,8 @@
    WebKitDOMPerformanceNavigation *
     webkit_dom_performance_get_navigation (WebKitDOMPerformance *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -180,7 +179,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMPerformanceNavigation.

    [transfer full]

    @@ -191,8 +190,8 @@
    WebKitDOMPerformanceTiming *
     webkit_dom_performance_get_timing (WebKitDOMPerformance *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -206,7 +205,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMPerformanceTiming.

    [transfer full]

    @@ -219,10 +218,6 @@

    webkit_dom_performance_get_memory is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -252,7 +247,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceNavigation.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceNavigation.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceNavigation.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceNavigation.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPerformanceNavigation - +WebKitDOMPerformanceNavigation: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -74,7 +74,7 @@

    Types and Values

    -
    +
    @@ -87,7 +87,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMPerformanceNavigation
     
    @@ -105,8 +105,8 @@ webkit_dom_performance_navigation_get_redirect_count (WebKitDOMPerformanceNavigation *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -120,9 +120,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -

    @@ -155,7 +154,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceTiming.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceTiming.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMPerformanceTiming.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMPerformanceTiming.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMPerformanceTiming - +WebKitDOMPerformanceTiming: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -214,7 +214,7 @@

    Properties

    -
    +
    @@ -331,7 +331,7 @@

    Types and Values

    -
    +
    @@ -344,7 +344,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMPerformanceTiming
     
    @@ -362,8 +362,8 @@ webkit_dom_performance_timing_get_navigation_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -377,9 +377,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -389,8 +388,8 @@ webkit_dom_performance_timing_get_unload_event_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -404,9 +403,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -416,8 +414,8 @@ webkit_dom_performance_timing_get_unload_event_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -431,9 +429,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -443,8 +440,8 @@ webkit_dom_performance_timing_get_redirect_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -458,9 +455,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -470,8 +466,8 @@ webkit_dom_performance_timing_get_redirect_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -485,9 +481,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -497,8 +492,8 @@ webkit_dom_performance_timing_get_fetch_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -512,9 +507,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -524,8 +518,8 @@ webkit_dom_performance_timing_get_domain_lookup_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -539,9 +533,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -551,8 +544,8 @@ webkit_dom_performance_timing_get_domain_lookup_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -566,9 +559,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -578,8 +570,8 @@ webkit_dom_performance_timing_get_connect_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -593,9 +585,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -605,8 +596,8 @@ webkit_dom_performance_timing_get_connect_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -620,9 +611,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -632,8 +622,8 @@ webkit_dom_performance_timing_get_secure_connection_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -647,9 +637,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -659,8 +648,8 @@ webkit_dom_performance_timing_get_request_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -674,9 +663,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -686,8 +674,8 @@ webkit_dom_performance_timing_get_response_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -701,9 +689,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -713,8 +700,8 @@ webkit_dom_performance_timing_get_response_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -728,9 +715,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -740,8 +726,8 @@ webkit_dom_performance_timing_get_dom_loading (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -755,9 +741,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -767,8 +752,8 @@ webkit_dom_performance_timing_get_dom_interactive (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -782,9 +767,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -794,8 +778,8 @@ webkit_dom_performance_timing_get_dom_content_loaded_event_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -809,9 +793,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -821,8 +804,8 @@ webkit_dom_performance_timing_get_dom_content_loaded_event_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -836,9 +819,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -848,8 +830,8 @@ webkit_dom_performance_timing_get_dom_complete (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -863,9 +845,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -875,8 +856,8 @@ webkit_dom_performance_timing_get_load_event_start (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -890,9 +871,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -


    @@ -902,8 +882,8 @@ webkit_dom_performance_timing_get_load_event_end (WebKitDOMPerformanceTiming *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -917,9 +897,8 @@
    -

    Returns

    +

    Returns

    A guint64

    -

    @@ -1104,7 +1083,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMProcessingInstruction.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMProcessingInstruction.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMProcessingInstruction.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMProcessingInstruction.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMProcessingInstruction - +WebKitDOMProcessingInstruction: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -103,7 +103,7 @@

    Types and Values

    -
    +
    @@ -116,7 +116,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMCharacterData
    @@ -142,8 +142,8 @@
     webkit_dom_processing_instruction_get_target
                                    (WebKitDOMProcessingInstruction *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -169,8 +168,8 @@ webkit_dom_processing_instruction_get_sheet (WebKitDOMProcessingInstruction *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -184,7 +183,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheet.

    [transfer full]

    @@ -198,10 +197,6 @@

    webkit_dom_processing_instruction_get_data is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -244,7 +239,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMRange.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMRange.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMRange.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMRange.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMRange - +WebKitDOMRange: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -294,7 +294,7 @@

    Properties

    -
    +
    @@ -345,7 +345,7 @@

    Types and Values

    -
    +
    @@ -358,7 +358,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMRange
     
    @@ -378,8 +378,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -419,8 +419,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -459,8 +459,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -494,8 +494,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -529,8 +529,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -564,8 +564,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -599,8 +599,8 @@ gboolean toStart, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -634,8 +634,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -669,8 +669,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -706,8 +706,8 @@ WebKitDOMRange *sourceRange, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -738,9 +738,8 @@
    -

    Returns

    +

    Returns

    A gshort

    -


    @@ -750,8 +749,8 @@ webkit_dom_range_delete_contents (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -779,8 +778,8 @@ webkit_dom_range_extract_contents (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -801,7 +800,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentFragment.

    [transfer none]

    @@ -813,8 +812,8 @@ webkit_dom_range_clone_contents (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -835,7 +834,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentFragment.

    [transfer none]

    @@ -848,8 +847,8 @@ WebKitDOMNode *newNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -883,8 +882,8 @@ WebKitDOMNode *newParent, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -917,8 +916,8 @@ webkit_dom_range_clone_range (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -939,7 +938,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMRange.

    [transfer full]

    @@ -951,8 +950,8 @@ webkit_dom_range_to_string (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -973,9 +972,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -985,8 +983,8 @@ webkit_dom_range_detach (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1016,8 +1014,8 @@ const gchar *html, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1043,7 +1041,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentFragment.

    [transfer none]

    @@ -1056,8 +1054,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1083,9 +1081,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1096,8 +1093,8 @@ WebKitDOMNode *refNode, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1123,9 +1120,8 @@
    -

    Returns

    +

    Returns

    A gshort

    -


    @@ -1137,8 +1133,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1169,9 +1165,8 @@
    -

    Returns

    +

    Returns

    A gshort

    -


    @@ -1183,8 +1178,8 @@ glong offset, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1215,9 +1210,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1228,8 +1222,8 @@ const gchar *unit, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1262,8 +1256,8 @@ webkit_dom_range_get_start_container (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1284,7 +1278,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1296,8 +1290,8 @@ webkit_dom_range_get_start_offset (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1318,9 +1312,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1330,8 +1323,8 @@ webkit_dom_range_get_end_container (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1352,7 +1345,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1364,8 +1357,8 @@ webkit_dom_range_get_end_offset (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1386,9 +1379,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -1398,8 +1390,8 @@ webkit_dom_range_get_collapsed (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1420,9 +1412,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -1433,8 +1424,8 @@ (WebKitDOMRange *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1455,7 +1446,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -1466,8 +1457,8 @@
    gchar *
     webkit_dom_range_get_text (WebKitDOMRange *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1481,9 +1472,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -1553,7 +1543,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMScreen.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMScreen.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMScreen.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMScreen.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMScreen - +WebKitDOMScreen: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -110,7 +110,7 @@

    Properties

    -
    +
    @@ -162,7 +162,7 @@

    Types and Values

    -
    +
    @@ -175,7 +175,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMScreen
     
    @@ -192,8 +192,8 @@
    gulong
     webkit_dom_screen_get_height (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -207,9 +207,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -218,8 +217,8 @@
    gulong
     webkit_dom_screen_get_width (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,9 +232,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -244,8 +242,8 @@
    gulong
     webkit_dom_screen_get_color_depth (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -259,9 +257,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -270,8 +267,8 @@
    gulong
     webkit_dom_screen_get_pixel_depth (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,9 +282,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -296,8 +292,8 @@
    glong
     webkit_dom_screen_get_avail_left (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -311,9 +307,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -322,8 +317,8 @@
    glong
     webkit_dom_screen_get_avail_top (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -337,9 +332,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -348,8 +342,8 @@
    gulong
     webkit_dom_screen_get_avail_height (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -363,9 +357,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -374,8 +367,8 @@
    gulong
     webkit_dom_screen_get_avail_width (WebKitDOMScreen *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -389,9 +382,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -466,7 +458,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMShadowRoot.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMShadowRoot.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMShadowRoot.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMShadowRoot.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMShadowRoot - +WebKitDOMShadowRoot: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -151,7 +151,7 @@

    Properties

    -
    +
    @@ -185,7 +185,7 @@

    Types and Values

    -
    +
    @@ -198,7 +198,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMDocumentFragment
    @@ -223,8 +223,8 @@
     
    WebKitDOMDOMSelection *
     webkit_dom_shadow_root_get_selection (WebKitDOMShadowRoot *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -238,7 +238,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMSelection.

    [transfer full]

    @@ -251,8 +251,8 @@ (WebKitDOMShadowRoot *self, const gchar *elementId);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -273,7 +273,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -286,8 +286,8 @@ (WebKitDOMShadowRoot *self, const gchar *className);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -308,7 +308,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -321,8 +321,8 @@ (WebKitDOMShadowRoot *self, const gchar *tagName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -343,7 +343,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -357,8 +357,8 @@ const gchar *namespaceURI, const gchar *localName);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -384,7 +384,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -398,8 +398,8 @@ glong x, glong y);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -425,7 +425,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -437,8 +437,8 @@ webkit_dom_shadow_root_get_active_element (WebKitDOMShadowRoot *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -452,7 +452,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMElement.

    [transfer none]

    @@ -464,8 +464,8 @@ webkit_dom_shadow_root_get_apply_author_styles (WebKitDOMShadowRoot *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -479,9 +479,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -492,8 +491,8 @@ (WebKitDOMShadowRoot *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -521,8 +520,8 @@ webkit_dom_shadow_root_get_reset_style_inheritance (WebKitDOMShadowRoot *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -536,9 +535,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -549,8 +547,8 @@ (WebKitDOMShadowRoot *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -577,8 +575,8 @@
    gchar *
     webkit_dom_shadow_root_get_inner_html (WebKitDOMShadowRoot *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -592,9 +590,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -605,8 +602,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -677,7 +674,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorage.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorage.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorage.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorage.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStorage - +WebKitDOMStorage: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -109,7 +109,7 @@

    Types and Values

    -
    +
    @@ -122,7 +122,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStorage
     
    @@ -141,8 +141,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -168,9 +168,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -181,8 +180,8 @@ const gchar *key, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -208,9 +207,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -222,8 +220,8 @@ const gchar *data, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -262,8 +260,8 @@ const gchar *key, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -296,8 +294,8 @@ webkit_dom_storage_clear (WebKitDOMStorage *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -325,8 +323,8 @@ webkit_dom_storage_get_length (WebKitDOMStorage *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -347,9 +345,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -373,7 +370,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorageInfo.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorageInfo.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorageInfo.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorageInfo.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStorageInfo - +WebKitDOMStorageInfo: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Types and Values

    -
    +
    @@ -47,7 +47,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStorageInfo
     
    @@ -59,6 +59,7 @@

    Functions

    +

    Types and Values

    @@ -71,7 +72,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorageQuota.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorageQuota.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStorageQuota.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStorageQuota.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStorageQuota - +WebKitDOMStorageQuota: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Types and Values

    -
    +
    @@ -47,7 +47,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStorageQuota
     
    @@ -59,6 +59,7 @@

    Functions

    +

    Types and Values

    @@ -71,7 +72,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleMedia.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleMedia.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleMedia.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleMedia.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStyleMedia - +WebKitDOMStyleMedia: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -68,7 +68,7 @@

    Types and Values

    -
    +
    @@ -81,7 +81,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStyleMedia
     
    @@ -99,8 +99,8 @@ webkit_dom_style_media_match_medium (WebKitDOMStyleMedia *self, const gchar *mediaquery);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -121,9 +121,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -148,7 +147,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleSheet.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleSheet.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleSheet.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleSheet.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStyleSheet - +WebKitDOMStyleSheet: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -102,7 +102,7 @@

    Properties

    -
    +
    @@ -155,7 +155,7 @@

    Types and Values

    -
    +
    @@ -168,7 +168,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStyleSheet
                 ╰── WebKitDOMCSSStyleSheet
    @@ -186,8 +186,8 @@
     
    gboolean
     webkit_dom_style_sheet_get_disabled (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -201,9 +201,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -213,8 +212,8 @@ webkit_dom_style_sheet_set_disabled (WebKitDOMStyleSheet *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -241,8 +240,8 @@
    WebKitDOMNode *
     webkit_dom_style_sheet_get_owner_node (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -256,7 +255,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -268,8 +267,8 @@ webkit_dom_style_sheet_get_parent_style_sheet (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -283,7 +282,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheet.

    [transfer full]

    @@ -294,8 +293,8 @@
    gchar *
     webkit_dom_style_sheet_get_href (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -309,9 +308,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -320,8 +318,8 @@
    gchar *
     webkit_dom_style_sheet_get_title (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -335,9 +333,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -346,8 +343,8 @@
    WebKitDOMMediaList *
     webkit_dom_style_sheet_get_media (WebKitDOMStyleSheet *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -361,7 +358,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMMediaList.

    [transfer full]

    @@ -433,7 +430,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleSheetList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleSheetList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMStyleSheetList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMStyleSheetList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMStyleSheetList - +WebKitDOMStyleSheetList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMStyleSheetList
     
    @@ -108,8 +108,8 @@ webkit_dom_style_sheet_list_item (WebKitDOMStyleSheetList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMStyleSheet.

    [transfer full]

    @@ -142,8 +142,8 @@ webkit_dom_style_sheet_list_get_length (WebKitDOMStyleSheetList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -157,9 +157,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -183,7 +182,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMText.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMText.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMText.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMText.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMText - +WebKitDOMText: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -71,7 +71,7 @@

    Properties

    -
    +
    @@ -87,7 +87,7 @@

    Types and Values

    -
    +
    @@ -100,7 +100,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMNode
                 ╰── WebKitDOMCharacterData
    @@ -128,8 +128,8 @@
                                 gulong offset,
                                 GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -155,7 +155,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMText.

    [transfer none]

    @@ -168,8 +168,8 @@ const gchar *content, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -195,7 +195,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMText.

    [transfer none]

    @@ -206,8 +206,8 @@
    gchar *
     webkit_dom_text_get_whole_text (WebKitDOMText *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -221,9 +221,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -248,7 +247,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCue.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCue.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCue.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCue.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTextTrackCue - +WebKitDOMTextTrackCue: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -247,7 +247,7 @@

    Properties

    -
    +
    @@ -324,7 +324,7 @@

    Types and Values

    -
    +
    @@ -337,7 +337,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTextTrackCue
     
    @@ -361,8 +361,8 @@ webkit_dom_text_track_cue_get_cue_as_html (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -376,7 +376,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDocumentFragment.

    [transfer none]

    @@ -394,8 +394,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -421,9 +421,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -433,8 +432,8 @@ webkit_dom_text_track_cue_get_track (WebKitDOMTextTrackCue *self);

    webkit_dom_text_track_cue_get_track is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -448,7 +447,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrack.

    [transfer full]

    @@ -459,8 +458,8 @@
    gchar *
     webkit_dom_text_track_cue_get_id (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -474,9 +473,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -486,8 +484,8 @@ webkit_dom_text_track_cue_set_id (WebKitDOMTextTrackCue *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -515,8 +513,8 @@ webkit_dom_text_track_cue_get_start_time (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -530,9 +528,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -544,8 +541,8 @@ gdouble value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -578,8 +575,8 @@ webkit_dom_text_track_cue_get_end_time (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -593,9 +590,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -607,8 +603,8 @@ gdouble value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -641,8 +637,8 @@ webkit_dom_text_track_cue_get_pause_on_exit (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -656,9 +652,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -669,8 +664,8 @@ (WebKitDOMTextTrackCue *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -698,8 +693,8 @@ webkit_dom_text_track_cue_get_vertical (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -713,9 +708,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -727,8 +721,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -761,8 +755,8 @@ webkit_dom_text_track_cue_get_snap_to_lines (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -776,9 +770,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -789,8 +782,8 @@ (WebKitDOMTextTrackCue *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -817,8 +810,8 @@
    glong
     webkit_dom_text_track_cue_get_line (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -832,9 +825,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -845,8 +837,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -879,8 +871,8 @@ webkit_dom_text_track_cue_get_position (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -894,9 +886,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -908,8 +899,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -941,8 +932,8 @@
    glong
     webkit_dom_text_track_cue_get_size (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -956,9 +947,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -969,8 +959,8 @@ glong value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1002,8 +992,8 @@
    gchar *
     webkit_dom_text_track_cue_get_align (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1017,9 +1007,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1030,8 +1019,8 @@ const gchar *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1063,8 +1052,8 @@
    gchar *
     webkit_dom_text_track_cue_get_text (WebKitDOMTextTrackCue *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1078,9 +1067,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -1090,8 +1078,8 @@ webkit_dom_text_track_cue_set_text (WebKitDOMTextTrackCue *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1221,7 +1209,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCueList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCueList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCueList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackCueList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTextTrackCueList - +WebKitDOMTextTrackCueList: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTextTrackCueList
     
    @@ -116,8 +116,8 @@ webkit_dom_text_track_cue_list_item (WebKitDOMTextTrackCueList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -138,7 +138,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrackCue.

    [transfer none]

    @@ -151,8 +151,8 @@ (WebKitDOMTextTrackCueList *self, const gchar *id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -173,7 +173,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrackCue.

    [transfer none]

    @@ -185,8 +185,8 @@ webkit_dom_text_track_cue_list_get_length (WebKitDOMTextTrackCueList *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,9 +200,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -226,7 +225,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrack.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrack.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrack.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrack.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTextTrack - +WebKitDOMTextTrack: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -135,7 +135,7 @@

    Properties

    -
    +
    @@ -189,7 +189,7 @@

    Types and Values

    -
    +
    @@ -202,7 +202,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTextTrack
     
    @@ -226,8 +226,8 @@ webkit_dom_text_track_add_cue (WebKitDOMTextTrack *self, WebKitDOMTextTrackCue *cue);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -256,8 +256,8 @@ WebKitDOMTextTrackCue *cue, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -295,8 +295,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -322,9 +322,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -334,8 +333,8 @@ webkit_dom_text_track_get_id (WebKitDOMTextTrack *self);

    webkit_dom_text_track_get_id is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -349,9 +348,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -360,8 +358,8 @@
    gchar *
     webkit_dom_text_track_get_kind (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -375,9 +373,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -386,8 +383,8 @@
    gchar *
     webkit_dom_text_track_get_label (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -401,9 +398,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -412,8 +408,8 @@
    gchar *
     webkit_dom_text_track_get_language (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -427,9 +423,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -438,8 +433,8 @@
    gchar *
     webkit_dom_text_track_get_mode (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -453,9 +448,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -465,8 +459,8 @@ webkit_dom_text_track_set_mode (WebKitDOMTextTrack *self, const gchar *value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -493,8 +487,8 @@
    WebKitDOMTextTrackCueList *
     webkit_dom_text_track_get_cues (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -508,7 +502,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrackCueList.

    [transfer full]

    @@ -519,8 +513,8 @@
    WebKitDOMTextTrackCueList *
     webkit_dom_text_track_get_active_cues (WebKitDOMTextTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -534,7 +528,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrackCueList.

    [transfer full]

    @@ -607,7 +601,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTextTrackList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTextTrackList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTextTrackList - +WebKitDOMTextTrackList: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -94,7 +94,7 @@

    Types and Values

    -
    +
    @@ -107,7 +107,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTextTrackList
     
    @@ -131,8 +131,8 @@ webkit_dom_text_track_list_item (WebKitDOMTextTrackList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -153,7 +153,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrack.

    [transfer full]

    @@ -166,8 +166,8 @@ (WebKitDOMTextTrackList *self, const gchar *id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -188,7 +188,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMTextTrack.

    [transfer full]

    @@ -206,8 +206,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,9 +233,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -245,8 +244,8 @@ webkit_dom_text_track_list_get_length (WebKitDOMTextTrackList *self);

    webkit_dom_text_track_list_get_length is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -260,9 +259,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -286,7 +284,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTimeRanges.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTimeRanges.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTimeRanges.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTimeRanges.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTimeRanges - +WebKitDOMTimeRanges: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -70,7 +70,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@

    Types and Values

    -
    +
    @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTimeRanges
     
    @@ -117,8 +117,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -144,9 +144,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -157,8 +156,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -184,9 +183,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -195,8 +193,8 @@
    gulong
     webkit_dom_time_ranges_get_length (WebKitDOMTimeRanges *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -210,9 +208,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -236,7 +233,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTouch.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTouch.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTouch.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTouch.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTouch - +WebKitDOMTouch: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -142,7 +142,7 @@

    Properties

    -
    +
    @@ -215,7 +215,7 @@

    Types and Values

    -
    +
    @@ -228,7 +228,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTouch
     
    @@ -245,8 +245,8 @@
    glong
     webkit_dom_touch_get_client_x (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -260,9 +260,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -271,8 +270,8 @@
    glong
     webkit_dom_touch_get_client_y (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -286,9 +285,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -297,8 +295,8 @@
    glong
     webkit_dom_touch_get_screen_x (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -312,9 +310,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -323,8 +320,8 @@
    glong
     webkit_dom_touch_get_screen_y (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -338,9 +335,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -349,8 +345,8 @@
    glong
     webkit_dom_touch_get_page_x (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -364,9 +360,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -375,8 +370,8 @@
    glong
     webkit_dom_touch_get_page_y (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -390,9 +385,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -401,8 +395,8 @@
    WebKitDOMEventTarget *
     webkit_dom_touch_get_target (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -416,7 +410,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMEventTarget.

    [transfer full]

    @@ -427,8 +421,8 @@
    gulong
     webkit_dom_touch_get_identifier (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -442,9 +436,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -453,8 +446,8 @@
    glong
     webkit_dom_touch_get_webkit_radius_x (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -468,9 +461,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -479,8 +471,8 @@
    glong
     webkit_dom_touch_get_webkit_radius_y (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -494,9 +486,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -506,8 +497,8 @@ webkit_dom_touch_get_webkit_rotation_angle (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -521,9 +512,8 @@
    -

    Returns

    +

    Returns

    A gfloat

    -


    @@ -532,8 +522,8 @@
    gfloat
     webkit_dom_touch_get_webkit_force (WebKitDOMTouch *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -547,9 +537,8 @@
    -

    Returns

    +

    Returns

    A gfloat

    -

    @@ -660,7 +649,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTrackEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTrackEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTrackEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTrackEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTrackEvent - +WebKitDOMTrackEvent: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Types and Values

    -
    +
    @@ -47,7 +47,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ╰── WebKitDOMTrackEvent
    @@ -60,6 +60,7 @@
     

    Functions

    +

    Types and Values

    @@ -72,7 +73,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTreeWalker.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTreeWalker.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMTreeWalker.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMTreeWalker.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMTreeWalker - +WebKitDOMTreeWalker: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -150,7 +150,7 @@

    Properties

    -
    +
    @@ -190,7 +190,7 @@

    Types and Values

    -
    +
    @@ -203,7 +203,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMTreeWalker
     
    @@ -220,8 +220,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_parent_node (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -235,7 +235,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -246,8 +246,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_first_child (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,7 +261,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -272,8 +272,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_last_child (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -287,7 +287,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -299,8 +299,8 @@ webkit_dom_tree_walker_previous_sibling (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -314,7 +314,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -325,8 +325,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_next_sibling (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -340,7 +340,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -351,8 +351,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_previous_node (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -366,7 +366,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -377,8 +377,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_next_node (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -392,7 +392,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -403,8 +403,8 @@
    WebKitDOMNode *
     webkit_dom_tree_walker_get_root (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -418,7 +418,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -430,8 +430,8 @@ webkit_dom_tree_walker_get_what_to_show (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -445,9 +445,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -456,8 +455,8 @@
    WebKitDOMNodeFilter *
     webkit_dom_tree_walker_get_filter (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -471,7 +470,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeFilter.

    [transfer full]

    @@ -483,8 +482,8 @@ webkit_dom_tree_walker_get_expand_entity_references (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -498,9 +497,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -510,8 +508,8 @@ webkit_dom_tree_walker_get_current_node (WebKitDOMTreeWalker *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -525,7 +523,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -539,8 +537,8 @@ WebKitDOMNode *value, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -616,7 +614,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMUIEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMUIEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMUIEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMUIEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMUIEvent - +WebKitDOMUIEvent: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -126,7 +126,7 @@

    Properties

    -
    +
    @@ -184,7 +184,7 @@

    Types and Values

    -
    +
    @@ -197,7 +197,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ╰── WebKitDOMUIEvent
    @@ -222,8 +222,8 @@
                                        WebKitDOMDOMWindow *view,
                                        glong detail);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -270,8 +270,8 @@
    WebKitDOMDOMWindow *
     webkit_dom_ui_event_get_view (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -285,7 +285,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMDOMWindow.

    [transfer full]

    @@ -296,8 +296,8 @@
    glong
     webkit_dom_ui_event_get_detail (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -311,9 +311,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -322,8 +321,8 @@
    glong
     webkit_dom_ui_event_get_key_code (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -337,9 +336,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -348,8 +346,8 @@
    glong
     webkit_dom_ui_event_get_char_code (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -363,9 +361,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -374,8 +371,8 @@
    glong
     webkit_dom_ui_event_get_layer_x (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -389,9 +386,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -400,8 +396,8 @@
    glong
     webkit_dom_ui_event_get_layer_y (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -415,9 +411,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -426,8 +421,8 @@
    glong
     webkit_dom_ui_event_get_page_x (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -441,9 +436,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -452,8 +446,8 @@
    glong
     webkit_dom_ui_event_get_page_y (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -467,9 +461,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -478,8 +471,8 @@
    glong
     webkit_dom_ui_event_get_which (WebKitDOMUIEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -493,9 +486,8 @@
    -

    Returns

    +

    Returns

    A glong

    -

    @@ -583,7 +575,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMValidityState.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMValidityState.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMValidityState.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMValidityState.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMValidityState - +WebKitDOMValidityState: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -126,7 +126,7 @@

    Properties

    -
    +
    @@ -188,7 +188,7 @@

    Types and Values

    -
    +
    @@ -201,7 +201,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMValidityState
     
    @@ -219,8 +219,8 @@ webkit_dom_validity_state_get_value_missing (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -234,9 +234,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -246,8 +245,8 @@ webkit_dom_validity_state_get_type_mismatch (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,9 +260,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -273,8 +271,8 @@ webkit_dom_validity_state_get_pattern_mismatch (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -288,9 +286,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -300,8 +297,8 @@ webkit_dom_validity_state_get_too_long (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -315,9 +312,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -327,8 +323,8 @@ webkit_dom_validity_state_get_range_underflow (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -342,9 +338,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -354,8 +349,8 @@ webkit_dom_validity_state_get_range_overflow (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -369,9 +364,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -381,8 +375,8 @@ webkit_dom_validity_state_get_step_mismatch (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -396,9 +390,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -408,8 +401,8 @@ webkit_dom_validity_state_get_bad_input (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -423,9 +416,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -435,8 +427,8 @@ webkit_dom_validity_state_get_custom_error (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -450,9 +442,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -461,8 +452,8 @@
    gboolean
     webkit_dom_validity_state_get_valid (WebKitDOMValidityState *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -476,9 +467,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -575,7 +565,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoPlaybackQuality.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoPlaybackQuality.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoPlaybackQuality.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoPlaybackQuality.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMVideoPlaybackQuality - +WebKitDOMVideoPlaybackQuality: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -86,7 +86,7 @@

    Properties

    -
    +
    @@ -123,7 +123,7 @@

    Types and Values

    -
    +
    @@ -136,7 +136,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMVideoPlaybackQuality
     
    @@ -154,8 +154,8 @@ webkit_dom_video_playback_quality_get_creation_time (WebKitDOMVideoPlaybackQuality *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -169,9 +169,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -181,8 +180,8 @@ webkit_dom_video_playback_quality_get_total_video_frames (WebKitDOMVideoPlaybackQuality *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -196,9 +195,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -208,8 +206,8 @@ webkit_dom_video_playback_quality_get_dropped_video_frames (WebKitDOMVideoPlaybackQuality *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -223,9 +221,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -235,8 +232,8 @@ webkit_dom_video_playback_quality_get_corrupted_video_frames (WebKitDOMVideoPlaybackQuality *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -250,9 +247,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -262,8 +258,8 @@ webkit_dom_video_playback_quality_get_total_frame_delay (WebKitDOMVideoPlaybackQuality *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -277,9 +273,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -

    @@ -333,7 +328,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoTrack.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoTrack.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoTrack.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoTrack.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMVideoTrack - +WebKitDOMVideoTrack: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -135,7 +135,7 @@

    Types and Values

    -
    +
    @@ -148,7 +148,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMVideoTrack
     
    @@ -165,8 +165,8 @@
    gchar *
     webkit_dom_video_track_get_id (WebKitDOMVideoTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -180,9 +180,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -191,8 +190,8 @@
    gchar *
     webkit_dom_video_track_get_kind (WebKitDOMVideoTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -206,9 +205,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -217,8 +215,8 @@
    gchar *
     webkit_dom_video_track_get_label (WebKitDOMVideoTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -232,9 +230,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -243,8 +240,8 @@
    gchar *
     webkit_dom_video_track_get_language (WebKitDOMVideoTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -258,9 +255,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -269,8 +265,8 @@
    gboolean
     webkit_dom_video_track_get_selected (WebKitDOMVideoTrack *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -284,9 +280,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -296,8 +291,8 @@ webkit_dom_video_track_set_selected (WebKitDOMVideoTrack *self, gboolean value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -372,7 +367,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoTrackList.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoTrackList.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMVideoTrackList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMVideoTrackList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMVideoTrackList - +WebKitDOMVideoTrackList: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -79,7 +79,7 @@

    Properties

    -
    +
    @@ -94,7 +94,7 @@

    Types and Values

    -
    +
    @@ -107,7 +107,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMVideoTrackList
     
    @@ -131,8 +131,8 @@ webkit_dom_video_track_list_item (WebKitDOMVideoTrackList *self, gulong index);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -153,7 +153,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMVideoTrack.

    [transfer full]

    @@ -166,8 +166,8 @@ (WebKitDOMVideoTrackList *self, const gchar *id);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -188,7 +188,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMVideoTrack.

    [transfer full]

    @@ -206,8 +206,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,9 +233,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -246,8 +245,8 @@ (WebKitDOMVideoTrackList *self);

    webkit_dom_video_track_list_get_length is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,9 +260,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -287,7 +285,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWebKitNamedFlow.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWebKitNamedFlow.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWebKitNamedFlow.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWebKitNamedFlow.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMWebKitNamedFlow - +WebKitDOMWebKitNamedFlow: WebKitDOMGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -127,7 +127,7 @@

    Properties

    -
    +
    @@ -155,7 +155,7 @@

    Types and Values

    -
    +
    @@ -168,7 +168,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMWebKitNamedFlow
     
    @@ -193,8 +193,8 @@ (WebKitDOMWebKitNamedFlow *self, WebKitDOMNode *contentNode);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -215,7 +215,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -227,8 +227,8 @@ webkit_dom_webkit_named_flow_get_regions (WebKitDOMWebKitNamedFlow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -242,7 +242,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -254,8 +254,8 @@ webkit_dom_webkit_named_flow_get_content (WebKitDOMWebKitNamedFlow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -269,7 +269,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNodeList.

    [transfer full]

    @@ -287,8 +287,8 @@

    Use webkit_dom_event_target_dispatch_event() instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -314,9 +314,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -326,8 +325,8 @@ webkit_dom_webkit_named_flow_get_name (WebKitDOMWebKitNamedFlow *self);

    webkit_dom_webkit_named_flow_get_name is deprecated and should not be used in newly-written code.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -341,9 +340,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -353,8 +351,8 @@ webkit_dom_webkit_named_flow_get_overset (WebKitDOMWebKitNamedFlow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -368,9 +366,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -380,8 +377,8 @@ webkit_dom_webkit_named_flow_get_first_empty_region_index (WebKitDOMWebKitNamedFlow *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -395,9 +392,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -409,10 +405,6 @@

    webkit_dom_webkit_named_flow_get_overflow is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -423,10 +415,6 @@

    webkit_dom_webkit_named_flow_get_content_nodes is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -

    @@ -438,10 +426,6 @@

    webkit_dom_webkit_named_flow_get_regions_by_content_node is deprecated and should not be used in newly-written code.

    -
    -

    Returns

    -

    -
    @@ -481,7 +465,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWebKitPoint.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWebKitPoint.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWebKitPoint.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWebKitPoint.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMWebKitPoint - +WebKitDOMWebKitPoint: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -78,7 +78,7 @@

    Properties

    -
    +
    @@ -100,7 +100,7 @@

    Types and Values

    -
    +
    @@ -113,7 +113,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMWebKitPoint
     
    @@ -130,8 +130,8 @@
    gfloat
     webkit_dom_webkit_point_get_x (WebKitDOMWebKitPoint *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -145,9 +145,8 @@
    -

    Returns

    +

    Returns

    A gfloat

    -


    @@ -157,8 +156,8 @@ webkit_dom_webkit_point_set_x (WebKitDOMWebKitPoint *self, gfloat value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -185,8 +184,8 @@
    gfloat
     webkit_dom_webkit_point_get_y (WebKitDOMWebKitPoint *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -200,9 +199,8 @@
    -

    Returns

    +

    Returns

    A gfloat

    -


    @@ -212,8 +210,8 @@ webkit_dom_webkit_point_set_y (WebKitDOMWebKitPoint *self, gfloat value);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -264,7 +262,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWheelEvent.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWheelEvent.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMWheelEvent.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMWheelEvent.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMWheelEvent - +WebKitDOMWheelEvent: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -118,7 +118,7 @@

    Properties

    -
    +
    @@ -170,7 +170,7 @@

    Types and Values

    -
    +
    @@ -183,7 +183,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMEvent
                 ╰── WebKitDOMUIEvent
    @@ -215,8 +215,8 @@
                                     gboolean shiftKey,
                                     gboolean metaKey);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -293,8 +293,8 @@
    gdouble
     webkit_dom_wheel_event_get_delta_x (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -308,9 +308,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -319,8 +318,8 @@
    gdouble
     webkit_dom_wheel_event_get_delta_y (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -334,9 +333,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -345,8 +343,8 @@
    gdouble
     webkit_dom_wheel_event_get_delta_z (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -360,9 +358,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -371,8 +368,8 @@
    gulong
     webkit_dom_wheel_event_get_delta_mode (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -386,9 +383,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -


    @@ -398,8 +394,8 @@ webkit_dom_wheel_event_get_wheel_delta_x (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -413,9 +409,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -425,8 +420,8 @@ webkit_dom_wheel_event_get_wheel_delta_y (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -440,9 +435,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -452,8 +446,8 @@ webkit_dom_wheel_event_get_wheel_delta (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -467,9 +461,8 @@
    -

    Returns

    +

    Returns

    A glong

    -


    @@ -479,8 +472,8 @@ webkit_dom_wheel_event_get_webkit_direction_inverted_from_device (WebKitDOMWheelEvent *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -494,9 +487,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -

    @@ -576,7 +568,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathExpression.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathExpression.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathExpression.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathExpression.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMXPathExpression - +WebKitDOMXPathExpression: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -51,7 +51,7 @@

    Types and Values

    -
    +
    @@ -64,7 +64,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMXPathExpression
     
    @@ -85,8 +85,8 @@ WebKitDOMXPathResult *inResult, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -122,7 +122,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMXPathResult.

    [transfer full]

    @@ -139,7 +139,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathNSResolver.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathNSResolver.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathNSResolver.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathNSResolver.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMXPathNSResolver - +WebKitDOMXPathNSResolver: WebKitDOMGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -51,7 +51,7 @@

    Types and Values

    -
    +
    @@ -64,7 +64,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMXPathNSResolver
     
    @@ -83,8 +83,8 @@ (WebKitDOMXPathNSResolver *self, const gchar *prefix);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -105,9 +105,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -

    @@ -122,7 +121,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathResult.html webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathResult.html --- webkitgtk-2.4.9/Documentation/webkitdomgtk/html/WebKitDOMXPathResult.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/html/WebKitDOMXPathResult.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitDOMGTK+ Reference Manual: WebKitDOMXPathResult - +WebKitDOMXPathResult: WebKitDOMGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -118,7 +118,7 @@

    Properties

    -
    +
    @@ -167,7 +167,7 @@

    Types and Values

    -
    +
    @@ -180,7 +180,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDOMObject
             ╰── WebKitDOMXPathResult
     
    @@ -198,8 +198,8 @@ webkit_dom_xpath_result_iterate_next (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -220,7 +220,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -233,8 +233,8 @@ gulong index, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -260,7 +260,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -272,8 +272,8 @@ webkit_dom_xpath_result_get_result_type (WebKitDOMXPathResult *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -287,9 +287,8 @@
    -

    Returns

    +

    Returns

    A gushort

    -


    @@ -300,8 +299,8 @@ (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -322,9 +321,8 @@
    -

    Returns

    +

    Returns

    A gdouble

    -


    @@ -335,8 +333,8 @@ (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -357,9 +355,8 @@
    -

    Returns

    +

    Returns

    A gchar

    -


    @@ -370,8 +367,8 @@ (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -392,9 +389,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -405,8 +401,8 @@ (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -427,7 +423,7 @@
    -

    Returns

    +

    Returns

    A WebKitDOMNode.

    [transfer none]

    @@ -439,8 +435,8 @@ webkit_dom_xpath_result_get_invalid_iterator_state (WebKitDOMXPathResult *self);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -454,9 +450,8 @@
    -

    Returns

    +

    Returns

    A gboolean

    -


    @@ -467,8 +462,8 @@ (WebKitDOMXPathResult *self, GError **error);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -489,9 +484,8 @@
    -

    Returns

    +

    Returns

    A gulong

    -

    @@ -562,7 +556,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAttr.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAttr.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAttr.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAttr.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrackList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrackList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrackList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrackList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrack.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrack.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrack.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMAudioTrack.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBarInfo.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBarInfo.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBarInfo.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBarInfo.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBarProp.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBarProp.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBarProp.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBarProp.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBatteryManager.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBatteryManager.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBatteryManager.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBatteryManager.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBlob.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBlob.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMBlob.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMBlob.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCDATASection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCDATASection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCDATASection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCDATASection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCharacterData.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCharacterData.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCharacterData.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCharacterData.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMComment.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMComment.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMComment.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMComment.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMConsole.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMConsole.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMConsole.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMConsole.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRuleList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRuleList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRuleList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRuleList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRule.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRule.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRule.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSRule.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleDeclaration.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleDeclaration.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleDeclaration.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleDeclaration.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleSheet.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleSheet.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleSheet.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSStyleSheet.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSValue.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSValue.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSValue.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCSSValue.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCustom.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCustom.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMCustom.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMCustom.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDatabase.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDatabase.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/webkitdomdefines.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/webkitdomdefines.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/webkitdomdefines.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/webkitdomdefines.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentFragment.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentFragment.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentFragment.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentFragment.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocument.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocument.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocument.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocument.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentType.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentType.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentType.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDocumentType.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMApplicationCache.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMApplicationCache.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMApplicationCache.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMApplicationCache.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMImplementation.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMImplementation.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMImplementation.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMImplementation.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeTypeArray.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeTypeArray.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeTypeArray.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeTypeArray.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeType.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeType.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeType.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMMimeType.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMNamedFlowCollection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMNamedFlowCollection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMNamedFlowCollection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMNamedFlowCollection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPluginArray.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPluginArray.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPluginArray.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPluginArray.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPlugin.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPlugin.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPlugin.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMPlugin.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSecurityPolicy.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSecurityPolicy.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSecurityPolicy.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSecurityPolicy.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSelection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSelection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSelection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSelection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSettableTokenList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSettableTokenList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSettableTokenList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMSettableTokenList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringMap.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringMap.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringMap.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMStringMap.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMTokenList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMTokenList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMTokenList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMTokenList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindowCSS.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindowCSS.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindowCSS.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindowCSS.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindow.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindow.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindow.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMDOMWindow.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEntityReference.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEntityReference.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEntityReference.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEntityReference.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEventTarget.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEventTarget.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMEventTarget.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMEventTarget.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMFileList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMFileList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMFileList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMFileList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMFile.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMFile.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMFile.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMFile.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepadList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepadList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepadList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepadList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepad.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepad.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepad.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGamepad.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGeolocation.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGeolocation.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMGeolocation.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMGeolocation.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHistory.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHistory.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHistory.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHistory.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAnchorElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAnchorElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAnchorElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAnchorElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAppletElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAppletElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAppletElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAppletElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAreaElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAreaElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAreaElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAreaElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAudioElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAudioElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAudioElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLAudioElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseFontElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseFontElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseFontElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBaseFontElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBodyElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBodyElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBodyElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBodyElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBRElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBRElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBRElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLBRElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLButtonElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLButtonElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLButtonElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLButtonElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCanvasElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCanvasElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCanvasElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCanvasElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCollection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCollection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCollection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLCollection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDetailsElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDetailsElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDetailsElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDetailsElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDirectoryElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDirectoryElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDirectoryElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDirectoryElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDivElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDivElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDivElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDivElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDListElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDListElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDListElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDListElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDocument.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDocument.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDocument.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLDocument.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLEmbedElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLEmbedElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLEmbedElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLEmbedElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFieldSetElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFieldSetElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFieldSetElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFieldSetElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFontElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFontElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFontElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFontElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFormElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFormElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFormElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFormElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameSetElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameSetElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameSetElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLFrameSetElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadingElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadingElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadingElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHeadingElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHRElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHRElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHRElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHRElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHtmlElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHtmlElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHtmlElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLHtmlElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLIFrameElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLIFrameElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLIFrameElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLIFrameElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLImageElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLImageElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLImageElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLImageElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLInputElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLInputElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLInputElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLInputElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLKeygenElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLKeygenElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLKeygenElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLKeygenElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLabelElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLabelElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLabelElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLabelElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLegendElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLegendElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLegendElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLegendElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLIElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLIElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLIElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLIElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLinkElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLinkElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLinkElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLLinkElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMapElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMapElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMapElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMapElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMarqueeElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMarqueeElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMarqueeElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMarqueeElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMediaElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMediaElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMediaElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMediaElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMenuElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMenuElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMenuElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMenuElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMetaElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMetaElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMetaElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLMetaElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLModElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLModElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLModElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLModElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLObjectElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLObjectElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLObjectElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLObjectElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOListElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOListElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOListElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOListElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptGroupElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptGroupElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptGroupElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptGroupElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionsCollection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionsCollection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionsCollection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLOptionsCollection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParagraphElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParagraphElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParagraphElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParagraphElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParamElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParamElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParamElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLParamElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPreElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPreElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPreElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPreElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPropertiesCollection.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPropertiesCollection.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPropertiesCollection.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLPropertiesCollection.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLQuoteElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLQuoteElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLQuoteElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLQuoteElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLScriptElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLScriptElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLScriptElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLScriptElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLSelectElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLSelectElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLSelectElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLSelectElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLStyleElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLStyleElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLStyleElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLStyleElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCaptionElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCaptionElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCaptionElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCaptionElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCellElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCellElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCellElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableCellElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableColElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableColElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableColElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableColElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableRowElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableRowElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableRowElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableRowElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableSectionElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableSectionElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableSectionElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTableSectionElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTextAreaElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTextAreaElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTextAreaElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTextAreaElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTitleElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTitleElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTitleElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLTitleElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLUListElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLUListElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLUListElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLUListElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLVideoElement.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLVideoElement.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLVideoElement.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMHTMLVideoElement.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMKeyboardEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMKeyboardEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMKeyboardEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMKeyboardEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMLocation.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMLocation.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMLocation.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMLocation.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaController.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaController.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaController.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaController.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaError.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaError.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaError.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaError.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaQueryList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaQueryList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaQueryList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMediaQueryList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMemoryInfo.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMemoryInfo.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMemoryInfo.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMemoryInfo.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMessagePort.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMessagePort.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMessagePort.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMessagePort.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMicroDataItemValue.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMicroDataItemValue.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMicroDataItemValue.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMicroDataItemValue.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMouseEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMouseEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMMouseEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMMouseEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNamedNodeMap.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNamedNodeMap.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNamedNodeMap.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNamedNodeMap.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNavigator.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNavigator.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNavigator.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNavigator.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeFilter.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeFilter.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeFilter.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeFilter.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeIterator.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeIterator.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeIterator.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeIterator.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNodeList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNode.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNode.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMNode.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMNode.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMObject.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMObject.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMObject.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMObject.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntryList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntryList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntryList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntryList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntry.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntry.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntry.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceEntry.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceNavigation.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceNavigation.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceNavigation.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceNavigation.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformance.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformance.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformance.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformance.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceTiming.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceTiming.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceTiming.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPerformanceTiming.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMProcessingInstruction.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMProcessingInstruction.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMProcessingInstruction.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMProcessingInstruction.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPropertyNodeList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPropertyNodeList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMPropertyNodeList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMPropertyNodeList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMRange.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMRange.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMRange.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMRange.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMScreen.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMScreen.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMScreen.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMScreen.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMShadowRoot.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMShadowRoot.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMShadowRoot.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMShadowRoot.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageInfo.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageInfo.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageInfo.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageInfo.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageQuota.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageQuota.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageQuota.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorageQuota.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorage.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorage.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStorage.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStorage.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleMedia.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleMedia.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleMedia.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleMedia.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheetList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheetList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheetList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheetList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheet.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheet.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheet.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMStyleSheet.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMText.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMText.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMText.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMText.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCueList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCueList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCueList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCueList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCue.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCue.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCue.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackCue.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrackList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrack.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrack.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrack.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTextTrack.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTimeRanges.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTimeRanges.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTimeRanges.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTimeRanges.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTouch.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTouch.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTouch.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTouch.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTrackEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTrackEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTrackEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTrackEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTreeWalker.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTreeWalker.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMTreeWalker.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMTreeWalker.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMUIEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMUIEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMUIEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMUIEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMValidityState.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMValidityState.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMValidityState.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMValidityState.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoPlaybackQuality.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoPlaybackQuality.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoPlaybackQuality.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoPlaybackQuality.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrackList.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrackList.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrackList.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrackList.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrack.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrack.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrack.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMVideoTrack.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitNamedFlow.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitNamedFlow.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitNamedFlow.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitNamedFlow.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitPoint.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitPoint.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitPoint.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWebKitPoint.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWheelEvent.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWheelEvent.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMWheelEvent.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMWheelEvent.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathExpression.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathExpression.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathExpression.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathExpression.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathNSResolver.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathNSResolver.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathNSResolver.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathNSResolver.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathResult.sgml webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathResult.sgml --- webkitgtk-2.4.9/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathResult.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitdomgtk/tmpl/WebKitDOMXPathResult.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/annotation-glossary.html webkitgtk-2.4.10/Documentation/webkitgtk/html/annotation-glossary.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/annotation-glossary.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/annotation-glossary.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,12 +2,12 @@ -WebKitGTK+ Reference Manual: Annotation Glossary - +Annotation Glossary: WebKitGTK+ Reference Manual + - + @@ -18,6 +18,8 @@  |  O  |  + S +  |  T Home @@ -38,6 +40,9 @@

    O

    out

    Parameter for returning results. Default is transfer full.

    +

    S

    +
    skip
    +

    Exposed in C code, not necessarily available in other languages.

    T

    transfer container

    Free data container after the code is done.

    @@ -49,7 +54,6 @@

    Override the parsed C type with given type.

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/ch01.html webkitgtk-2.4.10/Documentation/webkitgtk/html/ch01.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/ch01.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/ch01.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Global functions - +Global functions: WebKitGTK+ Reference Manual + - + @@ -27,7 +27,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/ch02.html webkitgtk-2.4.10/Documentation/webkitgtk/html/ch02.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/ch02.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/ch02.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Class Overview - +Class Overview: WebKitGTK+ Reference Manual + - + @@ -27,16 +27,16 @@ WebKitWebView — The central class of the WebKitGTK+ API
    -WebKitWebFrameThe content of a WebKitWebView +WebKitWebFrame — The content of a WebKitWebView
    -WebKitWebSettingsControl the behaviour of a WebKitWebView +WebKitWebSettings — Control the behaviour of a WebKitWebView
    -WebKitWebBackForwardListThe history of a WebKitWebView +WebKitWebBackForwardList — The history of a WebKitWebView
    -WebKitWebHistoryItemOne item of the WebKitWebBackForwardList and or global history +WebKitWebHistoryItem — One item of the WebKitWebBackForwardList and or global history
    WebKitWebNavigationAction — Object used to report details of navigation actions @@ -60,7 +60,7 @@ WebKitWebDatabase — A WebKit web application database
    -WebKitWebDataSourceEncapsulates the content to be displayed in a WebKitWebFrame. +WebKitWebDataSource — Encapsulates the content to be displayed in a WebKitWebFrame.
    WebKitWebResource — Represents a downloaded URI. @@ -81,14 +81,14 @@ WebKitWebPluginDatabase — Provides information about the plugins the engine knows about
    -WebKitSoupAuthDialogA SoupSessionFeature to provide a simple +WebKitSoupAuthDialog — A SoupSessionFeature to provide a simple authentication dialog for HTTP basic auth support.
    WebKitSecurityOrigin — A security boundary for web sites
    -WebKitWebWindowFeaturesWindow properties of a WebKitWebView +WebKitWebWindowFeatures — Window properties of a WebKitWebView
    WebKitIconDatabase — A WebKit web application database @@ -105,7 +105,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/ch03.html webkitgtk-2.4.10/Documentation/webkitgtk/html/ch03.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/ch03.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/ch03.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Running WebKitGTK+-based programs - +Running WebKitGTK+-based programs: WebKitGTK+ Reference Manual + - + @@ -27,7 +27,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.1.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.1.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.1.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.1.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.0.1 - +Index of new symbols in 1.0.1: WebKitGTK+ Reference Manual + - + @@ -22,32 +22,31 @@

    Index of new symbols in 1.0.1

    -
    +

    W

    -
    WebKitWebSettings:zoom-step, The “zoom-step” property +
    WebKitWebSettings:zoom-step, The “zoom-step” property
    -
    WebKitWebView:full-content-zoom, The “full-content-zoom” property +
    WebKitWebView:full-content-zoom, The “full-content-zoom” property
    -
    WebKitWebView:zoom-level, The “zoom-level” property +
    WebKitWebView:zoom-level, The “zoom-level” property
    -
    webkit_web_view_get_full_content_zoom, webkit_web_view_get_full_content_zoom () +
    webkit_web_view_get_full_content_zoom, webkit_web_view_get_full_content_zoom ()
    -
    webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level () +
    webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level ()
    -
    webkit_web_view_set_full_content_zoom, webkit_web_view_set_full_content_zoom () +
    webkit_web_view_set_full_content_zoom, webkit_web_view_set_full_content_zoom ()
    -
    webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level () +
    webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level ()
    -
    webkit_web_view_zoom_in, webkit_web_view_zoom_in () +
    webkit_web_view_zoom_in, webkit_web_view_zoom_in ()
    -
    webkit_web_view_zoom_out, webkit_web_view_zoom_out () +
    webkit_web_view_zoom_out, webkit_web_view_zoom_out ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.2.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.2.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.2.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.2.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.0.2 - +Index of new symbols in 1.0.2: WebKitGTK+ Reference Manual + - + @@ -22,28 +22,27 @@

    Index of new symbols in 1.0.2

    -
    +

    W

    -
    WebKitWebHistoryItem:alternate-title, The “alternate-title” property +
    WebKitWebHistoryItem:alternate-title, The “alternate-title” property
    -
    WebKitWebHistoryItem:last-visited-time, The “last-visited-time” property +
    WebKitWebHistoryItem:last-visited-time, The “last-visited-time” property
    -
    WebKitWebHistoryItem:original-uri, The “original-uri” property +
    WebKitWebHistoryItem:original-uri, The “original-uri” property
    -
    WebKitWebHistoryItem:title, The “title” property +
    WebKitWebHistoryItem:title, The “title” property
    -
    WebKitWebHistoryItem:uri, The “uri” property +
    WebKitWebHistoryItem:uri, The “uri” property
    -
    WebKitWebView:copy-target-list, The “copy-target-list” property +
    WebKitWebView:copy-target-list, The “copy-target-list” property
    -
    WebKitWebView:paste-target-list, The “paste-target-list” property +
    WebKitWebView:paste-target-list, The “paste-target-list” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.3.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.3.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.0.3.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.0.3.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.0.3 - +Index of new symbols in 1.0.3: WebKitGTK+ Reference Manual + - + @@ -22,108 +22,107 @@

    Index of new symbols in 1.0.3

    -
    +

    W

    -
    WebKitWebInspector::attach-window, The “attach-window” signal +
    WebKitWebInspector::attach-window, The “attach-window” signal
    -
    WebKitWebInspector::close-window, The “close-window” signal +
    WebKitWebInspector::close-window, The “close-window” signal
    -
    WebKitWebInspector::detach-window, The “detach-window” signal +
    WebKitWebInspector::detach-window, The “detach-window” signal
    -
    WebKitWebInspector::finished, The “finished” signal +
    WebKitWebInspector::finished, The “finished” signal
    -
    WebKitWebInspector::inspect-web-view, The “inspect-web-view” signal +
    WebKitWebInspector::inspect-web-view, The “inspect-web-view” signal
    -
    WebKitWebInspector::show-window, The “show-window” signal +
    WebKitWebInspector::show-window, The “show-window” signal
    -
    WebKitWebInspector:inspected-uri, The “inspected-uri” property +
    WebKitWebInspector:inspected-uri, The “inspected-uri” property
    -
    WebKitWebInspector:web-view, The “web-view” property +
    WebKitWebInspector:web-view, The “web-view” property
    -
    WebKitWebNavigationAction:button, The “button” property +
    WebKitWebNavigationAction:button, The “button” property
    -
    WebKitWebNavigationAction:modifier-state, The “modifier-state” property +
    WebKitWebNavigationAction:modifier-state, The “modifier-state” property
    -
    WebKitWebNavigationAction:original-uri, The “original-uri” property +
    WebKitWebNavigationAction:original-uri, The “original-uri” property
    -
    WebKitWebNavigationAction:reason, The “reason” property +
    WebKitWebNavigationAction:reason, The “reason” property
    -
    WebKitWebSettings:enable-developer-extras, The “enable-developer-extras” property +
    WebKitWebSettings:enable-developer-extras, The “enable-developer-extras” property
    -
    WebKitWebSettings:enforce-96-dpi, The “enforce-96-dpi” property +
    WebKitWebSettings:enforce-96-dpi, The “enforce-96-dpi” property
    -
    WebKitWebView::create-web-view, The “create-web-view” signal +
    WebKitWebView::create-web-view, The “create-web-view” signal
    -
    WebKitWebView::mime-type-policy-decision-requested, The “mime-type-policy-decision-requested” signal +
    WebKitWebView::mime-type-policy-decision-requested, The “mime-type-policy-decision-requested” signal
    -
    WebKitWebView::navigation-policy-decision-requested, The “navigation-policy-decision-requested” signal +
    WebKitWebView::navigation-policy-decision-requested, The “navigation-policy-decision-requested” signal
    -
    WebKitWebView::web-view-ready, The “web-view-ready” signal +
    WebKitWebView::web-view-ready, The “web-view-ready” signal
    -
    WebKitWebView:web-inspector, The “web-inspector” property +
    WebKitWebView:web-inspector, The “web-inspector” property
    -
    WebKitWebView:window-features, The “window-features” property +
    WebKitWebView:window-features, The “window-features” property
    -
    WebKitWebWindowFeatures:fullscreen, The “fullscreen” property +
    WebKitWebWindowFeatures:fullscreen, The “fullscreen” property
    -
    WebKitWebWindowFeatures:height, The “height” property +
    WebKitWebWindowFeatures:height, The “height” property
    -
    WebKitWebWindowFeatures:locationbar-visible, The “locationbar-visible” property +
    WebKitWebWindowFeatures:locationbar-visible, The “locationbar-visible” property
    -
    WebKitWebWindowFeatures:menubar-visible, The “menubar-visible” property +
    WebKitWebWindowFeatures:menubar-visible, The “menubar-visible” property
    -
    WebKitWebWindowFeatures:scrollbar-visible, The “scrollbar-visible” property +
    WebKitWebWindowFeatures:scrollbar-visible, The “scrollbar-visible” property
    -
    WebKitWebWindowFeatures:statusbar-visible, The “statusbar-visible” property +
    WebKitWebWindowFeatures:statusbar-visible, The “statusbar-visible” property
    -
    WebKitWebWindowFeatures:toolbar-visible, The “toolbar-visible” property +
    WebKitWebWindowFeatures:toolbar-visible, The “toolbar-visible” property
    -
    WebKitWebWindowFeatures:width, The “width” property +
    WebKitWebWindowFeatures:width, The “width” property
    -
    WebKitWebWindowFeatures:x, The “x” property +
    WebKitWebWindowFeatures:x, The “x” property
    -
    WebKitWebWindowFeatures:y, The “y” property +
    WebKitWebWindowFeatures:y, The “y” property
    -
    webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri () +
    webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri ()
    -
    webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view () +
    webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view ()
    -
    webkit_web_navigation_action_get_button, webkit_web_navigation_action_get_button () +
    webkit_web_navigation_action_get_button, webkit_web_navigation_action_get_button ()
    -
    webkit_web_navigation_action_get_modifier_state, webkit_web_navigation_action_get_modifier_state () +
    webkit_web_navigation_action_get_modifier_state, webkit_web_navigation_action_get_modifier_state ()
    -
    webkit_web_navigation_action_get_original_uri, webkit_web_navigation_action_get_original_uri () +
    webkit_web_navigation_action_get_original_uri, webkit_web_navigation_action_get_original_uri ()
    -
    webkit_web_navigation_action_get_reason, webkit_web_navigation_action_get_reason () +
    webkit_web_navigation_action_get_reason, webkit_web_navigation_action_get_reason ()
    -
    webkit_web_navigation_action_set_original_uri, webkit_web_navigation_action_set_original_uri () +
    webkit_web_navigation_action_set_original_uri, webkit_web_navigation_action_set_original_uri ()
    -
    webkit_web_navigation_action_set_reason, webkit_web_navigation_action_set_reason () +
    webkit_web_navigation_action_set_reason, webkit_web_navigation_action_set_reason ()
    -
    webkit_web_policy_decision_download, webkit_web_policy_decision_download () +
    webkit_web_policy_decision_download, webkit_web_policy_decision_download ()
    -
    webkit_web_policy_decision_ignore, webkit_web_policy_decision_ignore () +
    webkit_web_policy_decision_ignore, webkit_web_policy_decision_ignore ()
    -
    webkit_web_policy_decision_use, webkit_web_policy_decision_use () +
    webkit_web_policy_decision_use, webkit_web_policy_decision_use ()
    -
    webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type () +
    webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type ()
    -
    webkit_web_view_get_inspector, webkit_web_view_get_inspector () +
    webkit_web_view_get_inspector, webkit_web_view_get_inspector ()
    -
    webkit_web_view_get_window_features, webkit_web_view_get_window_features () +
    webkit_web_view_get_window_features, webkit_web_view_get_window_features ()
    -
    webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache () +
    webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache ()
    -
    webkit_web_window_features_equal, webkit_web_window_features_equal () +
    webkit_web_window_features_equal, webkit_web_window_features_equal ()
    -
    webkit_web_window_features_new, webkit_web_window_features_new () +
    webkit_web_window_features_new, webkit_web_window_features_new ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.10.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.10.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.10.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.10.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.10 - +Index of new symbols in 1.1.10: WebKitGTK+ Reference Manual + - + @@ -22,18 +22,17 @@

    Index of new symbols in 1.1.10

    -
    +

    N

    -
    WebKitNetworkRequest:message, The “message” property +
    WebKitNetworkRequest:message, The “message” property
    -
    WebKitNetworkRequest:uri, The “uri” property +
    WebKitNetworkRequest:uri, The “uri” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.11.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.11.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.11.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.11.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.11 - +Index of new symbols in 1.1.11: WebKitGTK+ Reference Manual + - + @@ -22,24 +22,23 @@

    Index of new symbols in 1.1.11

    -
    +

    W

    -
    WebKitWebSettings:enable-xss-auditor, The “enable-xss-auditor” property +
    WebKitWebSettings:enable-xss-auditor, The “enable-xss-auditor” property
    -
    WebKitWebSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property +
    WebKitWebSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property
    -
    WebKitWebSettings:user-agent, The “user-agent” property +
    WebKitWebSettings:user-agent, The “user-agent” property
    -
    WebKitWebView::close-web-view, The “close-web-view” signal +
    WebKitWebView::close-web-view, The “close-web-view” signal
    -
    webkit_web_settings_get_user_agent, webkit_web_settings_get_user_agent () +
    webkit_web_settings_get_user_agent, webkit_web_settings_get_user_agent ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.13.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.13.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.13.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.13.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.13 - +Index of new symbols in 1.1.13: WebKitGTK+ Reference Manual + - + @@ -22,24 +22,23 @@

    Index of new symbols in 1.1.13

    -
    +

    W

    -
    WebKitWebNavigationAction:target-frame, The “target-frame” property +
    WebKitWebNavigationAction:target-frame, The “target-frame” property
    -
    WebKitWebSettings:editing-behavior, The “editing-behavior” property +
    WebKitWebSettings:editing-behavior, The “editing-behavior” property
    -
    WebKitWebSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property +
    WebKitWebSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property
    -
    WebKitWebSettings:enable-universal-access-from-file-uris, The “enable-universal-access-from-file-uris” property +
    WebKitWebSettings:enable-universal-access-from-file-uris, The “enable-universal-access-from-file-uris” property
    -
    webkit_web_navigation_action_get_target_frame, webkit_web_navigation_action_get_target_frame () +
    webkit_web_navigation_action_get_target_frame, webkit_web_navigation_action_get_target_frame ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.14.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.14.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.14.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.14.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.14 - +Index of new symbols in 1.1.14: WebKitGTK+ Reference Manual + - + @@ -22,174 +22,173 @@

    Index of new symbols in 1.1.14

    -
    +

    G

    -
    webkit_get_default_web_database_quota, webkit_get_default_web_database_quota () +
    webkit_get_default_web_database_quota, webkit_get_default_web_database_quota ()
    -
    webkit_get_web_database_directory_path, webkit_get_web_database_directory_path () +
    webkit_get_web_database_directory_path, webkit_get_web_database_directory_path ()

    N

    -
    WebKitNetworkResponse:message, The “message” property +
    WebKitNetworkResponse:message, The “message” property
    -
    WebKitNetworkResponse:uri, The “uri” property +
    WebKitNetworkResponse:uri, The “uri” property
    -
    webkit_network_response_get_message, webkit_network_response_get_message () +
    webkit_network_response_get_message, webkit_network_response_get_message ()
    -
    webkit_network_response_get_uri, webkit_network_response_get_uri () +
    webkit_network_response_get_uri, webkit_network_response_get_uri ()
    -
    webkit_network_response_set_uri, webkit_network_response_set_uri () +
    webkit_network_response_set_uri, webkit_network_response_set_uri ()

    R

    -
    webkit_remove_all_web_databases, webkit_remove_all_web_databases () +
    webkit_remove_all_web_databases, webkit_remove_all_web_databases ()

    S

    -
    WebKitSecurityOrigin:host, The “host” property +
    WebKitSecurityOrigin:host, The “host” property
    -
    WebKitSecurityOrigin:port, The “port” property +
    WebKitSecurityOrigin:port, The “port” property
    -
    WebKitSecurityOrigin:protocol, The “protocol” property +
    WebKitSecurityOrigin:protocol, The “protocol” property
    -
    WebKitSecurityOrigin:web-database-quota, The “web-database-quota” property +
    WebKitSecurityOrigin:web-database-quota, The “web-database-quota” property
    -
    WebKitSecurityOrigin:web-database-usage, The “web-database-usage” property +
    WebKitSecurityOrigin:web-database-usage, The “web-database-usage” property
    -
    webkit_security_origin_get_all_web_databases, webkit_security_origin_get_all_web_databases () +
    webkit_security_origin_get_all_web_databases, webkit_security_origin_get_all_web_databases ()
    -
    webkit_security_origin_get_host, webkit_security_origin_get_host () +
    webkit_security_origin_get_host, webkit_security_origin_get_host ()
    -
    webkit_security_origin_get_port, webkit_security_origin_get_port () +
    webkit_security_origin_get_port, webkit_security_origin_get_port ()
    -
    webkit_security_origin_get_protocol, webkit_security_origin_get_protocol () +
    webkit_security_origin_get_protocol, webkit_security_origin_get_protocol ()
    -
    webkit_security_origin_get_web_database_quota, webkit_security_origin_get_web_database_quota () +
    webkit_security_origin_get_web_database_quota, webkit_security_origin_get_web_database_quota ()
    -
    webkit_security_origin_get_web_database_usage, webkit_security_origin_get_web_database_usage () +
    webkit_security_origin_get_web_database_usage, webkit_security_origin_get_web_database_usage ()
    -
    webkit_security_origin_set_web_database_quota, webkit_security_origin_set_web_database_quota () +
    webkit_security_origin_set_web_database_quota, webkit_security_origin_set_web_database_quota ()
    -
    webkit_set_default_web_database_quota, webkit_set_default_web_database_quota () +
    webkit_set_default_web_database_quota, webkit_set_default_web_database_quota ()
    -
    webkit_set_web_database_directory_path, webkit_set_web_database_directory_path () +
    webkit_set_web_database_directory_path, webkit_set_web_database_directory_path ()

    W

    -
    WebKitWebDatabase:display-name, The “display-name” property +
    WebKitWebDatabase:display-name, The “display-name” property
    -
    WebKitWebDatabase:expected-size, The “expected-size” property +
    WebKitWebDatabase:expected-size, The “expected-size” property
    -
    WebKitWebDatabase:filename, The “filename” property +
    WebKitWebDatabase:filename, The “filename” property
    -
    WebKitWebDatabase:name, The “name” property +
    WebKitWebDatabase:name, The “name” property
    -
    WebKitWebDatabase:security-origin, The “security-origin” property +
    WebKitWebDatabase:security-origin, The “security-origin” property
    -
    WebKitWebDatabase:size, The “size” property +
    WebKitWebDatabase:size, The “size” property
    -
    WebKitWebFrame::scrollbars-policy-changed, The “scrollbars-policy-changed” signal +
    WebKitWebFrame::scrollbars-policy-changed, The “scrollbars-policy-changed” signal
    -
    WebKitWebFrame:horizontal-scrollbar-policy, The “horizontal-scrollbar-policy” property +
    WebKitWebFrame:horizontal-scrollbar-policy, The “horizontal-scrollbar-policy” property
    -
    WebKitWebFrame:vertical-scrollbar-policy, The “vertical-scrollbar-policy” property +
    WebKitWebFrame:vertical-scrollbar-policy, The “vertical-scrollbar-policy” property
    -
    WebKitWebResource:encoding, The “encoding” property +
    WebKitWebResource:encoding, The “encoding” property
    -
    WebKitWebResource:frame-name, The “frame-name” property +
    WebKitWebResource:frame-name, The “frame-name” property
    -
    WebKitWebResource:mime-type, The “mime-type” property +
    WebKitWebResource:mime-type, The “mime-type” property
    -
    WebKitWebResource:uri, The “uri” property +
    WebKitWebResource:uri, The “uri” property
    -
    WebKitWebView::database-quota-exceeded, The “database-quota-exceeded” signal +
    WebKitWebView::database-quota-exceeded, The “database-quota-exceeded” signal
    -
    WebKitWebView::redo, The “redo” signal +
    WebKitWebView::redo, The “redo” signal
    -
    WebKitWebView::resource-request-starting, The “resource-request-starting” signal +
    WebKitWebView::resource-request-starting, The “resource-request-starting” signal
    -
    WebKitWebView::undo, The “undo” signal +
    WebKitWebView::undo, The “undo” signal
    -
    webkit_web_database_get_display_name, webkit_web_database_get_display_name () +
    webkit_web_database_get_display_name, webkit_web_database_get_display_name ()
    -
    webkit_web_database_get_expected_size, webkit_web_database_get_expected_size () +
    webkit_web_database_get_expected_size, webkit_web_database_get_expected_size ()
    -
    webkit_web_database_get_filename, webkit_web_database_get_filename () +
    webkit_web_database_get_filename, webkit_web_database_get_filename ()
    -
    webkit_web_database_get_name, webkit_web_database_get_name () +
    webkit_web_database_get_name, webkit_web_database_get_name ()
    -
    webkit_web_database_get_security_origin, webkit_web_database_get_security_origin () +
    webkit_web_database_get_security_origin, webkit_web_database_get_security_origin ()
    -
    webkit_web_database_get_size, webkit_web_database_get_size () +
    webkit_web_database_get_size, webkit_web_database_get_size ()
    -
    webkit_web_database_remove, webkit_web_database_remove () +
    webkit_web_database_remove, webkit_web_database_remove ()
    -
    webkit_web_data_source_get_data, webkit_web_data_source_get_data () +
    webkit_web_data_source_get_data, webkit_web_data_source_get_data ()
    -
    webkit_web_data_source_get_encoding, webkit_web_data_source_get_encoding () +
    webkit_web_data_source_get_encoding, webkit_web_data_source_get_encoding ()
    -
    webkit_web_data_source_get_initial_request, webkit_web_data_source_get_initial_request () +
    webkit_web_data_source_get_initial_request, webkit_web_data_source_get_initial_request ()
    -
    webkit_web_data_source_get_main_resource, webkit_web_data_source_get_main_resource () +
    webkit_web_data_source_get_main_resource, webkit_web_data_source_get_main_resource ()
    -
    webkit_web_data_source_get_request, webkit_web_data_source_get_request () +
    webkit_web_data_source_get_request, webkit_web_data_source_get_request ()
    -
    webkit_web_data_source_get_unreachable_uri, webkit_web_data_source_get_unreachable_uri () +
    webkit_web_data_source_get_unreachable_uri, webkit_web_data_source_get_unreachable_uri ()
    -
    webkit_web_data_source_get_web_frame, webkit_web_data_source_get_web_frame () +
    webkit_web_data_source_get_web_frame, webkit_web_data_source_get_web_frame ()
    -
    webkit_web_data_source_is_loading, webkit_web_data_source_is_loading () +
    webkit_web_data_source_is_loading, webkit_web_data_source_is_loading ()
    -
    webkit_web_data_source_new, webkit_web_data_source_new () +
    webkit_web_data_source_new, webkit_web_data_source_new ()
    -
    webkit_web_frame_get_data_source, webkit_web_frame_get_data_source () +
    webkit_web_frame_get_data_source, webkit_web_frame_get_data_source ()
    -
    webkit_web_frame_get_provisional_data_source, webkit_web_frame_get_provisional_data_source () +
    webkit_web_frame_get_provisional_data_source, webkit_web_frame_get_provisional_data_source ()
    -
    webkit_web_frame_get_security_origin, webkit_web_frame_get_security_origin () +
    webkit_web_frame_get_security_origin, webkit_web_frame_get_security_origin ()
    -
    webkit_web_resource_get_data, webkit_web_resource_get_data () +
    webkit_web_resource_get_data, webkit_web_resource_get_data ()
    -
    webkit_web_resource_get_encoding, webkit_web_resource_get_encoding () +
    webkit_web_resource_get_encoding, webkit_web_resource_get_encoding ()
    -
    webkit_web_resource_get_frame_name, webkit_web_resource_get_frame_name () +
    webkit_web_resource_get_frame_name, webkit_web_resource_get_frame_name ()
    -
    webkit_web_resource_get_mime_type, webkit_web_resource_get_mime_type () +
    webkit_web_resource_get_mime_type, webkit_web_resource_get_mime_type ()
    -
    webkit_web_resource_get_uri, webkit_web_resource_get_uri () +
    webkit_web_resource_get_uri, webkit_web_resource_get_uri ()
    -
    webkit_web_resource_new, webkit_web_resource_new () +
    webkit_web_resource_new, webkit_web_resource_new ()
    -
    webkit_web_view_can_redo, webkit_web_view_can_redo () +
    webkit_web_view_can_redo, webkit_web_view_can_redo ()
    -
    webkit_web_view_can_undo, webkit_web_view_can_undo () +
    webkit_web_view_can_undo, webkit_web_view_can_undo ()
    -
    webkit_web_view_get_view_source_mode, webkit_web_view_get_view_source_mode () +
    webkit_web_view_get_view_source_mode, webkit_web_view_get_view_source_mode ()
    -
    webkit_web_view_redo, webkit_web_view_redo () +
    webkit_web_view_redo, webkit_web_view_redo ()
    -
    webkit_web_view_set_view_source_mode, webkit_web_view_set_view_source_mode () +
    webkit_web_view_set_view_source_mode, webkit_web_view_set_view_source_mode ()
    -
    webkit_web_view_undo, webkit_web_view_undo () +
    webkit_web_view_undo, webkit_web_view_undo ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.15.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.15.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.15.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.15.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.15 - +Index of new symbols in 1.1.15: WebKitGTK+ Reference Manual + - + @@ -22,33 +22,32 @@

    Index of new symbols in 1.1.15

    -
    +

    H

    -
    WebKitHitTestResult:context, The “context” property +
    WebKitHitTestResult:context, The “context” property
    -
    WebKitHitTestResult:image-uri, The “image-uri” property +
    WebKitHitTestResult:image-uri, The “image-uri” property
    -
    WebKitHitTestResult:link-uri, The “link-uri” property +
    WebKitHitTestResult:link-uri, The “link-uri” property
    -
    WebKitHitTestResult:media-uri, The “media-uri” property +
    WebKitHitTestResult:media-uri, The “media-uri” property

    W

    -
    webkit_web_data_source_get_subresources, webkit_web_data_source_get_subresources () +
    webkit_web_data_source_get_subresources, webkit_web_data_source_get_subresources ()
    -
    webkit_web_view_get_hit_test_result, webkit_web_view_get_hit_test_result () +
    webkit_web_view_get_hit_test_result, webkit_web_view_get_hit_test_result ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.16.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.16.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.16.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.16.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.16 - +Index of new symbols in 1.1.16: WebKitGTK+ Reference Manual + - + @@ -22,25 +22,24 @@

    Index of new symbols in 1.1.16

    -
    +

    D

    -
    WebKitDownload:network-response, The “network-response” property +
    WebKitDownload:network-response, The “network-response” property
    -
    webkit_download_get_network_response, webkit_download_get_network_response () +
    webkit_download_get_network_response, webkit_download_get_network_response ()

    W

    -
    WebKitWebSettings:enable-dom-paste, The “enable-dom-paste” property +
    WebKitWebSettings:enable-dom-paste, The “enable-dom-paste” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.17.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.17.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.17.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.17.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.17 - +Index of new symbols in 1.1.17: WebKitGTK+ Reference Manual + - + @@ -22,24 +22,23 @@

    Index of new symbols in 1.1.17

    -
    +

    W

    -
    WebKitWebInspector:timeline-profiling-enabled, The “timeline-profiling-enabled” property +
    WebKitWebInspector:timeline-profiling-enabled, The “timeline-profiling-enabled” property
    -
    WebKitWebSettings:tab-key-cycles-through-elements, The “tab-key-cycles-through-elements” property +
    WebKitWebSettings:tab-key-cycles-through-elements, The “tab-key-cycles-through-elements” property
    -
    webkit_web_inspector_close, webkit_web_inspector_close () +
    webkit_web_inspector_close, webkit_web_inspector_close ()
    -
    webkit_web_inspector_inspect_coordinates, webkit_web_inspector_inspect_coordinates () +
    webkit_web_inspector_inspect_coordinates, webkit_web_inspector_inspect_coordinates ()
    -
    webkit_web_inspector_show, webkit_web_inspector_show () +
    webkit_web_inspector_show, webkit_web_inspector_show ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.18.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.18.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.18.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.18.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.18 - +Index of new symbols in 1.1.18: WebKitGTK+ Reference Manual + - + @@ -22,40 +22,39 @@

    Index of new symbols in 1.1.18

    -
    +

    G

    -
    webkit_get_cache_model, webkit_get_cache_model () +
    webkit_get_cache_model, webkit_get_cache_model ()

    S

    -
    webkit_set_cache_model, webkit_set_cache_model () +
    webkit_set_cache_model, webkit_set_cache_model ()

    W

    -
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property +
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property
    -
    WebKitWebSettings:enable-page-cache, The “enable-page-cache” property +
    WebKitWebSettings:enable-page-cache, The “enable-page-cache” property
    -
    WebKitWebView::icon-loaded, The “icon-loaded” signal +
    WebKitWebView::icon-loaded, The “icon-loaded” signal
    -
    WebKitWebView:icon-uri, The “icon-uri” property +
    WebKitWebView:icon-uri, The “icon-uri” property
    -
    webkit_web_frame_get_network_response, webkit_web_frame_get_network_response () +
    webkit_web_frame_get_network_response, webkit_web_frame_get_network_response ()
    -
    webkit_web_history_item_copy, webkit_web_history_item_copy () +
    webkit_web_history_item_copy, webkit_web_history_item_copy ()
    -
    webkit_web_view_get_icon_uri, webkit_web_view_get_icon_uri () +
    webkit_web_view_get_icon_uri, webkit_web_view_get_icon_uri ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.1.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.1.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.1.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.1.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.1 - +Index of new symbols in 1.1.1: WebKitGTK+ Reference Manual + - + @@ -22,44 +22,43 @@

    Index of new symbols in 1.1.1

    -
    +

    G

    -
    webkit_get_default_session, webkit_get_default_session () +
    webkit_get_default_session, webkit_get_default_session ()

    S

    -
    WebKitSoupAuthDialog::current-toplevel, The “current-toplevel” signal +
    WebKitSoupAuthDialog::current-toplevel, The “current-toplevel” signal

    W

    -
    WebKitWebInspector:javascript-profiling-enabled, The “javascript-profiling-enabled” property +
    WebKitWebInspector:javascript-profiling-enabled, The “javascript-profiling-enabled” property
    -
    webkit_web_back_forward_list_add_item, webkit_web_back_forward_list_add_item () +
    webkit_web_back_forward_list_add_item, webkit_web_back_forward_list_add_item ()
    -
    webkit_web_frame_load_string, webkit_web_frame_load_string () +
    webkit_web_frame_load_string, webkit_web_frame_load_string ()
    -
    webkit_web_frame_load_uri, webkit_web_frame_load_uri () +
    webkit_web_frame_load_uri, webkit_web_frame_load_uri ()
    -
    webkit_web_view_get_custom_encoding, webkit_web_view_get_custom_encoding () +
    webkit_web_view_get_custom_encoding, webkit_web_view_get_custom_encoding ()
    -
    webkit_web_view_get_encoding, webkit_web_view_get_encoding () +
    webkit_web_view_get_encoding, webkit_web_view_get_encoding ()
    -
    webkit_web_view_load_request, webkit_web_view_load_request () +
    webkit_web_view_load_request, webkit_web_view_load_request ()
    -
    webkit_web_view_load_uri, webkit_web_view_load_uri () +
    webkit_web_view_load_uri, webkit_web_view_load_uri ()
    -
    webkit_web_view_set_custom_encoding, webkit_web_view_set_custom_encoding () +
    webkit_web_view_set_custom_encoding, webkit_web_view_set_custom_encoding ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.20.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.20.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.20.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.20.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.20 - +Index of new symbols in 1.1.20: WebKitGTK+ Reference Manual + - + @@ -22,14 +22,13 @@

    Index of new symbols in 1.1.20

    -
    +

    W

    -
    WebKitWebView:im-context, The “im-context” property +
    WebKitWebView:im-context, The “im-context” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.23.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.23.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.23.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.23.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.23 - +Index of new symbols in 1.1.23: WebKitGTK+ Reference Manual + - + @@ -22,31 +22,30 @@

    Index of new symbols in 1.1.23

    -
    +

    G

    -
    webkit_geolocation_policy_allow, webkit_geolocation_policy_allow () +
    webkit_geolocation_policy_allow, webkit_geolocation_policy_allow ()
    -
    webkit_geolocation_policy_deny, webkit_geolocation_policy_deny () +
    webkit_geolocation_policy_deny, webkit_geolocation_policy_deny ()

    W

    -
    WebKitWebSettings:enable-spatial-navigation, The “enable-spatial-navigation” property +
    WebKitWebSettings:enable-spatial-navigation, The “enable-spatial-navigation” property
    -
    WebKitWebView::geolocation-policy-decision-cancelled, The “geolocation-policy-decision-cancelled” signal +
    WebKitWebView::geolocation-policy-decision-cancelled, The “geolocation-policy-decision-cancelled” signal
    -
    WebKitWebView::geolocation-policy-decision-requested, The “geolocation-policy-decision-requested” signal +
    WebKitWebView::geolocation-policy-decision-requested, The “geolocation-policy-decision-requested” signal
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.2.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.2.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.2.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.2.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.2 - +Index of new symbols in 1.1.2: WebKitGTK+ Reference Manual + - + @@ -22,71 +22,70 @@

    Index of new symbols in 1.1.2

    -
    +

    D

    -
    WebKitDownload::error, The “error” signal +
    WebKitDownload::error, The “error” signal
    -
    WebKitDownload:current-size, The “current-size” property +
    WebKitDownload:current-size, The “current-size” property
    -
    WebKitDownload:destination-uri, The “destination-uri” property +
    WebKitDownload:destination-uri, The “destination-uri” property
    -
    WebKitDownload:network-request, The “network-request” property +
    WebKitDownload:network-request, The “network-request” property
    -
    WebKitDownload:progress, The “progress” property +
    WebKitDownload:progress, The “progress” property
    -
    WebKitDownload:status, The “status” property +
    WebKitDownload:status, The “status” property
    -
    WebKitDownload:suggested-filename, The “suggested-filename” property +
    WebKitDownload:suggested-filename, The “suggested-filename” property
    -
    WebKitDownload:total-size, The “total-size” property +
    WebKitDownload:total-size, The “total-size” property
    -
    webkit_download_cancel, webkit_download_cancel () +
    webkit_download_cancel, webkit_download_cancel ()
    -
    webkit_download_get_current_size, webkit_download_get_current_size () +
    webkit_download_get_current_size, webkit_download_get_current_size ()
    -
    webkit_download_get_destination_uri, webkit_download_get_destination_uri () +
    webkit_download_get_destination_uri, webkit_download_get_destination_uri ()
    -
    webkit_download_get_elapsed_time, webkit_download_get_elapsed_time () +
    webkit_download_get_elapsed_time, webkit_download_get_elapsed_time ()
    -
    webkit_download_get_network_request, webkit_download_get_network_request () +
    webkit_download_get_network_request, webkit_download_get_network_request ()
    -
    webkit_download_get_progress, webkit_download_get_progress () +
    webkit_download_get_progress, webkit_download_get_progress ()
    -
    webkit_download_get_status, webkit_download_get_status () +
    webkit_download_get_status, webkit_download_get_status ()
    -
    webkit_download_get_suggested_filename, webkit_download_get_suggested_filename () +
    webkit_download_get_suggested_filename, webkit_download_get_suggested_filename ()
    -
    webkit_download_get_total_size, webkit_download_get_total_size () +
    webkit_download_get_total_size, webkit_download_get_total_size ()
    -
    webkit_download_get_uri, webkit_download_get_uri () +
    webkit_download_get_uri, webkit_download_get_uri ()
    -
    webkit_download_new, webkit_download_new () +
    webkit_download_new, webkit_download_new ()
    -
    webkit_download_set_destination_uri, webkit_download_set_destination_uri () +
    webkit_download_set_destination_uri, webkit_download_set_destination_uri ()
    -
    webkit_download_start, webkit_download_start () +
    webkit_download_start, webkit_download_start ()

    W

    -
    WebKitWebSettings:enable-private-browsing, The “enable-private-browsing” property +
    WebKitWebSettings:enable-private-browsing, The “enable-private-browsing” property
    -
    WebKitWebView::download-requested, The “download-requested” signal +
    WebKitWebView::download-requested, The “download-requested” signal
    -
    WebKitWebView:custom-encoding, The “custom-encoding” property +
    WebKitWebView:custom-encoding, The “custom-encoding” property
    -
    WebKitWebView:encoding, The “encoding” property +
    WebKitWebView:encoding, The “encoding” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.3.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.3.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.3.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.3.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.3 - +Index of new symbols in 1.1.3: WebKitGTK+ Reference Manual + - + @@ -22,10 +22,9 @@

    Index of new symbols in 1.1.3

    -
    +
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.4.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.4.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.4.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.4.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.4 - +Index of new symbols in 1.1.4: WebKitGTK+ Reference Manual + - + @@ -22,28 +22,27 @@

    Index of new symbols in 1.1.4

    -
    +

    W

    -
    WebKitWebView::move-cursor, The “move-cursor” signal +
    WebKitWebView::move-cursor, The “move-cursor” signal
    -
    WebKitWebView::new-window-policy-decision-requested, The “new-window-policy-decision-requested” signal +
    WebKitWebView::new-window-policy-decision-requested, The “new-window-policy-decision-requested” signal
    -
    WebKitWebView:title, The “title” property +
    WebKitWebView:title, The “title” property
    -
    WebKitWebView:uri, The “uri” property +
    WebKitWebView:uri, The “uri” property
    -
    webkit_web_view_get_title, webkit_web_view_get_title () +
    webkit_web_view_get_title, webkit_web_view_get_title ()
    -
    webkit_web_view_get_uri, webkit_web_view_get_uri () +
    webkit_web_view_get_uri, webkit_web_view_get_uri ()
    -
    webkit_web_view_move_cursor, webkit_web_view_move_cursor () +
    webkit_web_view_move_cursor, webkit_web_view_move_cursor ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.5.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.5.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.5.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.5.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.5 - +Index of new symbols in 1.1.5: WebKitGTK+ Reference Manual + - + @@ -22,20 +22,19 @@

    Index of new symbols in 1.1.5

    -
    +

    W

    -
    WebKitWebView::print-requested, The “print-requested” signal +
    WebKitWebView::print-requested, The “print-requested” signal
    -
    webkit_web_frame_print, webkit_web_frame_print () +
    webkit_web_frame_print, webkit_web_frame_print ()
    -
    webkit_web_frame_print_full, webkit_web_frame_print_full () +
    webkit_web_frame_print_full, webkit_web_frame_print_full ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.6.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.6.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.6.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.6.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.6 - +Index of new symbols in 1.1.6: WebKitGTK+ Reference Manual + - + @@ -22,24 +22,23 @@

    Index of new symbols in 1.1.6

    -
    +

    W

    -
    WebKitWebSettings:enable-caret-browsing, The “enable-caret-browsing” property +
    WebKitWebSettings:enable-caret-browsing, The “enable-caret-browsing” property
    -
    WebKitWebSettings:enable-spell-checking, The “enable-spell-checking” property +
    WebKitWebSettings:enable-spell-checking, The “enable-spell-checking” property
    -
    WebKitWebSettings:spell-checking-languages, The “spell-checking-languages” property +
    WebKitWebSettings:spell-checking-languages, The “spell-checking-languages” property
    -
    WebKitWebView::load-error, The “load-error” signal +
    WebKitWebView::load-error, The “load-error” signal
    -
    webkit_web_frame_load_alternate_string, webkit_web_frame_load_alternate_string () +
    webkit_web_frame_load_alternate_string, webkit_web_frame_load_alternate_string ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.7.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.7.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.7.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.7.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.7 - +Index of new symbols in 1.1.7: WebKitGTK+ Reference Manual + - + @@ -22,26 +22,25 @@

    Index of new symbols in 1.1.7

    -
    +

    W

    -
    WebKitWebFrame:load-status, The “load-status” property +
    WebKitWebFrame:load-status, The “load-status” property
    -
    WebKitWebView:load-status, The “load-status” property +
    WebKitWebView:load-status, The “load-status” property
    -
    WebKitWebView:progress, The “progress” property +
    WebKitWebView:progress, The “progress” property
    -
    webkit_web_frame_get_load_status, webkit_web_frame_get_load_status () +
    webkit_web_frame_get_load_status, webkit_web_frame_get_load_status ()
    -
    webkit_web_view_get_load_status, webkit_web_view_get_load_status () +
    webkit_web_view_get_load_status, webkit_web_view_get_load_status ()
    -
    webkit_web_view_get_progress, webkit_web_view_get_progress () +
    webkit_web_view_get_progress, webkit_web_view_get_progress ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.8.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.8.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.1.8.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.1.8.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.1.8 - +Index of new symbols in 1.1.8: WebKitGTK+ Reference Manual + - + @@ -22,20 +22,19 @@

    Index of new symbols in 1.1.8

    -
    +

    W

    -
    WebKitWebSettings:enable-html5-database, The “enable-html5-database” property +
    WebKitWebSettings:enable-html5-database, The “enable-html5-database” property
    -
    WebKitWebSettings:enable-html5-local-storage, The “enable-html5-local-storage” property +
    WebKitWebSettings:enable-html5-local-storage, The “enable-html5-local-storage” property
    -
    WebKitWebView::create-plugin-widget, The “create-plugin-widget” signal +
    WebKitWebView::create-plugin-widget, The “create-plugin-widget” signal
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.1.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.1.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.1.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.1.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.3.1 - +Index of new symbols in 1.3.1: WebKitGTK+ Reference Manual + - + @@ -22,18 +22,17 @@

    Index of new symbols in 1.3.1

    -
    +

    W

    -
    webkit_web_back_forward_list_clear, webkit_web_back_forward_list_clear () +
    webkit_web_back_forward_list_clear, webkit_web_back_forward_list_clear ()
    -
    webkit_web_view_get_dom_document, webkit_web_view_get_dom_document () +
    webkit_web_view_get_dom_document, webkit_web_view_get_dom_document ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.2.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.2.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.2.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.2.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.3.2 - +Index of new symbols in 1.3.2: WebKitGTK+ Reference Manual + - + @@ -22,14 +22,13 @@

    Index of new symbols in 1.3.2

    -
    +

    H

    -
    WebKitHitTestResult:inner-node, The “inner-node” property +
    WebKitHitTestResult:inner-node, The “inner-node” property
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.3.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.3.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.3.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.3.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.3.3 - +Index of new symbols in 1.3.3: WebKitGTK+ Reference Manual + - + @@ -22,10 +22,9 @@

    Index of new symbols in 1.3.3

    -
    +
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.4.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.4.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.4.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.4.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.3.4 - +Index of new symbols in 1.3.4: WebKitGTK+ Reference Manual + - + @@ -22,22 +22,21 @@

    Index of new symbols in 1.3.4

    -
    +

    W

    -
    WebKitWebView::frame-created, The “frame-created” signal +
    WebKitWebView::frame-created, The “frame-created” signal
    -
    WebKitWebView:view-mode, The “view-mode” property +
    WebKitWebView:view-mode, The “view-mode” property
    -
    webkit_web_view_get_view_mode, webkit_web_view_get_view_mode () +
    webkit_web_view_get_view_mode, webkit_web_view_get_view_mode ()
    -
    webkit_web_view_set_view_mode, webkit_web_view_set_view_mode () +
    webkit_web_view_set_view_mode, webkit_web_view_set_view_mode ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.8.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.8.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-1.3.8.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-1.3.8.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of new symbols in 1.3.8 - +Index of new symbols in 1.3.8: WebKitGTK+ Reference Manual + - + @@ -22,50 +22,49 @@

    Index of new symbols in 1.3.8

    -
    +

    G

    -
    webkit_get_web_plugin_database, webkit_get_web_plugin_database () +
    webkit_get_web_plugin_database, webkit_get_web_plugin_database ()

    V

    -
    webkit_viewport_attributes_recompute, webkit_viewport_attributes_recompute () +
    webkit_viewport_attributes_recompute, webkit_viewport_attributes_recompute ()

    W

    -
    WebKitWebPluginMIMEType, WebKitWebPluginMIMEType +
    WebKitWebPluginMIMEType, WebKitWebPluginMIMEType
    -
    WebKitWebView:viewport-attributes, The “viewport-attributes” property +
    WebKitWebView:viewport-attributes, The “viewport-attributes” property
    -
    webkit_web_plugin_database_get_plugins, webkit_web_plugin_database_get_plugins () +
    webkit_web_plugin_database_get_plugins, webkit_web_plugin_database_get_plugins ()
    -
    webkit_web_plugin_database_get_plugin_for_mimetype, webkit_web_plugin_database_get_plugin_for_mimetype () +
    webkit_web_plugin_database_get_plugin_for_mimetype, webkit_web_plugin_database_get_plugin_for_mimetype ()
    -
    webkit_web_plugin_database_plugins_list_free, webkit_web_plugin_database_plugins_list_free () +
    webkit_web_plugin_database_plugins_list_free, webkit_web_plugin_database_plugins_list_free ()
    -
    webkit_web_plugin_database_refresh, webkit_web_plugin_database_refresh () +
    webkit_web_plugin_database_refresh, webkit_web_plugin_database_refresh ()
    -
    webkit_web_plugin_get_description, webkit_web_plugin_get_description () +
    webkit_web_plugin_get_description, webkit_web_plugin_get_description ()
    -
    webkit_web_plugin_get_enabled, webkit_web_plugin_get_enabled () +
    webkit_web_plugin_get_enabled, webkit_web_plugin_get_enabled ()
    -
    webkit_web_plugin_get_mimetypes, webkit_web_plugin_get_mimetypes () +
    webkit_web_plugin_get_mimetypes, webkit_web_plugin_get_mimetypes ()
    -
    webkit_web_plugin_get_name, webkit_web_plugin_get_name () +
    webkit_web_plugin_get_name, webkit_web_plugin_get_name ()
    -
    webkit_web_plugin_set_enabled, webkit_web_plugin_set_enabled () +
    webkit_web_plugin_set_enabled, webkit_web_plugin_set_enabled ()
    -
    webkit_web_view_get_viewport_attributes, webkit_web_view_get_viewport_attributes () +
    webkit_web_view_get_viewport_attributes, webkit_web_view_get_viewport_attributes ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-all.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-all.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-all.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-all.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index - +Index: WebKitGTK+ Reference Manual + - + @@ -22,1165 +22,1164 @@

    Index

    -
    +

    A

    -
    webkit_application_cache_get_database_directory_path, webkit_application_cache_get_database_directory_path () +
    webkit_application_cache_get_database_directory_path, webkit_application_cache_get_database_directory_path ()
    -
    webkit_application_cache_get_maximum_size, webkit_application_cache_get_maximum_size () +
    webkit_application_cache_get_maximum_size, webkit_application_cache_get_maximum_size ()
    -
    webkit_application_cache_set_maximum_size, webkit_application_cache_set_maximum_size () +
    webkit_application_cache_set_maximum_size, webkit_application_cache_set_maximum_size ()

    C

    -
    WebKitCacheModel, enum WebKitCacheModel +
    WebKitCacheModel, enum WebKitCacheModel
    -
    WebKitContextMenuAction, enum WebKitContextMenuAction +
    WebKitContextMenuAction, enum WebKitContextMenuAction
    -
    webkit_context_menu_item_get_action, webkit_context_menu_item_get_action () +
    webkit_context_menu_item_get_action, webkit_context_menu_item_get_action ()

    D

    -
    WebKitDownload, WebKitDownload +
    WebKitDownload, WebKitDownload
    -
    WebKitDownload::error, The “error” signal +
    WebKitDownload::error, The “error” signal
    -
    WebKitDownload:current-size, The “current-size” property +
    WebKitDownload:current-size, The “current-size” property
    -
    WebKitDownload:destination-uri, The “destination-uri” property +
    WebKitDownload:destination-uri, The “destination-uri” property
    -
    WebKitDownload:network-request, The “network-request” property +
    WebKitDownload:network-request, The “network-request” property
    -
    WebKitDownload:network-response, The “network-response” property +
    WebKitDownload:network-response, The “network-response” property
    -
    WebKitDownload:progress, The “progress” property +
    WebKitDownload:progress, The “progress” property
    -
    WebKitDownload:status, The “status” property +
    WebKitDownload:status, The “status” property
    -
    WebKitDownload:suggested-filename, The “suggested-filename” property +
    WebKitDownload:suggested-filename, The “suggested-filename” property
    -
    WebKitDownload:total-size, The “total-size” property +
    WebKitDownload:total-size, The “total-size” property
    -
    WebKitDownloadError, enum WebKitDownloadError +
    WebKitDownloadError, enum WebKitDownloadError
    -
    WebKitDownloadStatus, enum WebKitDownloadStatus +
    WebKitDownloadStatus, enum WebKitDownloadStatus
    -
    webkit_download_cancel, webkit_download_cancel () +
    webkit_download_cancel, webkit_download_cancel ()
    -
    webkit_download_get_current_size, webkit_download_get_current_size () +
    webkit_download_get_current_size, webkit_download_get_current_size ()
    -
    webkit_download_get_destination_uri, webkit_download_get_destination_uri () +
    webkit_download_get_destination_uri, webkit_download_get_destination_uri ()
    -
    webkit_download_get_elapsed_time, webkit_download_get_elapsed_time () +
    webkit_download_get_elapsed_time, webkit_download_get_elapsed_time ()
    -
    webkit_download_get_network_request, webkit_download_get_network_request () +
    webkit_download_get_network_request, webkit_download_get_network_request ()
    -
    webkit_download_get_network_response, webkit_download_get_network_response () +
    webkit_download_get_network_response, webkit_download_get_network_response ()
    -
    webkit_download_get_progress, webkit_download_get_progress () +
    webkit_download_get_progress, webkit_download_get_progress ()
    -
    webkit_download_get_status, webkit_download_get_status () +
    webkit_download_get_status, webkit_download_get_status ()
    -
    webkit_download_get_suggested_filename, webkit_download_get_suggested_filename () +
    webkit_download_get_suggested_filename, webkit_download_get_suggested_filename ()
    -
    webkit_download_get_total_size, webkit_download_get_total_size () +
    webkit_download_get_total_size, webkit_download_get_total_size ()
    -
    webkit_download_get_uri, webkit_download_get_uri () +
    webkit_download_get_uri, webkit_download_get_uri ()
    -
    webkit_download_new, webkit_download_new () +
    webkit_download_new, webkit_download_new ()
    -
    webkit_download_set_destination_uri, webkit_download_set_destination_uri () +
    webkit_download_set_destination_uri, webkit_download_set_destination_uri ()
    -
    webkit_download_start, webkit_download_start () +
    webkit_download_start, webkit_download_start ()

    E

    -
    WebKitEditingBehavior, enum WebKitEditingBehavior +
    WebKitEditingBehavior, enum WebKitEditingBehavior

    F

    -
    WebKitFaviconDatabase, WebKitFaviconDatabase +
    WebKitFaviconDatabase, WebKitFaviconDatabase
    -
    WebKitFaviconDatabase::icon-loaded, The “icon-loaded” signal +
    WebKitFaviconDatabase::icon-loaded, The “icon-loaded” signal
    -
    WebKitFaviconDatabase:path, The “path” property +
    WebKitFaviconDatabase:path, The “path” property
    -
    webkit_favicon_database_clear, webkit_favicon_database_clear () +
    webkit_favicon_database_clear, webkit_favicon_database_clear ()
    -
    webkit_favicon_database_get_favicon_pixbuf, webkit_favicon_database_get_favicon_pixbuf () +
    webkit_favicon_database_get_favicon_pixbuf, webkit_favicon_database_get_favicon_pixbuf ()
    -
    webkit_favicon_database_get_favicon_pixbuf_finish, webkit_favicon_database_get_favicon_pixbuf_finish () +
    webkit_favicon_database_get_favicon_pixbuf_finish, webkit_favicon_database_get_favicon_pixbuf_finish ()
    -
    webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri () +
    webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri ()
    -
    webkit_favicon_database_get_path, webkit_favicon_database_get_path () +
    webkit_favicon_database_get_path, webkit_favicon_database_get_path ()
    -
    webkit_favicon_database_get_type, webkit_favicon_database_get_type () +
    webkit_favicon_database_get_type, webkit_favicon_database_get_type ()
    -
    webkit_favicon_database_set_path, webkit_favicon_database_set_path () +
    webkit_favicon_database_set_path, webkit_favicon_database_set_path ()
    -
    webkit_favicon_database_try_get_favicon_pixbuf, webkit_favicon_database_try_get_favicon_pixbuf () +
    webkit_favicon_database_try_get_favicon_pixbuf, webkit_favicon_database_try_get_favicon_pixbuf ()
    -
    WebKitFileChooserRequest, struct WebKitFileChooserRequest +
    WebKitFileChooserRequest, struct WebKitFileChooserRequest
    -
    WebKitFileChooserRequest:filter, The “filter” property +
    WebKitFileChooserRequest:filter, The “filter” property
    -
    WebKitFileChooserRequest:mime-types, The “mime-types” property +
    WebKitFileChooserRequest:mime-types, The “mime-types” property
    -
    WebKitFileChooserRequest:select-multiple, The “select-multiple” property +
    WebKitFileChooserRequest:select-multiple, The “select-multiple” property
    -
    WebKitFileChooserRequest:selected-files, The “selected-files” property +
    WebKitFileChooserRequest:selected-files, The “selected-files” property
    -
    webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types () +
    webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types ()
    -
    webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter () +
    webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter ()
    -
    webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files () +
    webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files ()
    -
    webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple () +
    webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple ()
    -
    webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files () +
    webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files ()

    G

    -
    WebKitGeolocationPolicyDecision, WebKitGeolocationPolicyDecision +
    WebKitGeolocationPolicyDecision, WebKitGeolocationPolicyDecision
    -
    webkit_geolocation_policy_allow, webkit_geolocation_policy_allow () +
    webkit_geolocation_policy_allow, webkit_geolocation_policy_allow ()
    -
    webkit_geolocation_policy_deny, webkit_geolocation_policy_deny () +
    webkit_geolocation_policy_deny, webkit_geolocation_policy_deny ()
    -
    webkit_get_cache_model, webkit_get_cache_model () +
    webkit_get_cache_model, webkit_get_cache_model ()
    -
    webkit_get_default_session, webkit_get_default_session () +
    webkit_get_default_session, webkit_get_default_session ()
    -
    webkit_get_default_web_database_quota, webkit_get_default_web_database_quota () +
    webkit_get_default_web_database_quota, webkit_get_default_web_database_quota ()
    -
    webkit_get_favicon_database, webkit_get_favicon_database () +
    webkit_get_favicon_database, webkit_get_favicon_database ()
    -
    webkit_get_icon_database, webkit_get_icon_database (), webkit_get_icon_database () +
    webkit_get_icon_database, webkit_get_icon_database (), webkit_get_icon_database ()
    -
    webkit_get_security_policy_for_uri_scheme, webkit_get_security_policy_for_uri_scheme () +
    webkit_get_security_policy_for_uri_scheme, webkit_get_security_policy_for_uri_scheme ()
    -
    webkit_get_text_checker, webkit_get_text_checker () +
    webkit_get_text_checker, webkit_get_text_checker ()
    -
    webkit_get_web_database_directory_path, webkit_get_web_database_directory_path () +
    webkit_get_web_database_directory_path, webkit_get_web_database_directory_path ()
    -
    webkit_get_web_plugin_database, webkit_get_web_plugin_database () +
    webkit_get_web_plugin_database, webkit_get_web_plugin_database ()

    H

    -
    WebKitHitTestResult, WebKitHitTestResult +
    WebKitHitTestResult, WebKitHitTestResult
    -
    WebKitHitTestResult:context, The “context” property +
    WebKitHitTestResult:context, The “context” property
    -
    WebKitHitTestResult:image-uri, The “image-uri” property +
    WebKitHitTestResult:image-uri, The “image-uri” property
    -
    WebKitHitTestResult:inner-node, The “inner-node” property +
    WebKitHitTestResult:inner-node, The “inner-node” property
    -
    WebKitHitTestResult:link-uri, The “link-uri” property +
    WebKitHitTestResult:link-uri, The “link-uri” property
    -
    WebKitHitTestResult:media-uri, The “media-uri” property +
    WebKitHitTestResult:media-uri, The “media-uri” property
    -
    WebKitHitTestResult:x, The “x” property +
    WebKitHitTestResult:x, The “x” property
    -
    WebKitHitTestResult:y, The “y” property +
    WebKitHitTestResult:y, The “y” property
    -
    WebKitHitTestResultContext, enum WebKitHitTestResultContext +
    WebKitHitTestResultContext, enum WebKitHitTestResultContext

    I

    -
    WebKitIconDatabase, WebKitIconDatabase +
    WebKitIconDatabase, WebKitIconDatabase
    -
    WebKitIconDatabase::icon-loaded, The “icon-loaded” signal, The “icon-loaded” signal +
    WebKitIconDatabase::icon-loaded, The “icon-loaded” signal, The “icon-loaded” signal
    -
    WebKitIconDatabase:path, The “path” property, The “path” property +
    WebKitIconDatabase:path, The “path” property, The “path” property
    -
    webkit_icon_database_clear, webkit_icon_database_clear (), webkit_icon_database_clear () +
    webkit_icon_database_clear, webkit_icon_database_clear (), webkit_icon_database_clear ()
    -
    webkit_icon_database_get_icon_pixbuf, webkit_icon_database_get_icon_pixbuf (), webkit_icon_database_get_icon_pixbuf () +
    webkit_icon_database_get_icon_pixbuf, webkit_icon_database_get_icon_pixbuf (), webkit_icon_database_get_icon_pixbuf ()
    -
    webkit_icon_database_get_icon_uri, webkit_icon_database_get_icon_uri (), webkit_icon_database_get_icon_uri () +
    webkit_icon_database_get_icon_uri, webkit_icon_database_get_icon_uri (), webkit_icon_database_get_icon_uri ()
    -
    webkit_icon_database_get_path, webkit_icon_database_get_path (), webkit_icon_database_get_path () +
    webkit_icon_database_get_path, webkit_icon_database_get_path (), webkit_icon_database_get_path ()
    -
    webkit_icon_database_get_type, webkit_icon_database_get_type () +
    webkit_icon_database_get_type, webkit_icon_database_get_type ()
    -
    webkit_icon_database_set_path, webkit_icon_database_set_path (), webkit_icon_database_set_path () +
    webkit_icon_database_set_path, webkit_icon_database_set_path (), webkit_icon_database_set_path ()

    L

    -
    WebKitLoadStatus, enum WebKitLoadStatus +
    WebKitLoadStatus, enum WebKitLoadStatus

    N

    -
    WebKitNavigationResponse, enum WebKitNavigationResponse +
    WebKitNavigationResponse, enum WebKitNavigationResponse
    -
    WebKitNetworkRequest, WebKitNetworkRequest +
    WebKitNetworkRequest, WebKitNetworkRequest
    -
    WebKitNetworkRequest:message, The “message” property +
    WebKitNetworkRequest:message, The “message” property
    -
    WebKitNetworkRequest:uri, The “uri” property +
    WebKitNetworkRequest:uri, The “uri” property
    -
    WebKitNetworkResponse, WebKitNetworkResponse +
    WebKitNetworkResponse, WebKitNetworkResponse
    -
    WebKitNetworkResponse:message, The “message” property +
    WebKitNetworkResponse:message, The “message” property
    -
    WebKitNetworkResponse:suggested-filename, The “suggested-filename” property +
    WebKitNetworkResponse:suggested-filename, The “suggested-filename” property
    -
    WebKitNetworkResponse:uri, The “uri” property +
    WebKitNetworkResponse:uri, The “uri” property
    -
    webkit_network_request_get_message, webkit_network_request_get_message () +
    webkit_network_request_get_message, webkit_network_request_get_message ()
    -
    webkit_network_request_get_uri, webkit_network_request_get_uri () +
    webkit_network_request_get_uri, webkit_network_request_get_uri ()
    -
    webkit_network_request_new, webkit_network_request_new () +
    webkit_network_request_new, webkit_network_request_new ()
    -
    webkit_network_request_set_uri, webkit_network_request_set_uri () +
    webkit_network_request_set_uri, webkit_network_request_set_uri ()
    -
    webkit_network_response_get_message, webkit_network_response_get_message () +
    webkit_network_response_get_message, webkit_network_response_get_message ()
    -
    webkit_network_response_get_suggested_filename, webkit_network_response_get_suggested_filename () +
    webkit_network_response_get_suggested_filename, webkit_network_response_get_suggested_filename ()
    -
    webkit_network_response_get_uri, webkit_network_response_get_uri () +
    webkit_network_response_get_uri, webkit_network_response_get_uri ()
    -
    webkit_network_response_set_uri, webkit_network_response_set_uri () +
    webkit_network_response_set_uri, webkit_network_response_set_uri ()

    R

    -
    webkit_remove_all_web_databases, webkit_remove_all_web_databases () +
    webkit_remove_all_web_databases, webkit_remove_all_web_databases ()

    S

    -
    WebKitSecurityOrigin, WebKitSecurityOrigin +
    WebKitSecurityOrigin, WebKitSecurityOrigin
    -
    WebKitSecurityOrigin:host, The “host” property +
    WebKitSecurityOrigin:host, The “host” property
    -
    WebKitSecurityOrigin:port, The “port” property +
    WebKitSecurityOrigin:port, The “port” property
    -
    WebKitSecurityOrigin:protocol, The “protocol” property +
    WebKitSecurityOrigin:protocol, The “protocol” property
    -
    WebKitSecurityOrigin:web-database-quota, The “web-database-quota” property +
    WebKitSecurityOrigin:web-database-quota, The “web-database-quota” property
    -
    WebKitSecurityOrigin:web-database-usage, The “web-database-usage” property +
    WebKitSecurityOrigin:web-database-usage, The “web-database-usage” property
    -
    WebKitSecurityPolicy, enum WebKitSecurityPolicy +
    WebKitSecurityPolicy, enum WebKitSecurityPolicy
    -
    webkit_security_origin_get_all_web_databases, webkit_security_origin_get_all_web_databases () +
    webkit_security_origin_get_all_web_databases, webkit_security_origin_get_all_web_databases ()
    -
    webkit_security_origin_get_host, webkit_security_origin_get_host () +
    webkit_security_origin_get_host, webkit_security_origin_get_host ()
    -
    webkit_security_origin_get_port, webkit_security_origin_get_port () +
    webkit_security_origin_get_port, webkit_security_origin_get_port ()
    -
    webkit_security_origin_get_protocol, webkit_security_origin_get_protocol () +
    webkit_security_origin_get_protocol, webkit_security_origin_get_protocol ()
    -
    webkit_security_origin_get_type, webkit_security_origin_get_type () +
    webkit_security_origin_get_type, webkit_security_origin_get_type ()
    -
    webkit_security_origin_get_web_database_quota, webkit_security_origin_get_web_database_quota () +
    webkit_security_origin_get_web_database_quota, webkit_security_origin_get_web_database_quota ()
    -
    webkit_security_origin_get_web_database_usage, webkit_security_origin_get_web_database_usage () +
    webkit_security_origin_get_web_database_usage, webkit_security_origin_get_web_database_usage ()
    -
    webkit_security_origin_set_web_database_quota, webkit_security_origin_set_web_database_quota () +
    webkit_security_origin_set_web_database_quota, webkit_security_origin_set_web_database_quota ()
    -
    webkit_set_cache_model, webkit_set_cache_model () +
    webkit_set_cache_model, webkit_set_cache_model ()
    -
    webkit_set_default_web_database_quota, webkit_set_default_web_database_quota () +
    webkit_set_default_web_database_quota, webkit_set_default_web_database_quota ()
    -
    webkit_set_security_policy_for_uri_scheme, webkit_set_security_policy_for_uri_scheme () +
    webkit_set_security_policy_for_uri_scheme, webkit_set_security_policy_for_uri_scheme ()
    -
    webkit_set_text_checker, webkit_set_text_checker () +
    webkit_set_text_checker, webkit_set_text_checker ()
    -
    webkit_set_web_database_directory_path, webkit_set_web_database_directory_path () +
    webkit_set_web_database_directory_path, webkit_set_web_database_directory_path ()
    -
    WebKitSoupAuthDialog, WebKitSoupAuthDialog +
    WebKitSoupAuthDialog, WebKitSoupAuthDialog
    -
    WebKitSoupAuthDialog::current-toplevel, The “current-toplevel” signal +
    WebKitSoupAuthDialog::current-toplevel, The “current-toplevel” signal
    -
    WebKitSpellChecker, WebKitSpellChecker +
    WebKitSpellChecker, WebKitSpellChecker
    -
    webkit_spell_checker_check_spelling_of_string, webkit_spell_checker_check_spelling_of_string () +
    webkit_spell_checker_check_spelling_of_string, webkit_spell_checker_check_spelling_of_string ()
    -
    webkit_spell_checker_get_autocorrect_suggestions_for_misspelled_word, webkit_spell_checker_get_autocorrect_suggestions_for_misspelled_word () +
    webkit_spell_checker_get_autocorrect_suggestions_for_misspelled_word, webkit_spell_checker_get_autocorrect_suggestions_for_misspelled_word ()
    -
    webkit_spell_checker_get_guesses_for_word, webkit_spell_checker_get_guesses_for_word () +
    webkit_spell_checker_get_guesses_for_word, webkit_spell_checker_get_guesses_for_word ()
    -
    webkit_spell_checker_ignore_word, webkit_spell_checker_ignore_word () +
    webkit_spell_checker_ignore_word, webkit_spell_checker_ignore_word ()
    -
    webkit_spell_checker_learn_word, webkit_spell_checker_learn_word () +
    webkit_spell_checker_learn_word, webkit_spell_checker_learn_word ()
    -
    webkit_spell_checker_update_spell_checking_languages, webkit_spell_checker_update_spell_checking_languages () +
    webkit_spell_checker_update_spell_checking_languages, webkit_spell_checker_update_spell_checking_languages ()

    V

    -
    WebKitViewportAttributes, WebKitViewportAttributes +
    WebKitViewportAttributes, WebKitViewportAttributes
    -
    WebKitViewportAttributes:available-height, The “available-height” property +
    WebKitViewportAttributes:available-height, The “available-height” property
    -
    WebKitViewportAttributes:available-width, The “available-width” property +
    WebKitViewportAttributes:available-width, The “available-width” property
    -
    WebKitViewportAttributes:desktop-width, The “desktop-width” property +
    WebKitViewportAttributes:desktop-width, The “desktop-width” property
    -
    WebKitViewportAttributes:device-dpi, The “device-dpi” property +
    WebKitViewportAttributes:device-dpi, The “device-dpi” property
    -
    WebKitViewportAttributes:device-height, The “device-height” property +
    WebKitViewportAttributes:device-height, The “device-height” property
    -
    WebKitViewportAttributes:device-pixel-ratio, The “device-pixel-ratio” property +
    WebKitViewportAttributes:device-pixel-ratio, The “device-pixel-ratio” property
    -
    WebKitViewportAttributes:device-width, The “device-width” property +
    WebKitViewportAttributes:device-width, The “device-width” property
    -
    WebKitViewportAttributes:height, The “height” property +
    WebKitViewportAttributes:height, The “height” property
    -
    WebKitViewportAttributes:initial-scale-factor, The “initial-scale-factor” property +
    WebKitViewportAttributes:initial-scale-factor, The “initial-scale-factor” property
    -
    WebKitViewportAttributes:maximum-scale-factor, The “maximum-scale-factor” property +
    WebKitViewportAttributes:maximum-scale-factor, The “maximum-scale-factor” property
    -
    WebKitViewportAttributes:minimum-scale-factor, The “minimum-scale-factor” property +
    WebKitViewportAttributes:minimum-scale-factor, The “minimum-scale-factor” property
    -
    WebKitViewportAttributes:user-scalable, The “user-scalable” property +
    WebKitViewportAttributes:user-scalable, The “user-scalable” property
    -
    WebKitViewportAttributes:valid, The “valid” property +
    WebKitViewportAttributes:valid, The “valid” property
    -
    WebKitViewportAttributes:width, The “width” property +
    WebKitViewportAttributes:width, The “width” property
    -
    webkit_viewport_attributes_recompute, webkit_viewport_attributes_recompute () +
    webkit_viewport_attributes_recompute, webkit_viewport_attributes_recompute ()

    W

    -
    WebKitWebBackForwardList, WebKitWebBackForwardList +
    WebKitWebBackForwardList, WebKitWebBackForwardList
    -
    WebKitWebDatabase, WebKitWebDatabase +
    WebKitWebDatabase, WebKitWebDatabase
    -
    WebKitWebDatabase:display-name, The “display-name” property +
    WebKitWebDatabase:display-name, The “display-name” property
    -
    WebKitWebDatabase:expected-size, The “expected-size” property +
    WebKitWebDatabase:expected-size, The “expected-size” property
    -
    WebKitWebDatabase:filename, The “filename” property +
    WebKitWebDatabase:filename, The “filename” property
    -
    WebKitWebDatabase:name, The “name” property +
    WebKitWebDatabase:name, The “name” property
    -
    WebKitWebDatabase:security-origin, The “security-origin” property +
    WebKitWebDatabase:security-origin, The “security-origin” property
    -
    WebKitWebDatabase:size, The “size” property +
    WebKitWebDatabase:size, The “size” property
    -
    WebKitWebDataSource, WebKitWebDataSource +
    WebKitWebDataSource, WebKitWebDataSource
    -
    WebKitWebFrame, WebKitWebFrame +
    WebKitWebFrame, WebKitWebFrame
    -
    WebKitWebFrame::cleared, The “cleared” signal +
    WebKitWebFrame::cleared, The “cleared” signal
    -
    WebKitWebFrame::hovering-over-link, The “hovering-over-link” signal +
    WebKitWebFrame::hovering-over-link, The “hovering-over-link” signal
    -
    WebKitWebFrame::insecure-content-run, The “insecure-content-run” signal +
    WebKitWebFrame::insecure-content-run, The “insecure-content-run” signal
    -
    WebKitWebFrame::load-committed, The “load-committed” signal +
    WebKitWebFrame::load-committed, The “load-committed” signal
    -
    WebKitWebFrame::resource-content-length-received, The “resource-content-length-received” signal +
    WebKitWebFrame::resource-content-length-received, The “resource-content-length-received” signal
    -
    WebKitWebFrame::resource-load-failed, The “resource-load-failed” signal +
    WebKitWebFrame::resource-load-failed, The “resource-load-failed” signal
    -
    WebKitWebFrame::resource-load-finished, The “resource-load-finished” signal +
    WebKitWebFrame::resource-load-finished, The “resource-load-finished” signal
    -
    WebKitWebFrame::resource-request-starting, The “resource-request-starting” signal +
    WebKitWebFrame::resource-request-starting, The “resource-request-starting” signal
    -
    WebKitWebFrame::resource-response-received, The “resource-response-received” signal +
    WebKitWebFrame::resource-response-received, The “resource-response-received” signal
    -
    WebKitWebFrame::scrollbars-policy-changed, The “scrollbars-policy-changed” signal +
    WebKitWebFrame::scrollbars-policy-changed, The “scrollbars-policy-changed” signal
    -
    WebKitWebFrame::title-changed, The “title-changed” signal +
    WebKitWebFrame::title-changed, The “title-changed” signal
    -
    WebKitWebFrame:horizontal-scrollbar-policy, The “horizontal-scrollbar-policy” property +
    WebKitWebFrame:horizontal-scrollbar-policy, The “horizontal-scrollbar-policy” property
    -
    WebKitWebFrame:load-status, The “load-status” property +
    WebKitWebFrame:load-status, The “load-status” property
    -
    WebKitWebFrame:name, The “name” property +
    WebKitWebFrame:name, The “name” property
    -
    WebKitWebFrame:title, The “title” property +
    WebKitWebFrame:title, The “title” property
    -
    WebKitWebFrame:uri, The “uri” property +
    WebKitWebFrame:uri, The “uri” property
    -
    WebKitWebFrame:vertical-scrollbar-policy, The “vertical-scrollbar-policy” property +
    WebKitWebFrame:vertical-scrollbar-policy, The “vertical-scrollbar-policy” property
    -
    WebKitWebHistoryItem, WebKitWebHistoryItem +
    WebKitWebHistoryItem, WebKitWebHistoryItem
    -
    WebKitWebHistoryItem:alternate-title, The “alternate-title” property +
    WebKitWebHistoryItem:alternate-title, The “alternate-title” property
    -
    WebKitWebHistoryItem:last-visited-time, The “last-visited-time” property +
    WebKitWebHistoryItem:last-visited-time, The “last-visited-time” property
    -
    WebKitWebHistoryItem:original-uri, The “original-uri” property +
    WebKitWebHistoryItem:original-uri, The “original-uri” property
    -
    WebKitWebHistoryItem:title, The “title” property +
    WebKitWebHistoryItem:title, The “title” property
    -
    WebKitWebHistoryItem:uri, The “uri” property +
    WebKitWebHistoryItem:uri, The “uri” property
    -
    WebKitWebInspector, WebKitWebInspector +
    WebKitWebInspector, WebKitWebInspector
    -
    WebKitWebInspector::attach-window, The “attach-window” signal +
    WebKitWebInspector::attach-window, The “attach-window” signal
    -
    WebKitWebInspector::close-window, The “close-window” signal +
    WebKitWebInspector::close-window, The “close-window” signal
    -
    WebKitWebInspector::detach-window, The “detach-window” signal +
    WebKitWebInspector::detach-window, The “detach-window” signal
    -
    WebKitWebInspector::finished, The “finished” signal +
    WebKitWebInspector::finished, The “finished” signal
    -
    WebKitWebInspector::inspect-web-view, The “inspect-web-view” signal +
    WebKitWebInspector::inspect-web-view, The “inspect-web-view” signal
    -
    WebKitWebInspector::show-window, The “show-window” signal +
    WebKitWebInspector::show-window, The “show-window” signal
    -
    WebKitWebInspector:inspected-uri, The “inspected-uri” property +
    WebKitWebInspector:inspected-uri, The “inspected-uri” property
    -
    WebKitWebInspector:javascript-profiling-enabled, The “javascript-profiling-enabled” property +
    WebKitWebInspector:javascript-profiling-enabled, The “javascript-profiling-enabled” property
    -
    WebKitWebInspector:timeline-profiling-enabled, The “timeline-profiling-enabled” property +
    WebKitWebInspector:timeline-profiling-enabled, The “timeline-profiling-enabled” property
    -
    WebKitWebInspector:web-view, The “web-view” property +
    WebKitWebInspector:web-view, The “web-view” property
    -
    WebKitWebNavigationAction, struct WebKitWebNavigationAction +
    WebKitWebNavigationAction, struct WebKitWebNavigationAction
    -
    WebKitWebNavigationAction:button, The “button” property +
    WebKitWebNavigationAction:button, The “button” property
    -
    WebKitWebNavigationAction:modifier-state, The “modifier-state” property +
    WebKitWebNavigationAction:modifier-state, The “modifier-state” property
    -
    WebKitWebNavigationAction:original-uri, The “original-uri” property +
    WebKitWebNavigationAction:original-uri, The “original-uri” property
    -
    WebKitWebNavigationAction:reason, The “reason” property +
    WebKitWebNavigationAction:reason, The “reason” property
    -
    WebKitWebNavigationAction:target-frame, The “target-frame” property +
    WebKitWebNavigationAction:target-frame, The “target-frame” property
    -
    WebKitWebNavigationReason, enum WebKitWebNavigationReason +
    WebKitWebNavigationReason, enum WebKitWebNavigationReason
    -
    WebKitWebPlugin, WebKitWebPlugin +
    WebKitWebPlugin, WebKitWebPlugin
    -
    WebKitWebPlugin:enabled, The “enabled” property +
    WebKitWebPlugin:enabled, The “enabled” property
    -
    WebKitWebPluginDatabase, WebKitWebPluginDatabase +
    WebKitWebPluginDatabase, WebKitWebPluginDatabase
    -
    WebKitWebPluginMIMEType, WebKitWebPluginMIMEType +
    WebKitWebPluginMIMEType, WebKitWebPluginMIMEType
    -
    WebKitWebPolicyDecision, WebKitWebPolicyDecision +
    WebKitWebPolicyDecision, WebKitWebPolicyDecision
    -
    WebKitWebResource, WebKitWebResource +
    WebKitWebResource, WebKitWebResource
    -
    WebKitWebResource::content-length-received, The “content-length-received” signal +
    WebKitWebResource::content-length-received, The “content-length-received” signal
    -
    WebKitWebResource::load-failed, The “load-failed” signal +
    WebKitWebResource::load-failed, The “load-failed” signal
    -
    WebKitWebResource::load-finished, The “load-finished” signal +
    WebKitWebResource::load-finished, The “load-finished” signal
    -
    WebKitWebResource::response-received, The “response-received” signal +
    WebKitWebResource::response-received, The “response-received” signal
    -
    WebKitWebResource:encoding, The “encoding” property +
    WebKitWebResource:encoding, The “encoding” property
    -
    WebKitWebResource:frame-name, The “frame-name” property +
    WebKitWebResource:frame-name, The “frame-name” property
    -
    WebKitWebResource:mime-type, The “mime-type” property +
    WebKitWebResource:mime-type, The “mime-type” property
    -
    WebKitWebResource:uri, The “uri” property +
    WebKitWebResource:uri, The “uri” property
    -
    WebKitWebSettings, WebKitWebSettings +
    WebKitWebSettings, WebKitWebSettings
    -
    WebKitWebSettings:auto-load-images, The “auto-load-images” property +
    WebKitWebSettings:auto-load-images, The “auto-load-images” property
    -
    WebKitWebSettings:auto-resize-window, The “auto-resize-window” property +
    WebKitWebSettings:auto-resize-window, The “auto-resize-window” property
    -
    WebKitWebSettings:auto-shrink-images, The “auto-shrink-images” property +
    WebKitWebSettings:auto-shrink-images, The “auto-shrink-images” property
    -
    WebKitWebSettings:cursive-font-family, The “cursive-font-family” property +
    WebKitWebSettings:cursive-font-family, The “cursive-font-family” property
    -
    WebKitWebSettings:default-encoding, The “default-encoding” property +
    WebKitWebSettings:default-encoding, The “default-encoding” property
    -
    WebKitWebSettings:default-font-family, The “default-font-family” property +
    WebKitWebSettings:default-font-family, The “default-font-family” property
    -
    WebKitWebSettings:default-font-size, The “default-font-size” property +
    WebKitWebSettings:default-font-size, The “default-font-size” property
    -
    WebKitWebSettings:default-monospace-font-size, The “default-monospace-font-size” property +
    WebKitWebSettings:default-monospace-font-size, The “default-monospace-font-size” property
    -
    WebKitWebSettings:editing-behavior, The “editing-behavior” property +
    WebKitWebSettings:editing-behavior, The “editing-behavior” property
    -
    WebKitWebSettings:enable-accelerated-compositing, The “enable-accelerated-compositing” property +
    WebKitWebSettings:enable-accelerated-compositing, The “enable-accelerated-compositing” property
    -
    WebKitWebSettings:enable-caret-browsing, The “enable-caret-browsing” property +
    WebKitWebSettings:enable-caret-browsing, The “enable-caret-browsing” property
    -
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property, The “enable-default-context-menu” property +
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property, The “enable-default-context-menu” property
    -
    WebKitWebSettings:enable-developer-extras, The “enable-developer-extras” property +
    WebKitWebSettings:enable-developer-extras, The “enable-developer-extras” property
    -
    WebKitWebSettings:enable-display-of-insecure-content, The “enable-display-of-insecure-content” property +
    WebKitWebSettings:enable-display-of-insecure-content, The “enable-display-of-insecure-content” property
    -
    WebKitWebSettings:enable-dns-prefetching, The “enable-dns-prefetching” property +
    WebKitWebSettings:enable-dns-prefetching, The “enable-dns-prefetching” property
    -
    WebKitWebSettings:enable-dom-paste, The “enable-dom-paste” property +
    WebKitWebSettings:enable-dom-paste, The “enable-dom-paste” property
    -
    WebKitWebSettings:enable-file-access-from-file-uris, The “enable-file-access-from-file-uris” property +
    WebKitWebSettings:enable-file-access-from-file-uris, The “enable-file-access-from-file-uris” property
    -
    WebKitWebSettings:enable-frame-flattening, The “enable-frame-flattening” property +
    WebKitWebSettings:enable-frame-flattening, The “enable-frame-flattening” property
    -
    WebKitWebSettings:enable-fullscreen, The “enable-fullscreen” property +
    WebKitWebSettings:enable-fullscreen, The “enable-fullscreen” property
    -
    WebKitWebSettings:enable-html5-database, The “enable-html5-database” property +
    WebKitWebSettings:enable-html5-database, The “enable-html5-database” property
    -
    WebKitWebSettings:enable-html5-local-storage, The “enable-html5-local-storage” property +
    WebKitWebSettings:enable-html5-local-storage, The “enable-html5-local-storage” property
    -
    WebKitWebSettings:enable-hyperlink-auditing, The “enable-hyperlink-auditing” property +
    WebKitWebSettings:enable-hyperlink-auditing, The “enable-hyperlink-auditing” property
    -
    WebKitWebSettings:enable-java-applet, The “enable-java-applet” property +
    WebKitWebSettings:enable-java-applet, The “enable-java-applet” property
    -
    WebKitWebSettings:enable-media-stream, The “enable-media-stream” property +
    WebKitWebSettings:enable-media-stream, The “enable-media-stream” property
    -
    WebKitWebSettings:enable-mediasource, The “enable-mediasource” property +
    WebKitWebSettings:enable-mediasource, The “enable-mediasource” property
    -
    WebKitWebSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property +
    WebKitWebSettings:enable-offline-web-application-cache, The “enable-offline-web-application-cache” property
    -
    WebKitWebSettings:enable-page-cache, The “enable-page-cache” property +
    WebKitWebSettings:enable-page-cache, The “enable-page-cache” property
    -
    WebKitWebSettings:enable-plugins, The “enable-plugins” property +
    WebKitWebSettings:enable-plugins, The “enable-plugins” property
    -
    WebKitWebSettings:enable-private-browsing, The “enable-private-browsing” property +
    WebKitWebSettings:enable-private-browsing, The “enable-private-browsing” property
    -
    WebKitWebSettings:enable-running-of-insecure-content, The “enable-running-of-insecure-content” property +
    WebKitWebSettings:enable-running-of-insecure-content, The “enable-running-of-insecure-content” property
    -
    WebKitWebSettings:enable-scripts, The “enable-scripts” property +
    WebKitWebSettings:enable-scripts, The “enable-scripts” property
    -
    WebKitWebSettings:enable-site-specific-quirks, The “enable-site-specific-quirks” property +
    WebKitWebSettings:enable-site-specific-quirks, The “enable-site-specific-quirks” property
    -
    WebKitWebSettings:enable-smooth-scrolling, The “enable-smooth-scrolling” property +
    WebKitWebSettings:enable-smooth-scrolling, The “enable-smooth-scrolling” property
    -
    WebKitWebSettings:enable-spatial-navigation, The “enable-spatial-navigation” property +
    WebKitWebSettings:enable-spatial-navigation, The “enable-spatial-navigation” property
    -
    WebKitWebSettings:enable-spell-checking, The “enable-spell-checking” property +
    WebKitWebSettings:enable-spell-checking, The “enable-spell-checking” property
    -
    WebKitWebSettings:enable-universal-access-from-file-uris, The “enable-universal-access-from-file-uris” property +
    WebKitWebSettings:enable-universal-access-from-file-uris, The “enable-universal-access-from-file-uris” property
    -
    WebKitWebSettings:enable-webaudio, The “enable-webaudio” property +
    WebKitWebSettings:enable-webaudio, The “enable-webaudio” property
    -
    WebKitWebSettings:enable-webgl, The “enable-webgl” property +
    WebKitWebSettings:enable-webgl, The “enable-webgl” property
    -
    WebKitWebSettings:enable-xss-auditor, The “enable-xss-auditor” property +
    WebKitWebSettings:enable-xss-auditor, The “enable-xss-auditor” property
    -
    WebKitWebSettings:enforce-96-dpi, The “enforce-96-dpi” property +
    WebKitWebSettings:enforce-96-dpi, The “enforce-96-dpi” property
    -
    WebKitWebSettings:fantasy-font-family, The “fantasy-font-family” property +
    WebKitWebSettings:fantasy-font-family, The “fantasy-font-family” property
    -
    WebKitWebSettings:html5-local-storage-database-path, The “html5-local-storage-database-path” property +
    WebKitWebSettings:html5-local-storage-database-path, The “html5-local-storage-database-path” property
    -
    WebKitWebSettings:javascript-can-access-clipboard, The “javascript-can-access-clipboard” property +
    WebKitWebSettings:javascript-can-access-clipboard, The “javascript-can-access-clipboard” property
    -
    WebKitWebSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property +
    WebKitWebSettings:javascript-can-open-windows-automatically, The “javascript-can-open-windows-automatically” property
    -
    WebKitWebSettings:media-playback-allows-inline, The “media-playback-allows-inline” property +
    WebKitWebSettings:media-playback-allows-inline, The “media-playback-allows-inline” property
    -
    WebKitWebSettings:media-playback-requires-user-gesture, The “media-playback-requires-user-gesture” property +
    WebKitWebSettings:media-playback-requires-user-gesture, The “media-playback-requires-user-gesture” property
    -
    WebKitWebSettings:minimum-font-size, The “minimum-font-size” property +
    WebKitWebSettings:minimum-font-size, The “minimum-font-size” property
    -
    WebKitWebSettings:minimum-logical-font-size, The “minimum-logical-font-size” property +
    WebKitWebSettings:minimum-logical-font-size, The “minimum-logical-font-size” property
    -
    WebKitWebSettings:monospace-font-family, The “monospace-font-family” property +
    WebKitWebSettings:monospace-font-family, The “monospace-font-family” property
    -
    WebKitWebSettings:print-backgrounds, The “print-backgrounds” property +
    WebKitWebSettings:print-backgrounds, The “print-backgrounds” property
    -
    WebKitWebSettings:resizable-text-areas, The “resizable-text-areas” property +
    WebKitWebSettings:resizable-text-areas, The “resizable-text-areas” property
    -
    WebKitWebSettings:respect-image-orientation, The “respect-image-orientation” property +
    WebKitWebSettings:respect-image-orientation, The “respect-image-orientation” property
    -
    WebKitWebSettings:sans-serif-font-family, The “sans-serif-font-family” property +
    WebKitWebSettings:sans-serif-font-family, The “sans-serif-font-family” property
    -
    WebKitWebSettings:serif-font-family, The “serif-font-family” property +
    WebKitWebSettings:serif-font-family, The “serif-font-family” property
    -
    WebKitWebSettings:spell-checking-languages, The “spell-checking-languages” property +
    WebKitWebSettings:spell-checking-languages, The “spell-checking-languages” property
    -
    WebKitWebSettings:tab-key-cycles-through-elements, The “tab-key-cycles-through-elements” property +
    WebKitWebSettings:tab-key-cycles-through-elements, The “tab-key-cycles-through-elements” property
    -
    WebKitWebSettings:user-agent, The “user-agent” property +
    WebKitWebSettings:user-agent, The “user-agent” property
    -
    WebKitWebSettings:user-stylesheet-uri, The “user-stylesheet-uri” property +
    WebKitWebSettings:user-stylesheet-uri, The “user-stylesheet-uri” property
    -
    WebKitWebSettings:zoom-step, The “zoom-step” property +
    WebKitWebSettings:zoom-step, The “zoom-step” property
    -
    WebKitWebView, WebKitWebView +
    WebKitWebView, WebKitWebView
    -
    WebKitWebView::close-web-view, The “close-web-view” signal +
    WebKitWebView::close-web-view, The “close-web-view” signal
    -
    WebKitWebView::console-message, The “console-message” signal +
    WebKitWebView::console-message, The “console-message” signal
    -
    WebKitWebView::context-menu, The “context-menu” signal +
    WebKitWebView::context-menu, The “context-menu” signal
    -
    WebKitWebView::copy-clipboard, The “copy-clipboard” signal +
    WebKitWebView::copy-clipboard, The “copy-clipboard” signal
    -
    WebKitWebView::create-plugin-widget, The “create-plugin-widget” signal +
    WebKitWebView::create-plugin-widget, The “create-plugin-widget” signal
    -
    WebKitWebView::create-web-view, The “create-web-view” signal +
    WebKitWebView::create-web-view, The “create-web-view” signal
    -
    WebKitWebView::cut-clipboard, The “cut-clipboard” signal +
    WebKitWebView::cut-clipboard, The “cut-clipboard” signal
    -
    WebKitWebView::database-quota-exceeded, The “database-quota-exceeded” signal +
    WebKitWebView::database-quota-exceeded, The “database-quota-exceeded” signal
    -
    WebKitWebView::document-load-finished, The “document-load-finished” signal +
    WebKitWebView::document-load-finished, The “document-load-finished” signal
    -
    WebKitWebView::download-requested, The “download-requested” signal +
    WebKitWebView::download-requested, The “download-requested” signal
    -
    WebKitWebView::editing-began, The “editing-began” signal +
    WebKitWebView::editing-began, The “editing-began” signal
    -
    WebKitWebView::editing-ended, The “editing-ended” signal +
    WebKitWebView::editing-ended, The “editing-ended” signal
    -
    WebKitWebView::entering-fullscreen, The “entering-fullscreen” signal +
    WebKitWebView::entering-fullscreen, The “entering-fullscreen” signal
    -
    WebKitWebView::frame-created, The “frame-created” signal +
    WebKitWebView::frame-created, The “frame-created” signal
    -
    WebKitWebView::geolocation-policy-decision-cancelled, The “geolocation-policy-decision-cancelled” signal +
    WebKitWebView::geolocation-policy-decision-cancelled, The “geolocation-policy-decision-cancelled” signal
    -
    WebKitWebView::geolocation-policy-decision-requested, The “geolocation-policy-decision-requested” signal +
    WebKitWebView::geolocation-policy-decision-requested, The “geolocation-policy-decision-requested” signal
    -
    WebKitWebView::hovering-over-link, The “hovering-over-link” signal +
    WebKitWebView::hovering-over-link, The “hovering-over-link” signal
    -
    WebKitWebView::icon-loaded, The “icon-loaded” signal +
    WebKitWebView::icon-loaded, The “icon-loaded” signal
    -
    WebKitWebView::leaving-fullscreen, The “leaving-fullscreen” signal +
    WebKitWebView::leaving-fullscreen, The “leaving-fullscreen” signal
    -
    WebKitWebView::load-committed, The “load-committed” signal +
    WebKitWebView::load-committed, The “load-committed” signal
    -
    WebKitWebView::load-error, The “load-error” signal +
    WebKitWebView::load-error, The “load-error” signal
    -
    WebKitWebView::load-finished, The “load-finished” signal +
    WebKitWebView::load-finished, The “load-finished” signal
    -
    WebKitWebView::load-progress-changed, The “load-progress-changed” signal +
    WebKitWebView::load-progress-changed, The “load-progress-changed” signal
    -
    WebKitWebView::load-started, The “load-started” signal +
    WebKitWebView::load-started, The “load-started” signal
    -
    WebKitWebView::mime-type-policy-decision-requested, The “mime-type-policy-decision-requested” signal +
    WebKitWebView::mime-type-policy-decision-requested, The “mime-type-policy-decision-requested” signal
    -
    WebKitWebView::move-cursor, The “move-cursor” signal +
    WebKitWebView::move-cursor, The “move-cursor” signal
    -
    WebKitWebView::navigation-policy-decision-requested, The “navigation-policy-decision-requested” signal +
    WebKitWebView::navigation-policy-decision-requested, The “navigation-policy-decision-requested” signal
    -
    WebKitWebView::navigation-requested, The “navigation-requested” signal +
    WebKitWebView::navigation-requested, The “navigation-requested” signal
    -
    WebKitWebView::new-window-policy-decision-requested, The “new-window-policy-decision-requested” signal +
    WebKitWebView::new-window-policy-decision-requested, The “new-window-policy-decision-requested” signal
    -
    WebKitWebView::onload-event, The “onload-event” signal +
    WebKitWebView::onload-event, The “onload-event” signal
    -
    WebKitWebView::paste-clipboard, The “paste-clipboard” signal +
    WebKitWebView::paste-clipboard, The “paste-clipboard” signal
    -
    WebKitWebView::populate-popup, The “populate-popup” signal +
    WebKitWebView::populate-popup, The “populate-popup” signal
    -
    WebKitWebView::print-requested, The “print-requested” signal +
    WebKitWebView::print-requested, The “print-requested” signal
    -
    WebKitWebView::redo, The “redo” signal +
    WebKitWebView::redo, The “redo” signal
    -
    WebKitWebView::resource-content-length-received, The “resource-content-length-received” signal +
    WebKitWebView::resource-content-length-received, The “resource-content-length-received” signal
    -
    WebKitWebView::resource-load-failed, The “resource-load-failed” signal +
    WebKitWebView::resource-load-failed, The “resource-load-failed” signal
    -
    WebKitWebView::resource-load-finished, The “resource-load-finished” signal +
    WebKitWebView::resource-load-finished, The “resource-load-finished” signal
    -
    WebKitWebView::resource-request-starting, The “resource-request-starting” signal +
    WebKitWebView::resource-request-starting, The “resource-request-starting” signal
    -
    WebKitWebView::resource-response-received, The “resource-response-received” signal +
    WebKitWebView::resource-response-received, The “resource-response-received” signal
    -
    WebKitWebView::run-file-chooser, The “run-file-chooser” signal +
    WebKitWebView::run-file-chooser, The “run-file-chooser” signal
    -
    WebKitWebView::script-alert, The “script-alert” signal +
    WebKitWebView::script-alert, The “script-alert” signal
    -
    WebKitWebView::script-confirm, The “script-confirm” signal +
    WebKitWebView::script-confirm, The “script-confirm” signal
    -
    WebKitWebView::script-prompt, The “script-prompt” signal +
    WebKitWebView::script-prompt, The “script-prompt” signal
    -
    WebKitWebView::select-all, The “select-all” signal +
    WebKitWebView::select-all, The “select-all” signal
    -
    WebKitWebView::selection-changed, The “selection-changed” signal +
    WebKitWebView::selection-changed, The “selection-changed” signal
    -
    WebKitWebView::should-apply-style, The “should-apply-style” signal +
    WebKitWebView::should-apply-style, The “should-apply-style” signal
    -
    WebKitWebView::should-begin-editing, The “should-begin-editing” signal +
    WebKitWebView::should-begin-editing, The “should-begin-editing” signal
    -
    WebKitWebView::should-change-selected-range, The “should-change-selected-range” signal +
    WebKitWebView::should-change-selected-range, The “should-change-selected-range” signal
    -
    WebKitWebView::should-delete-range, The “should-delete-range” signal +
    WebKitWebView::should-delete-range, The “should-delete-range” signal
    -
    WebKitWebView::should-end-editing, The “should-end-editing” signal +
    WebKitWebView::should-end-editing, The “should-end-editing” signal
    -
    WebKitWebView::should-insert-node, The “should-insert-node” signal +
    WebKitWebView::should-insert-node, The “should-insert-node” signal
    -
    WebKitWebView::should-insert-text, The “should-insert-text” signal +
    WebKitWebView::should-insert-text, The “should-insert-text” signal
    -
    WebKitWebView::should-show-delete-interface-for-element, The “should-show-delete-interface-for-element” signal +
    WebKitWebView::should-show-delete-interface-for-element, The “should-show-delete-interface-for-element” signal
    -
    WebKitWebView::status-bar-text-changed, The “status-bar-text-changed” signal +
    WebKitWebView::status-bar-text-changed, The “status-bar-text-changed” signal
    -
    WebKitWebView::title-changed, The “title-changed” signal +
    WebKitWebView::title-changed, The “title-changed” signal
    -
    WebKitWebView::undo, The “undo” signal +
    WebKitWebView::undo, The “undo” signal
    -
    WebKitWebView::user-changed-contents, The “user-changed-contents” signal +
    WebKitWebView::user-changed-contents, The “user-changed-contents” signal
    -
    WebKitWebView::viewport-attributes-changed, The “viewport-attributes-changed” signal +
    WebKitWebView::viewport-attributes-changed, The “viewport-attributes-changed” signal
    -
    WebKitWebView::viewport-attributes-recompute-requested, The “viewport-attributes-recompute-requested” signal +
    WebKitWebView::viewport-attributes-recompute-requested, The “viewport-attributes-recompute-requested” signal
    -
    WebKitWebView::web-view-ready, The “web-view-ready” signal +
    WebKitWebView::web-view-ready, The “web-view-ready” signal
    -
    WebKitWebView::window-object-cleared, The “window-object-cleared” signal +
    WebKitWebView::window-object-cleared, The “window-object-cleared” signal
    -
    WebKitWebView:copy-target-list, The “copy-target-list” property +
    WebKitWebView:copy-target-list, The “copy-target-list” property
    -
    WebKitWebView:custom-encoding, The “custom-encoding” property +
    WebKitWebView:custom-encoding, The “custom-encoding” property
    -
    WebKitWebView:editable, The “editable” property +
    WebKitWebView:editable, The “editable” property
    -
    WebKitWebView:encoding, The “encoding” property +
    WebKitWebView:encoding, The “encoding” property
    -
    WebKitWebView:full-content-zoom, The “full-content-zoom” property +
    WebKitWebView:full-content-zoom, The “full-content-zoom” property
    -
    WebKitWebView:icon-uri, The “icon-uri” property +
    WebKitWebView:icon-uri, The “icon-uri” property
    -
    WebKitWebView:im-context, The “im-context” property +
    WebKitWebView:im-context, The “im-context” property
    -
    WebKitWebView:load-status, The “load-status” property +
    WebKitWebView:load-status, The “load-status” property
    -
    WebKitWebView:paste-target-list, The “paste-target-list” property +
    WebKitWebView:paste-target-list, The “paste-target-list” property
    -
    WebKitWebView:progress, The “progress” property +
    WebKitWebView:progress, The “progress” property
    -
    WebKitWebView:self-scrolling, The “self-scrolling” property +
    WebKitWebView:self-scrolling, The “self-scrolling” property
    -
    WebKitWebView:settings, The “settings” property +
    WebKitWebView:settings, The “settings” property
    -
    WebKitWebView:title, The “title” property +
    WebKitWebView:title, The “title” property
    -
    WebKitWebView:transparent, The “transparent” property +
    WebKitWebView:transparent, The “transparent” property
    -
    WebKitWebView:uri, The “uri” property +
    WebKitWebView:uri, The “uri” property
    -
    WebKitWebView:view-mode, The “view-mode” property +
    WebKitWebView:view-mode, The “view-mode” property
    -
    WebKitWebView:viewport-attributes, The “viewport-attributes” property +
    WebKitWebView:viewport-attributes, The “viewport-attributes” property
    -
    WebKitWebView:web-inspector, The “web-inspector” property +
    WebKitWebView:web-inspector, The “web-inspector” property
    -
    WebKitWebView:window-features, The “window-features” property +
    WebKitWebView:window-features, The “window-features” property
    -
    WebKitWebView:zoom-level, The “zoom-level” property +
    WebKitWebView:zoom-level, The “zoom-level” property
    -
    WebKitWebViewTargetInfo, enum WebKitWebViewTargetInfo +
    WebKitWebViewTargetInfo, enum WebKitWebViewTargetInfo
    -
    WebKitWebViewViewMode, enum WebKitWebViewViewMode +
    WebKitWebViewViewMode, enum WebKitWebViewViewMode
    -
    WebKitWebWindowFeatures, WebKitWebWindowFeatures +
    WebKitWebWindowFeatures, WebKitWebWindowFeatures
    -
    WebKitWebWindowFeatures:fullscreen, The “fullscreen” property +
    WebKitWebWindowFeatures:fullscreen, The “fullscreen” property
    -
    WebKitWebWindowFeatures:height, The “height” property +
    WebKitWebWindowFeatures:height, The “height” property
    -
    WebKitWebWindowFeatures:locationbar-visible, The “locationbar-visible” property +
    WebKitWebWindowFeatures:locationbar-visible, The “locationbar-visible” property
    -
    WebKitWebWindowFeatures:menubar-visible, The “menubar-visible” property +
    WebKitWebWindowFeatures:menubar-visible, The “menubar-visible” property
    -
    WebKitWebWindowFeatures:scrollbar-visible, The “scrollbar-visible” property +
    WebKitWebWindowFeatures:scrollbar-visible, The “scrollbar-visible” property
    -
    WebKitWebWindowFeatures:statusbar-visible, The “statusbar-visible” property +
    WebKitWebWindowFeatures:statusbar-visible, The “statusbar-visible” property
    -
    WebKitWebWindowFeatures:toolbar-visible, The “toolbar-visible” property +
    WebKitWebWindowFeatures:toolbar-visible, The “toolbar-visible” property
    -
    WebKitWebWindowFeatures:width, The “width” property +
    WebKitWebWindowFeatures:width, The “width” property
    -
    WebKitWebWindowFeatures:x, The “x” property +
    WebKitWebWindowFeatures:x, The “x” property
    -
    WebKitWebWindowFeatures:y, The “y” property +
    WebKitWebWindowFeatures:y, The “y” property
    -
    webkit_web_back_forward_list_add_item, webkit_web_back_forward_list_add_item () +
    webkit_web_back_forward_list_add_item, webkit_web_back_forward_list_add_item ()
    -
    webkit_web_back_forward_list_clear, webkit_web_back_forward_list_clear () +
    webkit_web_back_forward_list_clear, webkit_web_back_forward_list_clear ()
    -
    webkit_web_back_forward_list_contains_item, webkit_web_back_forward_list_contains_item () +
    webkit_web_back_forward_list_contains_item, webkit_web_back_forward_list_contains_item ()
    -
    webkit_web_back_forward_list_get_back_item, webkit_web_back_forward_list_get_back_item () +
    webkit_web_back_forward_list_get_back_item, webkit_web_back_forward_list_get_back_item ()
    -
    webkit_web_back_forward_list_get_back_length, webkit_web_back_forward_list_get_back_length () +
    webkit_web_back_forward_list_get_back_length, webkit_web_back_forward_list_get_back_length ()
    -
    webkit_web_back_forward_list_get_back_list_with_limit, webkit_web_back_forward_list_get_back_list_with_limit () +
    webkit_web_back_forward_list_get_back_list_with_limit, webkit_web_back_forward_list_get_back_list_with_limit ()
    -
    webkit_web_back_forward_list_get_current_item, webkit_web_back_forward_list_get_current_item () +
    webkit_web_back_forward_list_get_current_item, webkit_web_back_forward_list_get_current_item ()
    -
    webkit_web_back_forward_list_get_forward_item, webkit_web_back_forward_list_get_forward_item () +
    webkit_web_back_forward_list_get_forward_item, webkit_web_back_forward_list_get_forward_item ()
    -
    webkit_web_back_forward_list_get_forward_length, webkit_web_back_forward_list_get_forward_length () +
    webkit_web_back_forward_list_get_forward_length, webkit_web_back_forward_list_get_forward_length ()
    -
    webkit_web_back_forward_list_get_forward_list_with_limit, webkit_web_back_forward_list_get_forward_list_with_limit () +
    webkit_web_back_forward_list_get_forward_list_with_limit, webkit_web_back_forward_list_get_forward_list_with_limit ()
    -
    webkit_web_back_forward_list_get_limit, webkit_web_back_forward_list_get_limit () +
    webkit_web_back_forward_list_get_limit, webkit_web_back_forward_list_get_limit ()
    -
    webkit_web_back_forward_list_get_nth_item, webkit_web_back_forward_list_get_nth_item () +
    webkit_web_back_forward_list_get_nth_item, webkit_web_back_forward_list_get_nth_item ()
    -
    webkit_web_back_forward_list_go_back, webkit_web_back_forward_list_go_back () +
    webkit_web_back_forward_list_go_back, webkit_web_back_forward_list_go_back ()
    -
    webkit_web_back_forward_list_go_forward, webkit_web_back_forward_list_go_forward () +
    webkit_web_back_forward_list_go_forward, webkit_web_back_forward_list_go_forward ()
    -
    webkit_web_back_forward_list_go_to_item, webkit_web_back_forward_list_go_to_item () +
    webkit_web_back_forward_list_go_to_item, webkit_web_back_forward_list_go_to_item ()
    -
    webkit_web_back_forward_list_new_with_web_view, webkit_web_back_forward_list_new_with_web_view () +
    webkit_web_back_forward_list_new_with_web_view, webkit_web_back_forward_list_new_with_web_view ()
    -
    webkit_web_back_forward_list_set_limit, webkit_web_back_forward_list_set_limit () +
    webkit_web_back_forward_list_set_limit, webkit_web_back_forward_list_set_limit ()
    -
    webkit_web_database_get_display_name, webkit_web_database_get_display_name () +
    webkit_web_database_get_display_name, webkit_web_database_get_display_name ()
    -
    webkit_web_database_get_expected_size, webkit_web_database_get_expected_size () +
    webkit_web_database_get_expected_size, webkit_web_database_get_expected_size ()
    -
    webkit_web_database_get_filename, webkit_web_database_get_filename () +
    webkit_web_database_get_filename, webkit_web_database_get_filename ()
    -
    webkit_web_database_get_name, webkit_web_database_get_name () +
    webkit_web_database_get_name, webkit_web_database_get_name ()
    -
    webkit_web_database_get_security_origin, webkit_web_database_get_security_origin () +
    webkit_web_database_get_security_origin, webkit_web_database_get_security_origin ()
    -
    webkit_web_database_get_size, webkit_web_database_get_size () +
    webkit_web_database_get_size, webkit_web_database_get_size ()
    -
    webkit_web_database_remove, webkit_web_database_remove () +
    webkit_web_database_remove, webkit_web_database_remove ()
    -
    webkit_web_data_source_get_data, webkit_web_data_source_get_data () +
    webkit_web_data_source_get_data, webkit_web_data_source_get_data ()
    -
    webkit_web_data_source_get_encoding, webkit_web_data_source_get_encoding () +
    webkit_web_data_source_get_encoding, webkit_web_data_source_get_encoding ()
    -
    webkit_web_data_source_get_initial_request, webkit_web_data_source_get_initial_request () +
    webkit_web_data_source_get_initial_request, webkit_web_data_source_get_initial_request ()
    -
    webkit_web_data_source_get_main_resource, webkit_web_data_source_get_main_resource () +
    webkit_web_data_source_get_main_resource, webkit_web_data_source_get_main_resource ()
    -
    webkit_web_data_source_get_request, webkit_web_data_source_get_request () +
    webkit_web_data_source_get_request, webkit_web_data_source_get_request ()
    -
    webkit_web_data_source_get_subresources, webkit_web_data_source_get_subresources () +
    webkit_web_data_source_get_subresources, webkit_web_data_source_get_subresources ()
    -
    webkit_web_data_source_get_unreachable_uri, webkit_web_data_source_get_unreachable_uri () +
    webkit_web_data_source_get_unreachable_uri, webkit_web_data_source_get_unreachable_uri ()
    -
    webkit_web_data_source_get_web_frame, webkit_web_data_source_get_web_frame () +
    webkit_web_data_source_get_web_frame, webkit_web_data_source_get_web_frame ()
    -
    webkit_web_data_source_is_loading, webkit_web_data_source_is_loading () +
    webkit_web_data_source_is_loading, webkit_web_data_source_is_loading ()
    -
    webkit_web_data_source_new, webkit_web_data_source_new () +
    webkit_web_data_source_new, webkit_web_data_source_new ()
    -
    webkit_web_frame_find_frame, webkit_web_frame_find_frame () +
    webkit_web_frame_find_frame, webkit_web_frame_find_frame ()
    -
    webkit_web_frame_get_data_source, webkit_web_frame_get_data_source () +
    webkit_web_frame_get_data_source, webkit_web_frame_get_data_source ()
    -
    webkit_web_frame_get_dom_document, webkit_web_frame_get_dom_document () +
    webkit_web_frame_get_dom_document, webkit_web_frame_get_dom_document ()
    -
    webkit_web_frame_get_global_context, webkit_web_frame_get_global_context () +
    webkit_web_frame_get_global_context, webkit_web_frame_get_global_context ()
    -
    webkit_web_frame_get_horizontal_scrollbar_policy, webkit_web_frame_get_horizontal_scrollbar_policy () +
    webkit_web_frame_get_horizontal_scrollbar_policy, webkit_web_frame_get_horizontal_scrollbar_policy ()
    -
    webkit_web_frame_get_load_status, webkit_web_frame_get_load_status () +
    webkit_web_frame_get_load_status, webkit_web_frame_get_load_status ()
    -
    webkit_web_frame_get_name, webkit_web_frame_get_name () +
    webkit_web_frame_get_name, webkit_web_frame_get_name ()
    -
    webkit_web_frame_get_network_response, webkit_web_frame_get_network_response () +
    webkit_web_frame_get_network_response, webkit_web_frame_get_network_response ()
    -
    webkit_web_frame_get_parent, webkit_web_frame_get_parent () +
    webkit_web_frame_get_parent, webkit_web_frame_get_parent ()
    -
    webkit_web_frame_get_provisional_data_source, webkit_web_frame_get_provisional_data_source () +
    webkit_web_frame_get_provisional_data_source, webkit_web_frame_get_provisional_data_source ()
    -
    webkit_web_frame_get_security_origin, webkit_web_frame_get_security_origin () +
    webkit_web_frame_get_security_origin, webkit_web_frame_get_security_origin ()
    -
    webkit_web_frame_get_title, webkit_web_frame_get_title () +
    webkit_web_frame_get_title, webkit_web_frame_get_title ()
    -
    webkit_web_frame_get_uri, webkit_web_frame_get_uri () +
    webkit_web_frame_get_uri, webkit_web_frame_get_uri ()
    -
    webkit_web_frame_get_vertical_scrollbar_policy, webkit_web_frame_get_vertical_scrollbar_policy () +
    webkit_web_frame_get_vertical_scrollbar_policy, webkit_web_frame_get_vertical_scrollbar_policy ()
    -
    webkit_web_frame_get_web_view, webkit_web_frame_get_web_view () +
    webkit_web_frame_get_web_view, webkit_web_frame_get_web_view ()
    -
    webkit_web_frame_load_alternate_string, webkit_web_frame_load_alternate_string () +
    webkit_web_frame_load_alternate_string, webkit_web_frame_load_alternate_string ()
    -
    webkit_web_frame_load_request, webkit_web_frame_load_request () +
    webkit_web_frame_load_request, webkit_web_frame_load_request ()
    -
    webkit_web_frame_load_string, webkit_web_frame_load_string () +
    webkit_web_frame_load_string, webkit_web_frame_load_string ()
    -
    webkit_web_frame_load_uri, webkit_web_frame_load_uri () +
    webkit_web_frame_load_uri, webkit_web_frame_load_uri ()
    -
    webkit_web_frame_new, webkit_web_frame_new () +
    webkit_web_frame_new, webkit_web_frame_new ()
    -
    webkit_web_frame_print, webkit_web_frame_print () +
    webkit_web_frame_print, webkit_web_frame_print ()
    -
    webkit_web_frame_print_full, webkit_web_frame_print_full () +
    webkit_web_frame_print_full, webkit_web_frame_print_full ()
    -
    webkit_web_frame_reload, webkit_web_frame_reload () +
    webkit_web_frame_reload, webkit_web_frame_reload ()
    -
    webkit_web_frame_stop_loading, webkit_web_frame_stop_loading () +
    webkit_web_frame_stop_loading, webkit_web_frame_stop_loading ()
    -
    webkit_web_history_item_copy, webkit_web_history_item_copy () +
    webkit_web_history_item_copy, webkit_web_history_item_copy ()
    -
    webkit_web_history_item_get_alternate_title, webkit_web_history_item_get_alternate_title () +
    webkit_web_history_item_get_alternate_title, webkit_web_history_item_get_alternate_title ()
    -
    webkit_web_history_item_get_last_visited_time, webkit_web_history_item_get_last_visited_time () +
    webkit_web_history_item_get_last_visited_time, webkit_web_history_item_get_last_visited_time ()
    -
    webkit_web_history_item_get_original_uri, webkit_web_history_item_get_original_uri () +
    webkit_web_history_item_get_original_uri, webkit_web_history_item_get_original_uri ()
    -
    webkit_web_history_item_get_title, webkit_web_history_item_get_title () +
    webkit_web_history_item_get_title, webkit_web_history_item_get_title ()
    -
    webkit_web_history_item_get_uri, webkit_web_history_item_get_uri () +
    webkit_web_history_item_get_uri, webkit_web_history_item_get_uri ()
    -
    webkit_web_history_item_new, webkit_web_history_item_new () +
    webkit_web_history_item_new, webkit_web_history_item_new ()
    -
    webkit_web_history_item_new_with_data, webkit_web_history_item_new_with_data () +
    webkit_web_history_item_new_with_data, webkit_web_history_item_new_with_data ()
    -
    webkit_web_history_item_set_alternate_title, webkit_web_history_item_set_alternate_title () +
    webkit_web_history_item_set_alternate_title, webkit_web_history_item_set_alternate_title ()
    -
    webkit_web_inspector_close, webkit_web_inspector_close () +
    webkit_web_inspector_close, webkit_web_inspector_close ()
    -
    webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri () +
    webkit_web_inspector_get_inspected_uri, webkit_web_inspector_get_inspected_uri ()
    -
    webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view () +
    webkit_web_inspector_get_web_view, webkit_web_inspector_get_web_view ()
    -
    webkit_web_inspector_inspect_coordinates, webkit_web_inspector_inspect_coordinates () +
    webkit_web_inspector_inspect_coordinates, webkit_web_inspector_inspect_coordinates ()
    -
    webkit_web_inspector_inspect_node, webkit_web_inspector_inspect_node () +
    webkit_web_inspector_inspect_node, webkit_web_inspector_inspect_node ()
    -
    webkit_web_inspector_show, webkit_web_inspector_show () +
    webkit_web_inspector_show, webkit_web_inspector_show ()
    -
    webkit_web_navigation_action_get_button, webkit_web_navigation_action_get_button () +
    webkit_web_navigation_action_get_button, webkit_web_navigation_action_get_button ()
    -
    webkit_web_navigation_action_get_modifier_state, webkit_web_navigation_action_get_modifier_state () +
    webkit_web_navigation_action_get_modifier_state, webkit_web_navigation_action_get_modifier_state ()
    -
    webkit_web_navigation_action_get_original_uri, webkit_web_navigation_action_get_original_uri () +
    webkit_web_navigation_action_get_original_uri, webkit_web_navigation_action_get_original_uri ()
    -
    webkit_web_navigation_action_get_reason, webkit_web_navigation_action_get_reason () +
    webkit_web_navigation_action_get_reason, webkit_web_navigation_action_get_reason ()
    -
    webkit_web_navigation_action_get_target_frame, webkit_web_navigation_action_get_target_frame () +
    webkit_web_navigation_action_get_target_frame, webkit_web_navigation_action_get_target_frame ()
    -
    webkit_web_navigation_action_set_original_uri, webkit_web_navigation_action_set_original_uri () +
    webkit_web_navigation_action_set_original_uri, webkit_web_navigation_action_set_original_uri ()
    -
    webkit_web_navigation_action_set_reason, webkit_web_navigation_action_set_reason () +
    webkit_web_navigation_action_set_reason, webkit_web_navigation_action_set_reason ()
    -
    webkit_web_plugin_database_get_plugins, webkit_web_plugin_database_get_plugins () +
    webkit_web_plugin_database_get_plugins, webkit_web_plugin_database_get_plugins ()
    -
    webkit_web_plugin_database_get_plugin_for_mimetype, webkit_web_plugin_database_get_plugin_for_mimetype () +
    webkit_web_plugin_database_get_plugin_for_mimetype, webkit_web_plugin_database_get_plugin_for_mimetype ()
    -
    webkit_web_plugin_database_plugins_list_free, webkit_web_plugin_database_plugins_list_free () +
    webkit_web_plugin_database_plugins_list_free, webkit_web_plugin_database_plugins_list_free ()
    -
    webkit_web_plugin_database_refresh, webkit_web_plugin_database_refresh () +
    webkit_web_plugin_database_refresh, webkit_web_plugin_database_refresh ()
    -
    webkit_web_plugin_get_description, webkit_web_plugin_get_description () +
    webkit_web_plugin_get_description, webkit_web_plugin_get_description ()
    -
    webkit_web_plugin_get_enabled, webkit_web_plugin_get_enabled () +
    webkit_web_plugin_get_enabled, webkit_web_plugin_get_enabled ()
    -
    webkit_web_plugin_get_mimetypes, webkit_web_plugin_get_mimetypes () +
    webkit_web_plugin_get_mimetypes, webkit_web_plugin_get_mimetypes ()
    -
    webkit_web_plugin_get_name, webkit_web_plugin_get_name () +
    webkit_web_plugin_get_name, webkit_web_plugin_get_name ()
    -
    webkit_web_plugin_get_path, webkit_web_plugin_get_path () +
    webkit_web_plugin_get_path, webkit_web_plugin_get_path ()
    -
    webkit_web_plugin_set_enabled, webkit_web_plugin_set_enabled () +
    webkit_web_plugin_set_enabled, webkit_web_plugin_set_enabled ()
    -
    webkit_web_policy_decision_download, webkit_web_policy_decision_download () +
    webkit_web_policy_decision_download, webkit_web_policy_decision_download ()
    -
    webkit_web_policy_decision_ignore, webkit_web_policy_decision_ignore () +
    webkit_web_policy_decision_ignore, webkit_web_policy_decision_ignore ()
    -
    webkit_web_policy_decision_use, webkit_web_policy_decision_use () +
    webkit_web_policy_decision_use, webkit_web_policy_decision_use ()
    -
    webkit_web_resource_get_data, webkit_web_resource_get_data () +
    webkit_web_resource_get_data, webkit_web_resource_get_data ()
    -
    webkit_web_resource_get_encoding, webkit_web_resource_get_encoding () +
    webkit_web_resource_get_encoding, webkit_web_resource_get_encoding ()
    -
    webkit_web_resource_get_frame_name, webkit_web_resource_get_frame_name () +
    webkit_web_resource_get_frame_name, webkit_web_resource_get_frame_name ()
    -
    webkit_web_resource_get_mime_type, webkit_web_resource_get_mime_type () +
    webkit_web_resource_get_mime_type, webkit_web_resource_get_mime_type ()
    -
    webkit_web_resource_get_uri, webkit_web_resource_get_uri () +
    webkit_web_resource_get_uri, webkit_web_resource_get_uri ()
    -
    webkit_web_resource_new, webkit_web_resource_new () +
    webkit_web_resource_new, webkit_web_resource_new ()
    -
    webkit_web_settings_copy, webkit_web_settings_copy () +
    webkit_web_settings_copy, webkit_web_settings_copy ()
    -
    webkit_web_settings_get_user_agent, webkit_web_settings_get_user_agent () +
    webkit_web_settings_get_user_agent, webkit_web_settings_get_user_agent ()
    -
    webkit_web_settings_new, webkit_web_settings_new () +
    webkit_web_settings_new, webkit_web_settings_new ()
    -
    webkit_web_view_can_copy_clipboard, webkit_web_view_can_copy_clipboard () +
    webkit_web_view_can_copy_clipboard, webkit_web_view_can_copy_clipboard ()
    -
    webkit_web_view_can_cut_clipboard, webkit_web_view_can_cut_clipboard () +
    webkit_web_view_can_cut_clipboard, webkit_web_view_can_cut_clipboard ()
    -
    webkit_web_view_can_go_back, webkit_web_view_can_go_back () +
    webkit_web_view_can_go_back, webkit_web_view_can_go_back ()
    -
    webkit_web_view_can_go_back_or_forward, webkit_web_view_can_go_back_or_forward () +
    webkit_web_view_can_go_back_or_forward, webkit_web_view_can_go_back_or_forward ()
    -
    webkit_web_view_can_go_forward, webkit_web_view_can_go_forward () +
    webkit_web_view_can_go_forward, webkit_web_view_can_go_forward ()
    -
    webkit_web_view_can_paste_clipboard, webkit_web_view_can_paste_clipboard () +
    webkit_web_view_can_paste_clipboard, webkit_web_view_can_paste_clipboard ()
    -
    webkit_web_view_can_redo, webkit_web_view_can_redo () +
    webkit_web_view_can_redo, webkit_web_view_can_redo ()
    -
    webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type () +
    webkit_web_view_can_show_mime_type, webkit_web_view_can_show_mime_type ()
    -
    webkit_web_view_can_undo, webkit_web_view_can_undo () +
    webkit_web_view_can_undo, webkit_web_view_can_undo ()
    -
    webkit_web_view_copy_clipboard, webkit_web_view_copy_clipboard () +
    webkit_web_view_copy_clipboard, webkit_web_view_copy_clipboard ()
    -
    webkit_web_view_cut_clipboard, webkit_web_view_cut_clipboard () +
    webkit_web_view_cut_clipboard, webkit_web_view_cut_clipboard ()
    -
    webkit_web_view_delete_selection, webkit_web_view_delete_selection () +
    webkit_web_view_delete_selection, webkit_web_view_delete_selection ()
    -
    webkit_web_view_execute_script, webkit_web_view_execute_script () +
    webkit_web_view_execute_script, webkit_web_view_execute_script ()
    -
    webkit_web_view_get_back_forward_list, webkit_web_view_get_back_forward_list () +
    webkit_web_view_get_back_forward_list, webkit_web_view_get_back_forward_list ()
    -
    webkit_web_view_get_copy_target_list, webkit_web_view_get_copy_target_list () +
    webkit_web_view_get_copy_target_list, webkit_web_view_get_copy_target_list ()
    -
    webkit_web_view_get_custom_encoding, webkit_web_view_get_custom_encoding () +
    webkit_web_view_get_custom_encoding, webkit_web_view_get_custom_encoding ()
    -
    webkit_web_view_get_dom_document, webkit_web_view_get_dom_document () +
    webkit_web_view_get_dom_document, webkit_web_view_get_dom_document ()
    -
    webkit_web_view_get_editable, webkit_web_view_get_editable () +
    webkit_web_view_get_editable, webkit_web_view_get_editable ()
    -
    webkit_web_view_get_encoding, webkit_web_view_get_encoding () +
    webkit_web_view_get_encoding, webkit_web_view_get_encoding ()
    -
    webkit_web_view_get_focused_frame, webkit_web_view_get_focused_frame () +
    webkit_web_view_get_focused_frame, webkit_web_view_get_focused_frame ()
    -
    webkit_web_view_get_full_content_zoom, webkit_web_view_get_full_content_zoom () +
    webkit_web_view_get_full_content_zoom, webkit_web_view_get_full_content_zoom ()
    -
    webkit_web_view_get_hit_test_result, webkit_web_view_get_hit_test_result () +
    webkit_web_view_get_hit_test_result, webkit_web_view_get_hit_test_result ()
    -
    webkit_web_view_get_icon_pixbuf, webkit_web_view_get_icon_pixbuf (), webkit_web_view_get_icon_pixbuf () +
    webkit_web_view_get_icon_pixbuf, webkit_web_view_get_icon_pixbuf (), webkit_web_view_get_icon_pixbuf ()
    -
    webkit_web_view_get_icon_uri, webkit_web_view_get_icon_uri () +
    webkit_web_view_get_icon_uri, webkit_web_view_get_icon_uri ()
    -
    webkit_web_view_get_inspector, webkit_web_view_get_inspector () +
    webkit_web_view_get_inspector, webkit_web_view_get_inspector ()
    -
    webkit_web_view_get_load_status, webkit_web_view_get_load_status () +
    webkit_web_view_get_load_status, webkit_web_view_get_load_status ()
    -
    webkit_web_view_get_main_frame, webkit_web_view_get_main_frame () +
    webkit_web_view_get_main_frame, webkit_web_view_get_main_frame ()
    -
    webkit_web_view_get_paste_target_list, webkit_web_view_get_paste_target_list () +
    webkit_web_view_get_paste_target_list, webkit_web_view_get_paste_target_list ()
    -
    webkit_web_view_get_progress, webkit_web_view_get_progress () +
    webkit_web_view_get_progress, webkit_web_view_get_progress ()
    -
    webkit_web_view_get_settings, webkit_web_view_get_settings () +
    webkit_web_view_get_settings, webkit_web_view_get_settings ()
    -
    webkit_web_view_get_snapshot, webkit_web_view_get_snapshot () +
    webkit_web_view_get_snapshot, webkit_web_view_get_snapshot ()
    -
    webkit_web_view_get_title, webkit_web_view_get_title () +
    webkit_web_view_get_title, webkit_web_view_get_title ()
    -
    webkit_web_view_get_transparent, webkit_web_view_get_transparent () +
    webkit_web_view_get_transparent, webkit_web_view_get_transparent ()
    -
    webkit_web_view_get_uri, webkit_web_view_get_uri () +
    webkit_web_view_get_uri, webkit_web_view_get_uri ()
    -
    webkit_web_view_get_viewport_attributes, webkit_web_view_get_viewport_attributes () +
    webkit_web_view_get_viewport_attributes, webkit_web_view_get_viewport_attributes ()
    -
    webkit_web_view_get_view_mode, webkit_web_view_get_view_mode () +
    webkit_web_view_get_view_mode, webkit_web_view_get_view_mode ()
    -
    webkit_web_view_get_view_source_mode, webkit_web_view_get_view_source_mode () +
    webkit_web_view_get_view_source_mode, webkit_web_view_get_view_source_mode ()
    -
    webkit_web_view_get_window_features, webkit_web_view_get_window_features () +
    webkit_web_view_get_window_features, webkit_web_view_get_window_features ()
    -
    webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level () +
    webkit_web_view_get_zoom_level, webkit_web_view_get_zoom_level ()
    -
    webkit_web_view_go_back, webkit_web_view_go_back () +
    webkit_web_view_go_back, webkit_web_view_go_back ()
    -
    webkit_web_view_go_back_or_forward, webkit_web_view_go_back_or_forward () +
    webkit_web_view_go_back_or_forward, webkit_web_view_go_back_or_forward ()
    -
    webkit_web_view_go_forward, webkit_web_view_go_forward () +
    webkit_web_view_go_forward, webkit_web_view_go_forward ()
    -
    webkit_web_view_go_to_back_forward_item, webkit_web_view_go_to_back_forward_item () +
    webkit_web_view_go_to_back_forward_item, webkit_web_view_go_to_back_forward_item ()
    -
    webkit_web_view_has_selection, webkit_web_view_has_selection () +
    webkit_web_view_has_selection, webkit_web_view_has_selection ()
    -
    webkit_web_view_load_html_string, webkit_web_view_load_html_string () +
    webkit_web_view_load_html_string, webkit_web_view_load_html_string ()
    -
    webkit_web_view_load_request, webkit_web_view_load_request () +
    webkit_web_view_load_request, webkit_web_view_load_request ()
    -
    webkit_web_view_load_string, webkit_web_view_load_string () +
    webkit_web_view_load_string, webkit_web_view_load_string ()
    -
    webkit_web_view_load_uri, webkit_web_view_load_uri () +
    webkit_web_view_load_uri, webkit_web_view_load_uri ()
    -
    webkit_web_view_mark_text_matches, webkit_web_view_mark_text_matches () +
    webkit_web_view_mark_text_matches, webkit_web_view_mark_text_matches ()
    -
    webkit_web_view_move_cursor, webkit_web_view_move_cursor () +
    webkit_web_view_move_cursor, webkit_web_view_move_cursor ()
    -
    webkit_web_view_new, webkit_web_view_new () +
    webkit_web_view_new, webkit_web_view_new ()
    -
    webkit_web_view_open, webkit_web_view_open () +
    webkit_web_view_open, webkit_web_view_open ()
    -
    webkit_web_view_paste_clipboard, webkit_web_view_paste_clipboard () +
    webkit_web_view_paste_clipboard, webkit_web_view_paste_clipboard ()
    -
    webkit_web_view_redo, webkit_web_view_redo () +
    webkit_web_view_redo, webkit_web_view_redo ()
    -
    webkit_web_view_reload, webkit_web_view_reload () +
    webkit_web_view_reload, webkit_web_view_reload ()
    -
    webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache () +
    webkit_web_view_reload_bypass_cache, webkit_web_view_reload_bypass_cache ()
    -
    webkit_web_view_search_text, webkit_web_view_search_text () +
    webkit_web_view_search_text, webkit_web_view_search_text ()
    -
    webkit_web_view_select_all, webkit_web_view_select_all () +
    webkit_web_view_select_all, webkit_web_view_select_all ()
    -
    webkit_web_view_set_custom_encoding, webkit_web_view_set_custom_encoding () +
    webkit_web_view_set_custom_encoding, webkit_web_view_set_custom_encoding ()
    -
    webkit_web_view_set_editable, webkit_web_view_set_editable () +
    webkit_web_view_set_editable, webkit_web_view_set_editable ()
    -
    webkit_web_view_set_full_content_zoom, webkit_web_view_set_full_content_zoom () +
    webkit_web_view_set_full_content_zoom, webkit_web_view_set_full_content_zoom ()
    -
    webkit_web_view_set_highlight_text_matches, webkit_web_view_set_highlight_text_matches () +
    webkit_web_view_set_highlight_text_matches, webkit_web_view_set_highlight_text_matches ()
    -
    webkit_web_view_set_maintains_back_forward_list, webkit_web_view_set_maintains_back_forward_list () +
    webkit_web_view_set_maintains_back_forward_list, webkit_web_view_set_maintains_back_forward_list ()
    -
    webkit_web_view_set_settings, webkit_web_view_set_settings () +
    webkit_web_view_set_settings, webkit_web_view_set_settings ()
    -
    webkit_web_view_set_transparent, webkit_web_view_set_transparent () +
    webkit_web_view_set_transparent, webkit_web_view_set_transparent ()
    -
    webkit_web_view_set_view_mode, webkit_web_view_set_view_mode () +
    webkit_web_view_set_view_mode, webkit_web_view_set_view_mode ()
    -
    webkit_web_view_set_view_source_mode, webkit_web_view_set_view_source_mode () +
    webkit_web_view_set_view_source_mode, webkit_web_view_set_view_source_mode ()
    -
    webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level () +
    webkit_web_view_set_zoom_level, webkit_web_view_set_zoom_level ()
    -
    webkit_web_view_stop_loading, webkit_web_view_stop_loading () +
    webkit_web_view_stop_loading, webkit_web_view_stop_loading ()
    -
    webkit_web_view_try_get_favicon_pixbuf, webkit_web_view_try_get_favicon_pixbuf () +
    webkit_web_view_try_get_favicon_pixbuf, webkit_web_view_try_get_favicon_pixbuf ()
    -
    webkit_web_view_undo, webkit_web_view_undo () +
    webkit_web_view_undo, webkit_web_view_undo ()
    -
    webkit_web_view_unmark_text_matches, webkit_web_view_unmark_text_matches () +
    webkit_web_view_unmark_text_matches, webkit_web_view_unmark_text_matches ()
    -
    webkit_web_view_zoom_in, webkit_web_view_zoom_in () +
    webkit_web_view_zoom_in, webkit_web_view_zoom_in ()
    -
    webkit_web_view_zoom_out, webkit_web_view_zoom_out () +
    webkit_web_view_zoom_out, webkit_web_view_zoom_out ()
    -
    webkit_web_window_features_equal, webkit_web_window_features_equal () +
    webkit_web_window_features_equal, webkit_web_window_features_equal ()
    -
    webkit_web_window_features_new, webkit_web_window_features_new () +
    webkit_web_window_features_new, webkit_web_window_features_new ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index-deprecated.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index-deprecated.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index-deprecated.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index-deprecated.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Index of deprecated symbols - +Index of deprecated symbols: WebKitGTK+ Reference Manual + - + @@ -22,70 +22,69 @@

    Index of deprecated symbols

    -
    +

    G

    -
    webkit_get_icon_database, webkit_get_icon_database () +
    webkit_get_icon_database, webkit_get_icon_database ()

    I

    -
    WebKitIconDatabase::icon-loaded, The “icon-loaded” signal +
    WebKitIconDatabase::icon-loaded, The “icon-loaded” signal
    -
    WebKitIconDatabase:path, The “path” property +
    WebKitIconDatabase:path, The “path” property
    -
    webkit_icon_database_clear, webkit_icon_database_clear () +
    webkit_icon_database_clear, webkit_icon_database_clear ()
    -
    webkit_icon_database_get_icon_pixbuf, webkit_icon_database_get_icon_pixbuf () +
    webkit_icon_database_get_icon_pixbuf, webkit_icon_database_get_icon_pixbuf ()
    -
    webkit_icon_database_get_icon_uri, webkit_icon_database_get_icon_uri () +
    webkit_icon_database_get_icon_uri, webkit_icon_database_get_icon_uri ()
    -
    webkit_icon_database_get_path, webkit_icon_database_get_path () +
    webkit_icon_database_get_path, webkit_icon_database_get_path ()
    -
    webkit_icon_database_set_path, webkit_icon_database_set_path () +
    webkit_icon_database_set_path, webkit_icon_database_set_path ()

    W

    -
    WebKitWebFrame::load-committed, The “load-committed” signal +
    WebKitWebFrame::load-committed, The “load-committed” signal
    -
    WebKitWebFrame::title-changed, The “title-changed” signal +
    WebKitWebFrame::title-changed, The “title-changed” signal
    -
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property +
    WebKitWebSettings:enable-default-context-menu, The “enable-default-context-menu” property
    -
    WebKitWebView::load-committed, The “load-committed” signal +
    WebKitWebView::load-committed, The “load-committed” signal
    -
    WebKitWebView::load-finished, The “load-finished” signal +
    WebKitWebView::load-finished, The “load-finished” signal
    -
    WebKitWebView::load-progress-changed, The “load-progress-changed” signal +
    WebKitWebView::load-progress-changed, The “load-progress-changed” signal
    -
    WebKitWebView::load-started, The “load-started” signal +
    WebKitWebView::load-started, The “load-started” signal
    -
    WebKitWebView::navigation-requested, The “navigation-requested” signal +
    WebKitWebView::navigation-requested, The “navigation-requested” signal
    -
    WebKitWebView::populate-popup, The “populate-popup” signal +
    WebKitWebView::populate-popup, The “populate-popup” signal
    -
    WebKitWebView::title-changed, The “title-changed” signal +
    WebKitWebView::title-changed, The “title-changed” signal
    -
    webkit_web_back_forward_list_new_with_web_view, webkit_web_back_forward_list_new_with_web_view () +
    webkit_web_back_forward_list_new_with_web_view, webkit_web_back_forward_list_new_with_web_view ()
    -
    webkit_web_frame_new, webkit_web_frame_new () +
    webkit_web_frame_new, webkit_web_frame_new ()
    -
    webkit_web_view_get_icon_pixbuf, webkit_web_view_get_icon_pixbuf () +
    webkit_web_view_get_icon_pixbuf, webkit_web_view_get_icon_pixbuf ()
    -
    webkit_web_view_load_html_string, webkit_web_view_load_html_string () +
    webkit_web_view_load_html_string, webkit_web_view_load_html_string ()
    -
    webkit_web_view_open, webkit_web_view_open () +
    webkit_web_view_open, webkit_web_view_open ()
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index.html webkitgtk-2.4.10/Documentation/webkitgtk/html/index.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index.html 2016-03-14 08:06:04.000000000 +0000 @@ -3,10 +3,10 @@ WebKitGTK+ Reference Manual: WebKitGTK+ Reference Manual - + - + @@ -14,7 +14,7 @@
    -

    for WebKitGTK+ 2.4.9

    +

    for WebKitGTK+ 2.4.10


    @@ -29,16 +29,16 @@ WebKitWebView — The central class of the WebKitGTK+ API
    -WebKitWebFrameThe content of a WebKitWebView +WebKitWebFrame — The content of a WebKitWebView
    -WebKitWebSettingsControl the behaviour of a WebKitWebView +WebKitWebSettings — Control the behaviour of a WebKitWebView
    -WebKitWebBackForwardListThe history of a WebKitWebView +WebKitWebBackForwardList — The history of a WebKitWebView
    -WebKitWebHistoryItemOne item of the WebKitWebBackForwardList and or global history +WebKitWebHistoryItem — One item of the WebKitWebBackForwardList and or global history
    WebKitWebNavigationAction — Object used to report details of navigation actions @@ -62,7 +62,7 @@ WebKitWebDatabase — A WebKit web application database
    -WebKitWebDataSourceEncapsulates the content to be displayed in a WebKitWebFrame. +WebKitWebDataSource — Encapsulates the content to be displayed in a WebKitWebFrame.
    WebKitWebResource — Represents a downloaded URI. @@ -83,14 +83,14 @@ WebKitWebPluginDatabase — Provides information about the plugins the engine knows about
    -WebKitSoupAuthDialogA SoupSessionFeature to provide a simple +WebKitSoupAuthDialog — A SoupSessionFeature to provide a simple authentication dialog for HTTP basic auth support.
    WebKitSecurityOrigin — A security boundary for web sites
    -WebKitWebWindowFeaturesWindow properties of a WebKitWebView +WebKitWebWindowFeatures — Window properties of a WebKitWebView
    WebKitIconDatabase — A WebKit web application database @@ -141,7 +141,6 @@
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/index.sgml webkitgtk-2.4.10/Documentation/webkitgtk/html/index.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/html/index.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/index.sgml 1970-01-01 00:00:00.000000000 +0000 @@ -1,811 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/style.css webkitgtk-2.4.10/Documentation/webkitgtk/html/style.css --- webkitgtk-2.4.9/Documentation/webkitgtk/html/style.css 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/style.css 2016-03-14 08:06:04.000000000 +0000 @@ -60,7 +60,7 @@ div.informaltable table { border-collapse: separate; - border-spacing: 1em 0.5em; + border-spacing: 1em 0.3em; border: none; } @@ -148,6 +148,8 @@ h4 { color: #555753; + margin-top: 1em; + margin-bottom: 1em; } hr @@ -166,17 +168,16 @@ padding-bottom: 0.25em; } -dl.toc > dd > dl > dt +dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; + font-weight: bold; } -dl.toc > dt +dl.toc > dl { - padding-top: 1em; padding-bottom: 0.5em; - font-weight: bold; } .parameter @@ -346,7 +347,9 @@ } @media screen { - sup a.footnote + /* these have a as a first child, but since there are no parent selectors + * we can't use that. */ + a.footnote { position: relative; top: 0em ! important; diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/webkit-environment.html webkitgtk-2.4.10/Documentation/webkitgtk/html/webkit-environment.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/webkit-environment.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/webkit-environment.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Environment - +Environment: WebKitGTK+ Reference Manual + - + @@ -157,7 +157,6 @@
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitFaviconDatabase.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitFaviconDatabase.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitFaviconDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitFaviconDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitFaviconDatabase - +WebKitFaviconDatabase: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -60,7 +60,7 @@
    -GdkPixbuf * +GdkPixbuf * webkit_favicon_database_get_favicon_pixbuf_finish () @@ -99,7 +99,7 @@
    -GdkPixbuf * +GdkPixbuf * webkit_favicon_database_try_get_favicon_pixbuf () @@ -110,7 +110,7 @@

    Properties

    -
    +
    @@ -126,7 +126,7 @@

    Signals

    -
    +
    @@ -141,7 +141,7 @@

    Types and Values

    -
    +
    @@ -154,7 +154,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitFaviconDatabase
     
    @@ -183,8 +183,8 @@ webkit_favicon_database_clear (WebKitFaviconDatabase *database);

    Clears all icons from the database.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -197,7 +197,7 @@
    -

    Since 1.8

    +

    Since: 1.8


    @@ -208,10 +208,10 @@ const gchar *page_uri, guint width, guint height, - GCancellable *cancellable, + GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); -

    Asynchronously obtains a GdkPixbuf of the favicon for the given +

    Asynchronously obtains a GdkPixbuf of the favicon for the given page URI. The advantage of this method over webkit_favicon_database_try_get_favicon_pixbuf() is that it always returns the cached icon if it's in the database asynchronously waiting for the @@ -227,8 +227,8 @@ different size the icon will be scaled each time you call this function.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -257,7 +257,7 @@ - + @@ -275,20 +275,20 @@

    cancellable

    A GCancellable or NULL.

    A GCancellable or NULL.

    [allow-none]
    -

    Since 1.8

    +

    Since: 1.8


    webkit_favicon_database_get_favicon_pixbuf_finish ()

    -
    GdkPixbuf *
    +
    GdkPixbuf *
     webkit_favicon_database_get_favicon_pixbuf_finish
                                    (WebKitFaviconDatabase *database,
    -                                GAsyncResult *result,
    +                                GAsyncResult *result,
                                     GError **error);

    Finishes an operation started with webkit_favicon_database_get_favicon_pixbuf().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -302,7 +302,7 @@ - + @@ -314,11 +314,11 @@

    result

    A GAsyncResult obtained from the GAsyncReadyCallback passed to webkit_favicon_database_get_favicon_pixbuf()

    A GAsyncResult obtained from the GAsyncReadyCallback passed to webkit_favicon_database_get_favicon_pixbuf()

     
    -

    Returns

    -

    a new reference to a GdkPixbuf, or NULL.

    +

    Returns

    +

    a new reference to a GdkPixbuf, or NULL.

    [transfer full]

    -

    Since 1.8

    +

    Since: 1.8


    @@ -330,8 +330,8 @@

    Obtains the URI for the favicon for the given page URI. See also webkit_web_view_get_icon_uri().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -352,11 +352,10 @@
    -

    Returns

    +

    Returns

    a newly allocated URI for the favicon, or NULL

    -

    -

    Since 1.8

    +

    Since: 1.8


    @@ -365,8 +364,8 @@ webkit_favicon_database_get_path (WebKitFaviconDatabase *database);

    Determines the absolute path to the database folder on disk.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -380,11 +379,10 @@
    -

    Returns

    +

    Returns

    the absolute path of the database folder, or NULL

    -

    -

    Since 1.8

    +

    Since: 1.8


    @@ -393,10 +391,6 @@ webkit_favicon_database_get_type (void);

    -
    -

    Returns

    -

    -

    @@ -408,8 +402,8 @@ icon database will only be enabled after a call to this method.

    Passing NULL or "" as path disables the icon database.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -430,18 +424,18 @@
    -

    Since 1.8

    +

    Since: 1.8


    webkit_favicon_database_try_get_favicon_pixbuf ()

    -
    GdkPixbuf *
    +
    GdkPixbuf *
     webkit_favicon_database_try_get_favicon_pixbuf
                                    (WebKitFaviconDatabase *database,
                                     const gchar *page_uri,
                                     guint width,
                                     guint height);
    -

    Obtains a GdkPixbuf of the favicon for the given page URI, or +

    Obtains a GdkPixbuf of the favicon for the given page URI, or NULL if there is no icon for the given page or it hasn't been loaded from disk yet. Use webkit_favicon_database_get_favicon_uri() if you need to distinguish these cases. To make sure this method @@ -455,8 +449,8 @@ different size the icon will be scaled each time you call this function.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -487,12 +481,12 @@
    -

    Returns

    -

    a new reference to a GdkPixbuf, or NULL +

    Returns

    +

    a new reference to a GdkPixbuf, or NULL if the given URI doesn't have an icon or it hasn't been loaded yet.

    [transfer full]

    -

    Since 1.8

    +

    Since: 1.8

    @@ -512,7 +506,7 @@

    The absolute path of the icon database folder.

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.8

    +

    Since: 1.8

    @@ -530,8 +524,8 @@ the icon, while “icon-loaded” provides the URI of the favicon.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -558,12 +552,11 @@

    Flags: Run Last

    -

    Since 1.8

    +

    Since: 1.8

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitFileChooserRequest.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitFileChooserRequest.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitFileChooserRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitFileChooserRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitFileChooserRequest - +WebKitFileChooserRequest: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -58,7 +58,7 @@
    -GtkFileFilter * +GtkFileFilter * webkit_file_chooser_request_get_mime_types_filter () @@ -84,7 +84,7 @@

    Properties

    -
    +
    @@ -93,7 +93,7 @@ +GtkFileFilter * @@ -117,7 +117,7 @@

    Types and Values

    -
    -GtkFileFilter * filter Read
    +
    @@ -130,7 +130,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitFileChooserRequest
     
    @@ -140,7 +140,7 @@ HTML element, WebKit will need to show a dialog to choose one or more files to be uploaded to the server along with the rest of the form data. For that to happen in a general way, instead of just -opening a GtkFileChooserDialog (which might be not desirable in +opening a GtkFileChooserDialog (which might be not desirable in some cases, such as when an embedding applications prefers to use its own file chooser dialog), WebKit will fire the “run-file-chooser” signal with a @@ -150,7 +150,7 @@ allowed) and to cancel the request, in case nothing was selected.

    In case the client application does not wish to handle this signal, WebKit will provide a default handler which will asynchronously run -a regular GtkFileChooserDialog for the user to interact with.

    +a regular GtkFileChooserDialog for the user to interact with.

    Functions

    @@ -164,8 +164,8 @@ which depends on the HTML input element having a 'multiple' attribute defined.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -179,11 +179,10 @@
    -

    Returns

    +

    Returns

    TRUE if the file chooser should allow selecting multiple files or FALSE otherwise.

    -

    -

    Since 1.10

    +

    Since: 1.10


    @@ -198,8 +197,8 @@ the file chooser dialog to the user, to decide whether to allow the user to select multiple files at once or only one.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -213,7 +212,7 @@
    -

    Returns

    +

    Returns

    a NULL-terminated array of strings if a list of accepted MIME types is defined or NULL otherwise, meaning that any MIME type should be @@ -221,24 +220,24 @@ should not be modified or freed.

    [array zero-terminated=1][transfer none]

    -

    Since 1.10

    +

    Since: 1.10


    webkit_file_chooser_request_get_mime_types_filter ()

    -
    GtkFileFilter *
    +
    GtkFileFilter *
     webkit_file_chooser_request_get_mime_types_filter
                                    (WebKitFileChooserRequest *request);

    Get the filter currently associated with the request, ready to be -used by GtkFileChooser. This function should normally be called +used by GtkFileChooser. This function should normally be called before presenting the file chooser dialog to the user, to decide whether to apply a filter so the user would not be allowed to select files with other MIME types.

    See webkit_file_chooser_request_get_mime_types() if you are interested in getting the list of accepted MIME types.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -252,13 +251,13 @@
    -

    Returns

    -

    a GtkFileFilter if a list of accepted +

    Returns

    +

    a GtkFileFilter if a list of accepted MIME types is defined or NULL otherwise. The returned object is owned by WebKitGTK+ should not be modified or freed.

    [transfer none]

    -

    Since 1.10

    +

    Since: 1.10


    @@ -275,8 +274,8 @@ file chooser dialog to the user, to decide whether to perform some extra action, like pre-selecting the files from a previous request.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -290,7 +289,7 @@
    -

    Returns

    +

    Returns

    a NULL-terminated array of strings if there are selected files associated with the request or NULL otherwise. This array and its @@ -298,7 +297,7 @@ freed.

    [array zero-terminated=1][transfer none]

    -

    Since 1.10

    +

    Since: 1.10


    @@ -310,8 +309,8 @@

    Ask WebKit to select local files for upload and complete the request.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -332,7 +331,7 @@
    -

    Since 1.10

    +

    Since: 1.10

    @@ -348,12 +347,12 @@

    Property Details

    The “filter” property

    -
      “filter”                   GtkFileFilter *
    +
      “filter”                   GtkFileFilter *

    The filter currently associated with the request. See webkit_file_chooser_request_get_mime_types_filter() for more details.

    Flags: Read

    -

    Since 1.10

    +

    Since: 1.10


    @@ -363,7 +362,7 @@ types the file chooser dialog should handle. See webkit_file_chooser_request_get_mime_types() for more details.

    Flags: Read

    -

    Since 1.10

    +

    Since: 1.10


    @@ -381,7 +380,7 @@ selected files associated to the current request. See webkit_file_chooser_request_get_selected_files() for more details.

    Flags: Read

    -

    Since 1.10

    +

    Since: 1.10

    @@ -390,7 +389,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitGeolocationPolicyDecision.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitGeolocationPolicyDecision.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitGeolocationPolicyDecision.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitGeolocationPolicyDecision.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitGeolocationPolicyDecision - +WebKitGeolocationPolicyDecision: WebKitGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -61,7 +61,7 @@

    Types and Values

    -
    +
    @@ -74,7 +74,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitGeolocationPolicyDecision
     
    @@ -93,8 +93,8 @@ webkit_geolocation_policy_allow (WebKitGeolocationPolicyDecision *decision);

    Will send the allow decision to the policy implementer.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -107,7 +107,7 @@
    -

    Since 1.1.23

    +

    Since: 1.1.23


    @@ -116,8 +116,8 @@ webkit_geolocation_policy_deny (WebKitGeolocationPolicyDecision *decision);

    Will send the deny decision to the policy implementer.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -130,7 +130,7 @@
    -

    Since 1.1.23

    +

    Since: 1.1.23

    @@ -144,7 +144,6 @@
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk.devhelp2 webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk.devhelp2 --- webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk.devhelp2 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk.devhelp2 2016-03-14 08:06:04.000000000 +0000 @@ -1,5 +1,4 @@ - @@ -612,6 +611,98 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-Global-functions.html webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-Global-functions.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-Global-functions.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-Global-functions.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: Global functions - +Global functions: WebKitGTK+ Reference Manual + - + @@ -33,7 +33,7 @@

    Functions

    -
    +
    @@ -41,7 +41,7 @@
    -SoupSession * +SoupSession * webkit_get_default_session () @@ -112,7 +112,7 @@
    -GObject * +GObject * webkit_get_text_checker () @@ -193,7 +193,7 @@

    Types and Values

    -
    +
    @@ -224,18 +224,18 @@

    Functions

    webkit_get_default_session ()

    -
    SoupSession *
    +
    SoupSession *
     webkit_get_default_session (void);
    -

    Retrieves the default SoupSession used by all web views. +

    Retrieves the default SoupSession used by all web views. Note that the session features are added by WebKit on demand, -so if you insert your own SoupCookieJar before any network +so if you insert your own SoupCookieJar before any network traffic occurs, WebKit will use it instead of the default.

    -

    Returns

    -

    the default SoupSession.

    +

    Returns

    +

    the default SoupSession.

    [transfer none]

    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -245,11 +245,10 @@

    Returns the default quota for Web Database databases. By default this value is 5MB.

    -

    Returns

    +

    Returns

    the current default database quota in bytes

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -261,11 +260,10 @@ Database and Indexed Database databases. By default this path will be in the user data directory.

    -

    Returns

    +

    Returns

    the current database directory path in the filesystem encoding

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -275,11 +273,11 @@

    Returns the current WebKitWebPluginDatabase with information about all the plugins WebKit knows about in this instance.

    -

    Returns

    +

    Returns

    the current WebKitWebPluginDatabase.

    [transfer none]

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -287,7 +285,7 @@
    void
     webkit_remove_all_web_databases (void);

    Removes all web databases from the current database directory path.

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -296,8 +294,8 @@ webkit_set_default_web_database_quota (guint64 defaultQuota);

    Sets the default quota for Web Database databases.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -310,7 +308,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -321,8 +319,8 @@

    Sets the current path to the directory WebKit will write Web Database and Indexed Database databases.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -335,7 +333,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -345,11 +343,11 @@

    Returns the WebKitFaviconDatabase providing access to website icons.

    -

    Returns

    +

    Returns

    the current WebKitFaviconDatabase.

    [transfer none]

    -

    Since 1.8

    +

    Since: 1.8


    @@ -362,38 +360,38 @@

    Returns the WebKitIconDatabase providing access to website icons.

    -

    Returns

    +

    Returns

    the current WebKitIconDatabase.

    [transfer none]

    -

    Since 1.3.13

    +

    Since: 1.3.13


    webkit_get_text_checker ()

    -
    GObject *
    +
    GObject *
     webkit_get_text_checker (void);
    -

    Returns

    +

    Returns

    the WebKitSpellChecker used by WebKit, or NULL if spell checking is not enabled.

    [transfer none]

    -

    Since 1.5.1

    +

    Since: 1.5.1


    webkit_set_text_checker ()

    void
    -webkit_set_text_checker (GObject *checker);
    +webkit_set_text_checker (GObject *checker);

    Sets checker as the spell checker to be used by WebKit. The API accepts GObject since in the future we might accept objects implementing multiple interfaces (for example, spell checking and grammar checking).

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -406,7 +404,7 @@
    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -418,11 +416,10 @@ cache databases to. By default this path is set to $XDG_CACHE_HOME/webkitgtk/applications and cannot be modified.

    -

    Returns

    +

    Returns

    the application cache database directory path

    -

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -433,11 +430,10 @@

    Returns the maximum size of the cache storage. By default it is set to UINT_MAX i.e. no quota.

    -

    Returns

    +

    Returns

    the current application cache maximum storage size

    -

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -449,8 +445,8 @@ Changing the application cache storage size will clear the cache and rebuild cache storage.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -463,7 +459,7 @@
    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -474,11 +470,10 @@ value check the documentation of the function webkit_set_cache_model().

    -

    Returns

    +

    Returns

    the current WebKitCacheModel

    -

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -502,8 +497,8 @@ specifying WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER. Default value is WEBKIT_CACHE_MODEL_WEB_BROWSER.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -516,13 +511,13 @@
    -

    Since 1.1.18

    +

    Since: 1.1.18


    webkit_context_menu_item_get_action ()

    WebKitContextMenuAction
    -webkit_context_menu_item_get_action (GtkMenuItem *item);
    +webkit_context_menu_item_get_action (GtkMenuItem *item);

    Returns the WebKitContextMenuAction of the given item . This function can be used to determine the items present in the default context menu. @@ -640,11 +635,11 @@

    -

    Note that you can get the GtkAction of any item in the default context menu with -gtk_activatable_get_related_action().

    +

    Note that you can get the GtkAction of any item in the default context menu with +gtk_activatable_get_related_action().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -652,18 +647,17 @@ - +

    item

    a GtkMenuItem of the default context menu

    a GtkMenuItem of the default context menu

     
    -

    Returns

    +

    Returns

    the WebKitContextMenuAction of the given item

    -

    -

    Since 1.10

    +

    Since: 1.10


    @@ -674,8 +668,8 @@ WebKitSecurityPolicy policy);

    Set the security policy for the given URI scheme.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -695,7 +689,7 @@
    -

    Since 2.0

    +

    Since: 2.0


    @@ -705,8 +699,8 @@ (const gchar *scheme);

    Get the security policy for the given URI scheme.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -720,11 +714,10 @@
    -

    Returns

    +

    Returns

    a WebKitSecurityPolicy

    -

    -

    Since 2.0

    +

    Since: 2.0

    @@ -733,8 +726,8 @@

    enum WebKitCacheModel

    Enum values used for determining the webview cache model.

    -

    Members

    -
    +

    Members

    +
    @@ -785,8 +778,8 @@

    enum WebKitContextMenuAction

    Enum values used to denote actions of items in the default context menu.

    -

    Members

    -
    +

    Members

    +
    @@ -1069,15 +1062,15 @@
    -

    Since 1.10

    +

    Since: 1.10


    enum WebKitSecurityPolicy

    Flags used to represent the security policy of a URI scheme.

    -

    Members

    -
    +

    Members

    +
    @@ -1136,12 +1129,11 @@
    -

    Since 2.0

    +

    Since: 2.0

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-webkitdownload.html webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-webkitdownload.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-webkitdownload.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-webkitdownload.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitDownload - +WebKitDownload: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -156,7 +156,7 @@

    Properties

    -
    +
    @@ -212,7 +212,7 @@

    Signals

    -
    +
    @@ -227,7 +227,7 @@

    Types and Values

    -
    +
    @@ -250,7 +250,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitDownload
     
    @@ -274,8 +274,8 @@ WebKitDownload::error signal, reporting that the download was cancelled.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -288,7 +288,7 @@
    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -297,8 +297,8 @@ webkit_download_get_current_size (WebKitDownload *download);

    Current already downloaded size.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -312,11 +312,10 @@
    -

    Returns

    +

    Returns

    the already downloaded size

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -327,8 +326,8 @@ must have been set by the application before calling webkit_download_start(), and may be NULL.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -342,11 +341,10 @@
    -

    Returns

    +

    Returns

    the destination URI or NULL

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -357,8 +355,8 @@ part. If the download is finished, had an error or was cancelled this is the time between its start and the event.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -372,11 +370,10 @@
    -

    Returns

    +

    Returns

    seconds since the download was started, as a gdouble

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -386,8 +383,8 @@

    Retrieves the WebKitNetworkRequest object that backs the download process.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -401,11 +398,11 @@
    -

    Returns

    +

    Returns

    the WebKitNetworkRequest instance.

    [transfer none]

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -415,8 +412,8 @@

    Retrieves the WebKitNetworkResponse object that backs the download process.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -430,11 +427,11 @@
    -

    Returns

    +

    Returns

    the WebKitNetworkResponse instance.

    [transfer none]

    -

    Since 1.1.16

    +

    Since: 1.1.16


    @@ -443,8 +440,8 @@ webkit_download_get_progress (WebKitDownload *download);

    Determines the current progress of the download.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -458,11 +455,10 @@
    -

    Returns

    +

    Returns

    a gdouble ranging from 0.0 to 1.0.

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -472,8 +468,8 @@

    Obtains the current status of the download, as a WebKitDownloadStatus.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -487,11 +483,10 @@
    -

    Returns

    +

    Returns

    the current WebKitDownloadStatus

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -502,8 +497,8 @@

    Retrieves the filename that was suggested by the server, or the one derived by WebKit from the URI.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -517,11 +512,10 @@
    -

    Returns

    +

    Returns

    the suggested filename

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -534,8 +528,8 @@ always the same as current_size in the cases where current size surpasses it.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -549,11 +543,10 @@
    -

    Returns

    +

    Returns

    the expected total size of the downloaded file

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -563,8 +556,8 @@

    Convenience method to retrieve the URI from the WebKitNetworkRequest which is being downloaded.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -578,11 +571,10 @@
    -

    Returns

    +

    Returns

    the URI

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -592,8 +584,8 @@

    Creates a new WebKitDownload object for the given WebKitNetworkRequest object.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -607,11 +599,10 @@
    -

    Returns

    +

    Returns

    the new WebKitDownload

    -

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -621,8 +612,8 @@ const gchar *destination_uri);

    Defines the URI that should be used to save the downloaded file to.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -642,7 +633,7 @@
    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -652,8 +643,8 @@

    Initiates the download. Notice that you must have set the destination-uri property before calling this method.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -666,7 +657,7 @@
    -

    Since 1.1.2

    +

    Since: 1.1.2

    @@ -675,8 +666,8 @@

    enum WebKitDownloadError

    Enum values used to denote the various download errors.

    -

    Members

    -
    +

    Members

    +
    @@ -713,8 +704,8 @@

    enum WebKitDownloadStatus

    Enum values used to denote the various states of a download.

    -

    Members

    -
    +

    Members

    +
    @@ -776,7 +767,7 @@

    The length of the data already downloaded

    Flags: Read

    Default value: 0

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -785,7 +776,7 @@

    The URI of the save location for this download.

    Flags: Read / Write

    Default value: ""

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -793,7 +784,7 @@
      “network-request”          WebKitNetworkRequest *

    The WebKitNetworkRequest instance associated with the download.

    Flags: Read / Write / Construct Only

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -801,7 +792,7 @@
      “network-response”         WebKitNetworkResponse *

    The WebKitNetworkResponse instance associated with the download.

    Flags: Read / Write / Construct Only

    -

    Since 1.1.16

    +

    Since: 1.1.16


    @@ -815,7 +806,7 @@

    Flags: Read

    Allowed values: [0,1]

    Default value: 1

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -824,7 +815,7 @@

    Determines the current status of the download.

    Flags: Read

    Default value: WEBKIT_DOWNLOAD_STATUS_CREATED

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -833,7 +824,7 @@

    The file name suggested as default when saving

    Flags: Read

    Default value: ""

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -842,7 +833,7 @@

    The total size of the file

    Flags: Read

    Default value: 0

    -

    Since 1.1.2

    +

    Since: 1.1.2

    @@ -861,8 +852,8 @@ will take any value of WebKitDownloadError.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -899,12 +890,11 @@

    Flags: Run Last

    -

    Since 1.1.2

    +

    Since: 1.1.2

    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-webkitwebview.html webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-webkitwebview.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/webkitgtk-webkitwebview.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/webkitgtk-webkitwebview.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebView - +WebKitWebView: WebKitGTK+ Reference Manual + - + @@ -37,7 +37,7 @@

    Functions

    -
    +
    @@ -157,7 +157,7 @@
    -GtkTargetList * +GtkTargetList * webkit_web_view_get_copy_target_list () @@ -172,7 +172,7 @@
    -WebKitDOMDocument * +WebKitDOMDocument * webkit_web_view_get_dom_document () @@ -219,7 +219,7 @@
    -GdkPixbuf * +GdkPixbuf * webkit_web_view_get_icon_pixbuf () @@ -258,7 +258,7 @@
    -GtkTargetList * +GtkTargetList * webkit_web_view_get_paste_target_list () @@ -424,7 +424,7 @@
    -GtkWidget * +GtkWidget * webkit_web_view_new () @@ -576,7 +576,7 @@
    -GdkPixbuf * +GdkPixbuf * webkit_web_view_try_get_favicon_pixbuf () @@ -635,7 +635,7 @@

    Properties

    -
    +
    @@ -644,7 +644,7 @@ +GtkTargetList * @@ -678,7 +678,7 @@ +GtkIMContext * @@ -689,7 +689,7 @@ +GtkTargetList * @@ -759,7 +759,7 @@

    Signals

    -
    -GtkTargetList * copy-target-list Read
    -GtkIMContext * im-context Read
    -GtkTargetList * paste-target-list Read
    +
    @@ -788,7 +788,7 @@ +GtkWidget* @@ -1078,7 +1078,7 @@

    Types and Values

    -
    -GtkWidget* create-plugin-widget Action
    +
    @@ -1105,10 +1105,10 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── GInitiallyUnowned
    -        ╰── GtkWidget
    -            ╰── GtkContainer
    +        ╰── GtkWidget
    +            ╰── GtkContainer
                     ╰── WebKitWebView
     
    @@ -1116,13 +1116,13 @@

    Implemented Interfaces

    WebKitWebView implements - AtkImplementorIface, GtkBuildable and GtkScrollable.

    + AtkImplementorIface, GtkBuildable and GtkScrollable.

    Description

    WebKitWebView is the central class of the WebKitGTK+ API. It is a -GtkWidget implementing the scrolling interface which means you can -embed in a GtkScrolledWindow. It is responsible for managing the +GtkWidget implementing the scrolling interface which means you can +embed in a GtkScrolledWindow. It is responsible for managing the drawing of the content, forwarding of events. You can load any URI into the WebKitWebView or any kind of data string. With WebKitWebSettings you can control various aspects of the rendering and loading of the content. @@ -1154,8 +1154,8 @@ webkit_web_view_can_copy_clipboard (WebKitWebView *web_view);

    Determines whether or not it is currently possible to copy to the clipboard.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1169,9 +1169,8 @@
    -

    Returns

    +

    Returns

    TRUE if a selection can be copied, FALSE if not

    -


    @@ -1181,8 +1180,8 @@ webkit_web_view_can_cut_clipboard (WebKitWebView *web_view);

    Determines whether or not it is currently possible to cut to the clipboard.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1196,9 +1195,8 @@
    -

    Returns

    +

    Returns

    TRUE if a selection can be cut, FALSE if not

    -


    @@ -1208,8 +1206,8 @@ webkit_web_view_can_go_back (WebKitWebView *web_view);

    Determines whether web_view has a previous history item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1223,9 +1221,8 @@
    -

    Returns

    +

    Returns

    TRUE if able to move back, FALSE otherwise

    -


    @@ -1239,8 +1236,8 @@ . Negative values represent steps backward while positive values represent steps forward.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1261,10 +1258,9 @@
    -

    Returns

    +

    Returns

    TRUE if able to move back or forward the given number of steps, FALSE otherwise

    -


    @@ -1274,8 +1270,8 @@ webkit_web_view_can_go_forward (WebKitWebView *web_view);

    Determines whether web_view has a next history item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1289,9 +1285,8 @@
    -

    Returns

    +

    Returns

    TRUE if able to move forward, FALSE otherwise

    -


    @@ -1301,8 +1296,8 @@ webkit_web_view_can_paste_clipboard (WebKitWebView *web_view);

    Determines whether or not it is currently possible to paste from the clipboard.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1316,9 +1311,8 @@
    -

    Returns

    +

    Returns

    TRUE if a selection can be pasted, FALSE if not

    -


    @@ -1329,8 +1323,8 @@

    Determines whether or not it is currently possible to redo the last editing command in the view.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1344,11 +1338,10 @@
    -

    Returns

    +

    Returns

    TRUE if a redo can be done, FALSE if not

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -1358,8 +1351,8 @@ const gchar *mime_type);

    This functions returns whether or not a MIME type can be displayed using this view.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1380,11 +1373,10 @@
    -

    Returns

    +

    Returns

    a gboolean indicating if the MIME type can be displayed

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -1394,8 +1386,8 @@

    Determines whether or not it is currently possible to undo the last editing command in the view.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1409,11 +1401,10 @@
    -

    Returns

    +

    Returns

    TRUE if a undo can be done, FALSE if not

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -1423,8 +1414,8 @@

    Copies the current selection inside the web_view to the clipboard.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1446,8 +1437,8 @@

    Cuts the current selection inside the web_view to the clipboard.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1469,8 +1460,8 @@

    Deletes the current selection inside the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1501,8 +1492,8 @@

    Obtains the WebKitWebBackForwardList associated with the given WebKitWebView. The WebKitWebBackForwardList is owned by the WebKitWebView.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1516,7 +1507,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebBackForwardList.

    [transfer none]

    @@ -1524,16 +1515,16 @@

    webkit_web_view_get_copy_target_list ()

    -
    GtkTargetList *
    +
    GtkTargetList *
     webkit_web_view_get_copy_target_list (WebKitWebView *web_view);

    This function returns the list of targets this WebKitWebView can provide for clipboard copying and as DND source. The targets in the list are added with values from the WebKitWebViewTargetInfo enum, -using gtk_target_list_add() and -gtk_target_list_add_text_targets().

    +using gtk_target_list_add() and +gtk_target_list_add_text_targets().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1547,9 +1538,8 @@
    -

    Returns

    -

    the GtkTargetList

    -

    +

    Returns

    +

    the GtkTargetList


    @@ -1560,8 +1550,8 @@

    Returns the current encoding of the WebKitWebView, not the default-encoding of WebKitWebSettings.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1575,21 +1565,20 @@
    -

    Returns

    +

    Returns

    a string containing the current custom encoding for web_view , or NULL if there's none set.

    -

    -

    Since 1.1.1

    +

    Since: 1.1.1


    webkit_web_view_get_dom_document ()

    -
    WebKitDOMDocument *
    +
    WebKitDOMDocument *
     webkit_web_view_get_dom_document (WebKitWebView *web_view);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1603,13 +1592,13 @@
    -

    Returns

    -

    the WebKitDOMDocument currently loaded in +

    Returns

    +

    the WebKitDOMDocument currently loaded in the main frame of the web_view or NULL if no document is loaded.

    [transfer none]

    -

    Since 1.3.1

    +

    Since: 1.3.1


    @@ -1623,8 +1612,8 @@ 's document programmatically regardless of this setting.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1638,9 +1627,8 @@
    -

    Returns

    +

    Returns

    a gboolean indicating the editable state

    -


    @@ -1650,8 +1638,8 @@ webkit_web_view_get_encoding (WebKitWebView *web_view);

    Returns the default encoding of the WebKitWebView.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1665,11 +1653,10 @@
    -

    Returns

    +

    Returns

    the default encoding

    -

    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -1678,8 +1665,8 @@ webkit_web_view_get_focused_frame (WebKitWebView *web_view);

    Returns the frame that has focus or an active text selection.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1693,7 +1680,7 @@
    -

    Returns

    +

    Returns

    The focused WebKitWebFrame or NULL if no frame is focused.

    [transfer none]

    @@ -1705,8 +1692,8 @@ webkit_web_view_get_full_content_zoom (WebKitWebView *web_view);

    Returns whether the zoom level affects only text or all elements.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1720,26 +1707,25 @@
    -

    Returns

    +

    Returns

    FALSE if only text should be scaled (the default), TRUE if the full content of the view should be scaled.

    -

    -

    Since 1.0.1

    +

    Since: 1.0.1


    webkit_web_view_get_hit_test_result ()

    WebKitHitTestResult *
     webkit_web_view_get_hit_test_result (WebKitWebView *web_view,
    -                                     GdkEventButton *event);
    + GdkEventButton *event);

    Does a 'hit test' in the coordinates specified by event to figure out context information about that position in the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1753,30 +1739,30 @@ - +

    event

    a GdkEventButton

    a GdkEventButton

     
    -

    Returns

    +

    Returns

    a newly created WebKitHitTestResult with the context of the specified position.

    [transfer full]

    -

    Since 1.1.15

    +

    Since: 1.1.15


    webkit_web_view_get_icon_pixbuf ()

    -
    GdkPixbuf *
    +
    GdkPixbuf *
     webkit_web_view_get_icon_pixbuf (WebKitWebView *web_view);

    webkit_web_view_get_icon_pixbuf has been deprecated since version 1.8 and should not be used in newly-written code.

    Use webkit_web_view_try_get_favicon_pixbuf() instead.

    -

    Obtains a GdkPixbuf of the favicon for the given WebKitWebView, or +

    Obtains a GdkPixbuf of the favicon for the given WebKitWebView, or a default icon if there is no icon for the given page. Use webkit_web_view_get_icon_uri() if you need to distinguish these cases. Usually you want to connect to WebKitWebView::icon-loaded and call this @@ -1785,8 +1771,8 @@ be resized before it is displayed. See also webkit_icon_database_get_icon_pixbuf().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1800,11 +1786,11 @@
    -

    Returns

    -

    a new reference to a GdkPixbuf, or NULL.

    +

    Returns

    +

    a new reference to a GdkPixbuf, or NULL.

    [transfer full]

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -1814,8 +1800,8 @@

    Obtains the URI for the favicon for the given WebKitWebView, or NULL if there is none.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1829,11 +1815,10 @@
    -

    Returns

    +

    Returns

    the URI for the favicon, or NULL

    -

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -1846,8 +1831,8 @@ so this function will only return NULL if the argument is not a valid WebKitWebView.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1861,11 +1846,11 @@
    -

    Returns

    +

    Returns

    the WebKitWebInspector instance.

    [transfer none]

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -1874,8 +1859,8 @@ webkit_web_view_get_load_status (WebKitWebView *web_view);

    Determines the current status of the load.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1889,11 +1874,10 @@
    -

    Returns

    +

    Returns

    a WebKitLoadStatus specifying the status of the current load

    -

    -

    Since 1.1.7

    +

    Since: 1.1.7


    @@ -1903,8 +1887,8 @@

    Returns the main frame for the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1918,7 +1902,7 @@
    -

    Returns

    +

    Returns

    the main WebKitWebFrame for web_view .

    [transfer none]

    @@ -1927,16 +1911,16 @@

    webkit_web_view_get_paste_target_list ()

    -
    GtkTargetList *
    +
    GtkTargetList *
     webkit_web_view_get_paste_target_list (WebKitWebView *web_view);

    This function returns the list of targets this WebKitWebView can provide for clipboard pasting and as DND destination. The targets in the list are added with values from the WebKitWebViewTargetInfo enum, -using gtk_target_list_add() and -gtk_target_list_add_text_targets().

    +using gtk_target_list_add() and +gtk_target_list_add_text_targets().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1950,9 +1934,8 @@
    -

    Returns

    -

    the GtkTargetList

    -

    +

    Returns

    +

    the GtkTargetList


    @@ -1962,8 +1945,8 @@ webkit_web_view_get_progress (WebKitWebView *web_view);

    Determines the current progress of the load.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1977,12 +1960,11 @@
    -

    Returns

    +

    Returns

    a gdouble representing the status of the current load. This value will be in the range [0, 1].

    -

    -

    Since 1.1.7

    +

    Since: 1.1.7


    @@ -1996,8 +1978,8 @@ its reference count if you intend to keep it alive for longer than the WebKitWebView.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2011,7 +1993,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebSettings instance.

    [transfer none]

    @@ -2024,8 +2006,8 @@

    Returns the web_view 's document title

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2039,12 +2021,11 @@
    -

    Returns

    +

    Returns

    the title of web_view

    -

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -2053,8 +2034,8 @@ webkit_web_view_get_transparent (WebKitWebView *web_view);

    Returns whether the WebKitWebView has a transparent background.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2068,10 +2049,9 @@
    -

    Returns

    +

    Returns

    FALSE when the WebKitWebView draws a solid background (the default), otherwise TRUE.

    -


    @@ -2082,8 +2062,8 @@

    Returns the current URI of the contents displayed by the web_view

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2097,12 +2077,11 @@
    -

    Returns

    +

    Returns

    the URI of web_view

    -

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -2113,8 +2092,8 @@ WebKitWebView. Check the property's documentation for more information.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2128,12 +2107,11 @@
    -

    Returns

    +

    Returns

    the WebKitWebViewViewMode currently set for the WebKitWebView.

    -

    -

    Since 1.3.4

    +

    Since: 1.3.4


    @@ -2141,8 +2119,8 @@
    gboolean
     webkit_web_view_get_view_source_mode (WebKitWebView *web_view);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2156,12 +2134,11 @@
    -

    Returns

    +

    Returns

    TRUE if web_view is in view source mode, FALSE otherwise.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -2178,8 +2155,8 @@ page has a viewport meta tag. You can check whether the data should be used by checking the “valid” property.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2193,11 +2170,11 @@
    -

    Returns

    +

    Returns

    the WebKitViewportAttributes instance.

    [transfer none]

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -2211,8 +2188,8 @@ the zoom level changes the text size, or if TRUE, scales all elements in the page.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2226,12 +2203,11 @@
    -

    Returns

    +

    Returns

    the zoom level of web_view

    -

    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -2240,8 +2216,8 @@ webkit_web_view_go_back (WebKitWebView *web_view);

    Loads the previous history item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2266,8 +2242,8 @@ item. Negative values represent steps backward while positive values represent steps forward.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2295,8 +2271,8 @@ webkit_web_view_go_forward (WebKitWebView *web_view);

    Loads the next history item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2319,8 +2295,8 @@ WebKitWebHistoryItem *item);

    Go to the specified WebKitWebHistoryItem

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2341,9 +2317,8 @@
    -

    Returns

    +

    Returns

    TRUE if loading of item is successful, FALSE if not

    -


    @@ -2353,8 +2328,8 @@ webkit_web_view_has_selection (WebKitWebView *web_view);

    Determines whether text was selected.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2368,9 +2343,8 @@
    -

    Returns

    +

    Returns

    TRUE if there is selected text, FALSE if not

    -


    @@ -2388,8 +2362,8 @@ with the specified base_uri .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2426,8 +2400,8 @@ source once any data has been received. Use webkit_web_view_stop_loading() to stop the load.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2447,7 +2421,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -2469,8 +2443,8 @@

    If encoding is NULL, "UTF-8" is assumed.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2514,8 +2488,8 @@ const gchar *uri);

    Requests loading of the specified URI string.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2535,7 +2509,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -2547,8 +2521,8 @@ guint limit);

    Attempts to highlight all occurances of string inside web_view.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2579,9 +2553,8 @@
    -

    Returns

    +

    Returns

    the number of strings highlighted

    -


    @@ -2589,15 +2562,15 @@

    webkit_web_view_move_cursor ()

    void
     webkit_web_view_move_cursor (WebKitWebView *web_view,
    -                             GtkMovementStep step,
    +                             GtkMovementStep step,
                                  gint count);

    Move the cursor in view as described by step and count .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2611,7 +2584,7 @@ - + @@ -2622,19 +2595,15 @@

    step

    a GtkMovementStep

    a GtkMovementStep

     
    -

    Since 1.1.4

    +

    Since: 1.1.4


    webkit_web_view_new ()

    -
    GtkWidget *
    +
    GtkWidget *
     webkit_web_view_new (void);

    -
    -

    Returns

    -

    -

    @@ -2648,8 +2617,8 @@

    Requests loading of the specified URI string.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2678,8 +2647,8 @@

    Pastes the current contents of the clipboard to the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2700,8 +2669,8 @@ webkit_web_view_redo (WebKitWebView *web_view);

    Redoes the last editing command in the view, if possible.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2714,7 +2683,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -2732,8 +2701,8 @@

    Reloads the web_view without using any cached data.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2746,7 +2715,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -2759,8 +2728,8 @@ gboolean wrap);

    Looks for a specified string inside web_view.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2796,9 +2765,8 @@
    -

    Returns

    +

    Returns

    TRUE on success or FALSE on failure

    -


    @@ -2809,8 +2777,8 @@

    Attempts to select everything inside the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2833,8 +2801,8 @@

    Sets the current WebKitWebView encoding, without modifying the default one, and reloads the page.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2854,7 +2822,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -2879,8 +2847,8 @@ contents of a WebKitWebView editable without altering the document or DOM structure.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2909,8 +2877,8 @@ gboolean full_content_zoom);

    Sets whether the zoom level affects only text or all elements.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2931,7 +2899,7 @@
    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -2942,8 +2910,8 @@ gboolean highlight);

    Highlights text matches previously marked by webkit_web_view_mark_text_matches.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -2973,8 +2941,8 @@ gboolean flag);

    Set the view to maintain a back or forward list of history items.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3012,8 +2980,8 @@

    The settings are automatically applied to web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3044,8 +3012,8 @@

    Pass FALSE to have the WebKitWebView draw a solid background (the default), otherwise TRUE.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3076,8 +3044,8 @@

    Sets the view-mode property of the WebKitWebView. Check the property's documentation for more information.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3097,7 +3065,7 @@
    -

    Since 1.3.4

    +

    Since: 1.3.4


    @@ -3109,8 +3077,8 @@ TRUE before loading a URI will display the source of the web page in a nice and readable format.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3130,7 +3098,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -3145,8 +3113,8 @@ the zoom level changes the text size, or if TRUE, scales all elements in the page.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3166,7 +3134,7 @@
    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -3176,8 +3144,8 @@

    Stops any ongoing load in the web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3194,12 +3162,12 @@

    webkit_web_view_try_get_favicon_pixbuf ()

    -
    GdkPixbuf *
    +
    GdkPixbuf *
     webkit_web_view_try_get_favicon_pixbuf
                                    (WebKitWebView *web_view,
                                     guint width,
                                     guint height);
    -

    Obtains a GdkPixbuf of the favicon for the given +

    Obtains a GdkPixbuf of the favicon for the given WebKitWebView. This will return NULL is there is no icon for the current WebKitWebView or if the icon is in the database but not available at the moment of this call. Use @@ -3210,8 +3178,8 @@ to this function the icon database one returns the URL of the page containing the icon.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3237,11 +3205,11 @@
    -

    Returns

    -

    a new reference to a GdkPixbuf, or NULL.

    +

    Returns

    +

    a new reference to a GdkPixbuf, or NULL.

    [transfer full]

    -

    Since 1.8

    +

    Since: 1.8


    @@ -3250,8 +3218,8 @@ webkit_web_view_undo (WebKitWebView *web_view);

    Undoes the last editing command in the view, if possible.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3264,7 +3232,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -3273,8 +3241,8 @@ webkit_web_view_unmark_text_matches (WebKitWebView *web_view);

    Removes highlighting previously set by webkit_web_view_mark_text_matches.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3299,8 +3267,8 @@ property of the WebKitWebSettings associated with web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3313,7 +3281,7 @@
    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -3326,8 +3294,8 @@ property of the WebKitWebSettings associated with web_view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3340,7 +3308,7 @@
    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -3348,8 +3316,8 @@
    WebKitWebWindowFeatures *
     webkit_web_view_get_window_features (WebKitWebView *web_view);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3363,12 +3331,12 @@
    -

    Returns

    +

    Returns

    the instance of WebKitWebWindowFeatures held by the given WebKitWebView.

    [transfer none]

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -3378,8 +3346,8 @@

    Retrieves a snapshot with the visible contents of webview .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3393,12 +3361,12 @@
    -

    Returns

    +

    Returns

    a cairo_surface_t .

    [transfer full]

    -

    Since 1.10

    +

    Since: 1.10

    @@ -3407,8 +3375,8 @@

    enum WebKitNavigationResponse

    Enum values used to denote the various responses to a navigation policy decision.

    -

    Members

    -
    +

    Members

    +
    @@ -3446,8 +3414,8 @@

    Enum values used to denote the info value of various selection types. These can be used to interpret the data WebKitGTK+ publishes via GtkClipboard and drag-and-drop.

    -

    Members

    -
    +

    Members

    +
    @@ -3499,8 +3467,8 @@

    Enum values used to denote the various types of view modes. See the “view-mode” property.

    -

    Members

    -
    +

    Members

    +
    @@ -3558,10 +3526,10 @@

    Property Details

    The “copy-target-list” property

    -
      “copy-target-list”         GtkTargetList *
    +
      “copy-target-list”         GtkTargetList *

    The list of targets this web view supports for clipboard copying.

    Flags: Read

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -3570,7 +3538,7 @@

    The custom encoding of the web view.

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -3587,7 +3555,7 @@

    The default encoding of the web view.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -3596,7 +3564,7 @@

    Whether the full content is scaled when zooming.

    Flags: Read / Write

    Default value: FALSE

    -

    Since 1.0.1

    +

    Since: 1.0.1


    @@ -3605,18 +3573,18 @@

    The URI for the favicon for the WebKitWebView.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.18

    +

    Since: 1.1.18


    The “im-context” property

    -
      “im-context”               GtkIMContext *
    +
      “im-context”               GtkIMContext *

    The GtkIMMulticontext for the WebKitWebView.

    This is the input method context used for all text entry widgets inside the WebKitWebView. It can be used to generate context menu items for controlling the active input method.

    Flags: Read

    -

    Since 1.1.20

    +

    Since: 1.1.20


    @@ -3633,15 +3601,15 @@ the signals will be emitted.

    Flags: Read

    Default value: WEBKIT_LOAD_FINISHED

    -

    Since 1.1.7

    +

    Since: 1.1.7


    The “paste-target-list” property

    -
      “paste-target-list”        GtkTargetList *
    +
      “paste-target-list”        GtkTargetList *

    The list of targets this web view supports for clipboard pasting.

    Flags: Read

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -3651,7 +3619,7 @@

    Flags: Read

    Allowed values: [0,1]

    Default value: 1

    -

    Since 1.1.7

    +

    Since: 1.1.7


    @@ -3675,7 +3643,7 @@

    Returns the @web_view's document title.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -3692,7 +3660,7 @@

    Returns the current URI of the contents displayed by the @web_view.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -3709,7 +3677,7 @@

    See http://www.w3.org/TR/view-mode/ for more information.

    Flags: Read / Write

    Default value: WEBKIT_WEB_VIEW_VIEW_MODE_WINDOWED

    -

    Since 1.3.4

    +

    Since: 1.3.4


    @@ -3717,7 +3685,7 @@
      “viewport-attributes”      WebKitViewportAttributes *

    The associated WebKitViewportAttributes instance.

    Flags: Read

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -3725,7 +3693,7 @@
      “web-inspector”            WebKitWebInspector *

    The associated WebKitWebInspector instance.

    Flags: Read

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -3733,7 +3701,7 @@
      “window-features”          WebKitWebWindowFeatures *

    An associated WebKitWebWindowFeatures instance.

    Flags: Read / Write

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -3743,7 +3711,7 @@

    Flags: Read / Write

    Allowed values: >= G_MINFLOAT

    Default value: 1

    -

    Since 1.0.1

    +

    Since: 1.0.1

    @@ -3758,8 +3726,8 @@ signal handler does not do anything. It is the owner's responsibility to hide or delete the web view, if necessary.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3780,13 +3748,12 @@
    -

    Returns

    +

    Returns

    TRUE to stop handlers from being invoked for the event or FALSE to propagate the event furter

    -

    Flags: Run Last

    -

    Since 1.1.11

    +

    Since: 1.1.11


    @@ -3799,8 +3766,8 @@ gpointer user_data)

    A JavaScript console message was created.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3836,10 +3803,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -3848,7 +3814,7 @@

    The “context-menu” signal

    gboolean
     user_function (WebKitWebView       *web_view,
    -               GtkWidget           *default_menu,
    +               GtkWidget           *default_menu,
                    WebKitHitTestResult *hit_test_result,
                    gboolean             triggered_with_keyboard,
                    gpointer             user_data)
    @@ -3862,7 +3828,7 @@ used to position the popup menu. When the context menu has been triggered by a mouse event you could either use the hit_test_result coordinates or pass NULL -to the GtkMenuPositionFunc parameter of gtk_menu_popup() function. +to the GtkMenuPositionFunc parameter of gtk_menu_popup() function. Note that coordinates of hit_test_result are relative to web_view window.

    @@ -3872,8 +3838,8 @@ If you don't want any context menu to be shown, you can simply connect to this signal and return TRUE without doing anything else.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3909,7 +3875,7 @@

    Flags: Run Last

    -

    Since 1.10

    +

    Since: 1.10


    @@ -3921,8 +3887,8 @@ copy the selection to the clipboard.

    The default bindings for this signal are Ctrl-c and Ctrl-Insert.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3947,7 +3913,7 @@

    The “create-plugin-widget” signal

    -
    GtkWidget*
    +
    GtkWidget*
     user_function (WebKitWebView *web_view,
                    gchar         *mime_type,
                    gchar         *uri,
    @@ -3960,8 +3926,8 @@
     to set the property value of "webkit-widget-is-selected". This can
     be used to draw a visual indicator of the selection.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -3997,12 +3963,12 @@
    -

    Returns

    -

    a new GtkWidget, or NULL.

    +

    Returns

    +

    a new GtkWidget, or NULL.

    [transfer full]

    Flags: Action

    -

    Since 1.1.8

    +

    Since: 1.1.8


    @@ -4020,8 +3986,8 @@ the new WebKitWebView. The widget to which the widget is added will handle that.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4047,12 +4013,12 @@
    -

    Returns

    +

    Returns

    a newly allocated WebKitWebView, or NULL.

    [transfer full]

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -4064,8 +4030,8 @@ cut the selection to the clipboard.

    The default bindings for this signal are Ctrl-x and Shift-Delete.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4092,16 +4058,16 @@

    The “database-quota-exceeded” signal

    void
     user_function (WebKitWebView *web_view,
    -               GObject       *frame,
    -               GObject       *database,
    +               GObject       *frame,
    +               GObject       *database,
                    gpointer       user_data)

    The “database-quota-exceeded” signal will be emitted when a Web Database exceeds the quota of its security origin. This signal may be used to increase the size of the quota before the originating operation fails.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4132,7 +4098,7 @@

    Flags: Action

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -4144,8 +4110,8 @@

    Emitted when the DOM document object load is finished for the given frame.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4198,8 +4164,8 @@ is to download anything that WebKit can't handle, which you can figure out by using webkit_web_view_can_show_mime_type()).

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4226,13 +4192,12 @@
    -

    Returns

    +

    Returns

    TRUE if the download should be performed, FALSE to cancel it

    -

    Flags: Run Last

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -4241,8 +4206,8 @@ user_function (WebKitWebView *web_view, gpointer user_data)
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4271,8 +4236,8 @@ user_function (WebKitWebView *web_view, gpointer user_data)
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4299,7 +4264,7 @@

    The “entering-fullscreen” signal

    gboolean
     user_function (WebKitWebView        *web_view,
    -               WebKitDOMHTMLElement *element,
    +               WebKitDOMHTMLElement *element,
                    gpointer              user_data)

    Emitted when JavaScript code calls element.webkitRequestFullScreen. If the @@ -4310,8 +4275,8 @@ (e.g. hide some widgets that would otherwise be part of the full screen window).

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4325,7 +4290,7 @@ - + @@ -4337,13 +4302,12 @@

    element

    the WebKitDOMHTMLElement which has requested full screen display.

    the WebKitDOMHTMLElement which has requested full screen display.

     
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to continue emission of the event.

    -

    Flags: Run Last

    -

    Since 1.9.0

    +

    Since: 1.9.0


    @@ -4357,8 +4321,8 @@ emitted for the main frame, which originates in the WebKitWebView constructor and may be accessed at any time using webkit_web_view_get_main_frame.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4384,7 +4348,7 @@

    Flags: Action

    -

    Since 1.3.4

    +

    Since: 1.3.4


    @@ -4397,8 +4361,8 @@ wants to cancel geolocation permission it had requested before.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4424,7 +4388,7 @@

    Flags: Run Last

    -

    Since 1.1.23

    +

    Since: 1.1.23


    @@ -4444,8 +4408,8 @@ webkit_geolocation_policy_deny() on policy_decision .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4476,7 +4440,7 @@

    Flags: Run Last

    -

    Since 1.1.23

    +

    Since: 1.1.23


    @@ -4488,8 +4452,8 @@ gpointer user_data)

    When the cursor is over a link, this signal is emitted.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4532,8 +4496,8 @@ See WebKitIconDatabase::icon-loaded if you want to keep track of icons for child frames.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4559,22 +4523,22 @@

    Flags: Run Last

    -

    Since 1.1.18

    +

    Since: 1.1.18


    The “leaving-fullscreen” signal

    gboolean
     user_function (WebKitWebView        *web_view,
    -               WebKitDOMHTMLElement *element,
    +               WebKitDOMHTMLElement *element,
                    gpointer              user_data)

    Emitted when the WebView is about to restore its top level window out of its full screen state. This signal can be used by client code to restore widgets hidden during the entering-fullscreen stage for instance.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4588,7 +4552,7 @@ - + @@ -4600,13 +4564,12 @@

    element

    the WebKitDOMHTMLElement which is currently displayed full screen.

    the WebKitDOMHTMLElement which is currently displayed full screen.

     
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to continue emission of the event.

    -

    Flags: Run Last

    -

    Since 1.9.0

    +

    Since: 1.9.0


    @@ -4621,8 +4584,8 @@

    Use the "load-status" property instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4663,8 +4626,8 @@ will display a stock error page. You need to handle the signal if you want to provide your own error page.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4700,13 +4663,12 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    -

    Since 1.1.6

    +

    Since: 1.1.6


    @@ -4720,8 +4682,8 @@

    Use the "load-status" property instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4760,8 +4722,8 @@

    Use the "progress" property instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4801,8 +4763,8 @@

    Use the "load-status" property instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4855,8 +4817,8 @@ object.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4897,28 +4859,27 @@
    -

    Returns

    +

    Returns

    TRUE if a decision was made, FALSE to have the default behavior apply

    -

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    The “move-cursor” signal

    gboolean
     user_function (WebKitWebView  *web_view,
    -               GtkMovementStep step,
    +               GtkMovementStep step,
                    gint            count,
                    gpointer        user_data)

    The “move-cursor” will be emitted to apply the cursor movement described by its parameters to the view .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -4932,7 +4893,7 @@ - + @@ -4950,12 +4911,11 @@

    step

    the type of movement, one of GtkMovementStep

    the type of movement, one of GtkMovementStep

     
    -

    Returns

    +

    Returns

    TRUE or FALSE

    -

    Flags: Action

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -4979,8 +4939,8 @@ object.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5021,13 +4981,12 @@
    -

    Returns

    +

    Returns

    TRUE if a decision was made, FALSE to have the default behavior apply

    -

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -5045,8 +5004,8 @@ instead

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5077,9 +5036,8 @@
    -

    Returns

    +

    Returns

    a WebKitNavigationResponse

    -

    Flags: Run Last

    @@ -5114,8 +5072,8 @@ object.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5156,13 +5114,12 @@
    -

    Returns

    +

    Returns

    TRUE if a decision was made, FALSE to have the default behavior apply

    -

    Flags: Run Last

    -

    Since 1.1.4

    +

    Since: 1.1.4


    @@ -5173,8 +5130,8 @@ gpointer user_data)

    When a WebKitWebFrame receives an onload event this signal is emitted.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5211,8 +5168,8 @@ paste the contents of the clipboard into the Web view.

    The default bindings for this signal are Ctrl-v and Shift-Insert.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5239,7 +5196,7 @@

    The “populate-popup” signal

    void
     user_function (WebKitWebView *web_view,
    -               GtkMenu       *menu,
    +               GtkMenu       *menu,
                    gpointer       user_data)

    When a context menu is about to be displayed this signal is emitted.

    Add menu items to menu to extend the context menu.

    @@ -5248,8 +5205,8 @@

    Use “context-menu” signal instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5292,8 +5249,8 @@ ignore a print request you must connect to this signal, and return TRUE.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5319,13 +5276,12 @@
    -

    Returns

    +

    Returns

    TRUE if the print request has been handled, FALSE if the default handler should run

    -

    Flags: Run Last

    -

    Since 1.1.5

    +

    Since: 1.1.5


    @@ -5337,8 +5293,8 @@ redo the last editing command.

    The default binding for this signal is Ctrl-Shift-z

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5359,7 +5315,7 @@

    Flags: Action

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -5376,8 +5332,8 @@ since the last time this signal was emitted. This is useful to provide progress information about the resource load operation.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5413,7 +5369,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -5426,8 +5382,8 @@ gpointer user_data)

    Invoked when a resource failed to load

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5463,7 +5419,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -5475,8 +5431,8 @@ gpointer user_data)

    Emitted when all the data for the resource was loaded

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5507,7 +5463,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -5522,14 +5478,14 @@

    Emitted when a request is about to be sent. You can modify the request while handling this signal. You can set the URI in the WebKitNetworkRequest object itself, and add/remove/replace -headers using the SoupMessage object it carries, if it is +headers using the SoupMessage object it carries, if it is present. See webkit_network_request_get_message(). Setting the request URI to "about:blank" will effectively cause the request to load nothing, and can be used to disable the loading of specific resources.

    Notice that information about an eventual redirect is available in response -'s SoupMessage, not in the SoupMessage carried by +'s SoupMessage, not in the SoupMessage carried by the request . If response is NULL, then this is not a @@ -5538,8 +5494,8 @@ the lifetime of the resource, but the contents may change from inbetween signal emissions.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5581,7 +5537,7 @@

    Flags: Action

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -5594,8 +5550,8 @@ gpointer user_data)

    Emitted when the first byte of data arrives

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5631,7 +5587,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -5650,15 +5606,15 @@ argument.

    The default signal handler will asynchronously run a regular -GtkFileChooserDialog for the user to interact with.

    +GtkFileChooserDialog for the user to interact with.

    If this signal is to be handled asynchronously, you must call g_object_ref() on the request , and return TRUE to indicate that the request is being handled. When you are ready to complete the request, call webkit_file_chooser_request_select_files().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5684,10 +5640,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -5701,8 +5656,8 @@ gpointer user_data)

    A JavaScript alert dialog was created.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5733,10 +5688,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -5751,8 +5705,8 @@ gpointer user_data)

    A JavaScript confirm dialog was created, providing Yes and No buttons.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5789,10 +5743,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -5808,8 +5761,8 @@ gpointer user_data)

    A JavaScript prompt dialog was created, providing an entry to input text.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5850,10 +5803,9 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Run Last

    @@ -5867,8 +5819,8 @@ select the complete contents of the text view.

    The default bindings for this signal is Ctrl-a.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5897,8 +5849,8 @@ user_function (WebKitWebView *web_view, gpointer user_data)
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5925,12 +5877,12 @@

    The “should-apply-style” signal

    gboolean
     user_function (WebKitWebView                *web_view,
    -               WebKitDOMCSSStyleDeclaration *set,
    -               WebKitDOMRange               *range,
    +               WebKitDOMCSSStyleDeclaration *set,
    +               WebKitDOMRange               *range,
                    gpointer                      user_data)
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -5944,12 +5896,12 @@ - + - + @@ -5967,11 +5919,11 @@

    The “should-begin-editing” signal

    gboolean
     user_function (WebKitWebView  *web_view,
    -               WebKitDOMRange *range,
    +               WebKitDOMRange *range,
                    gpointer        user_data)
    -

    Parameters

    -

    set

    a WebKitDOMCSSStyleDeclaration

    a WebKitDOMCSSStyleDeclaration

     

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -5985,7 +5937,7 @@ - + @@ -6003,14 +5955,14 @@

    The “should-change-selected-range” signal

    gboolean
     user_function (WebKitWebView          *web_view,
    -               WebKitDOMRange         *fromRange,
    -               WebKitDOMRange         *toRange,
    +               WebKitDOMRange         *fromRange,
    +               WebKitDOMRange         *toRange,
                    WebKitSelectionAffinity affinity,
                    gboolean                stillSelecting,
                    gpointer                user_data)
    -

    Parameters

    -

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6024,12 +5976,12 @@ - + - + @@ -6057,11 +6009,11 @@

    The “should-delete-range” signal

    gboolean
     user_function (WebKitWebView  *web_view,
    -               WebKitDOMRange *range,
    +               WebKitDOMRange *range,
                    gpointer        user_data)
    -

    Parameters

    -

    fromRange

    a WebKitDOMRange

    a WebKitDOMRange

     

    toRange

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6075,7 +6027,7 @@ - + @@ -6093,11 +6045,11 @@

    The “should-end-editing” signal

    gboolean
     user_function (WebKitWebView  *web_view,
    -               WebKitDOMRange *range,
    +               WebKitDOMRange *range,
                    gpointer        user_data)
    -

    Parameters

    -

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6111,7 +6063,7 @@ - + @@ -6129,13 +6081,13 @@

    The “should-insert-node” signal

    gboolean
     user_function (WebKitWebView     *web_view,
    -               WebKitDOMNode     *node,
    -               WebKitDOMRange    *range,
    +               WebKitDOMNode     *node,
    +               WebKitDOMRange    *range,
                    WebKitInsertAction action,
                    gpointer           user_data)
    -

    Parameters

    -

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6149,12 +6101,12 @@ - + - + @@ -6178,12 +6130,12 @@
    gboolean
     user_function (WebKitWebView     *web_view,
                    gchar             *string,
    -               WebKitDOMRange    *range,
    +               WebKitDOMRange    *range,
                    WebKitInsertAction action,
                    gpointer           user_data)
    -

    Parameters

    -

    node

    a WebKitDOMNode

    a WebKitDOMNode

     

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6202,7 +6154,7 @@ - + @@ -6225,11 +6177,11 @@

    The “should-show-delete-interface-for-element” signal

    gboolean
     user_function (WebKitWebView        *web_view,
    -               WebKitDOMHTMLElement *element,
    +               WebKitDOMHTMLElement *element,
                    gpointer              user_data)
    -

    Parameters

    -

    range

    a WebKitDOMRange

    a WebKitDOMRange

     
    +

    Parameters

    +
    @@ -6266,8 +6218,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6303,8 +6255,8 @@

    Use "notify::title" instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6346,8 +6298,8 @@ undo the last editing command.

    The default binding for this signal is Ctrl-z

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6368,7 +6320,7 @@

    Flags: Action

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -6377,8 +6329,8 @@ user_function (WebKitWebView *web_view, gpointer user_data)
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6410,8 +6362,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6443,8 +6395,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6482,8 +6434,8 @@ time of the window, so you may want to connect to the ::notify signal of the WebKitWebWindowFeatures object to handle those.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6504,13 +6456,12 @@
    -

    Returns

    +

    Returns

    TRUE to stop handlers from being invoked for the event or FALSE to propagate the event furter

    -

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -6525,8 +6476,8 @@ cleared in preparation for a new load. This is the preferred place to set custom properties on the window object using the JavaScriptCore API.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -6575,7 +6526,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitHitTestResult.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitHitTestResult.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitHitTestResult.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitHitTestResult.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitHitTestResult - +WebKitHitTestResult: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Properties

    -
    +
    @@ -55,7 +55,7 @@ +WebKitDOMNode * @@ -86,7 +86,7 @@

    Types and Values

    -
    -WebKitDOMNode * inner-node Read / Write / Construct Only
    +
    @@ -105,7 +105,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitHitTestResult
     
    @@ -116,6 +116,7 @@

    Functions

    +

    Types and Values

    @@ -129,8 +130,8 @@

    enum WebKitHitTestResultContext

    -

    Members

    -
    +

    Members

    +
    @@ -194,7 +195,7 @@

    Flags indicating the kind of target that received the event.

    Flags: Read / Write / Construct Only

    Default value: WEBKIT_HIT_TEST_RESULT_CONTEXT_DOCUMENT

    -

    Since 1.1.15

    +

    Since: 1.1.15


    @@ -203,12 +204,12 @@

    The URI of the image that is part of the target that received the event, if any.

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.15

    +

    Since: 1.1.15


    The “inner-node” property

    -
      “inner-node”               WebKitDOMNode *
    +
      “inner-node”               WebKitDOMNode *

    The DOM node at the coordinates where the hit test happened. Keep in mind that the node might not be representative of the information given in the context @@ -219,7 +220,7 @@ in the 'context' property, but the user might be confused by the lack of any link tag in 'inner-node'.

    Flags: Read / Write / Construct Only

    -

    Since 1.3.2

    +

    Since: 1.3.2


    @@ -228,7 +229,7 @@

    The URI to which the target that received the event points, if any.

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.15

    +

    Since: 1.1.15


    @@ -237,7 +238,7 @@

    The URI of the media that is part of the target that received the event, if any.

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.15

    +

    Since: 1.1.15


    @@ -246,7 +247,7 @@

    The x coordinate of the event relative to the view's window.

    Flags: Read / Write / Construct Only

    Default value: 0

    -

    Since 1.10

    +

    Since: 1.10


    @@ -255,12 +256,11 @@

    The x coordinate of the event relative to the view's window.

    Flags: Read / Write / Construct Only

    Default value: 0

    -

    Since 1.10

    +

    Since: 1.10

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitIconDatabase.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitIconDatabase.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitIconDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitIconDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitIconDatabase - +WebKitIconDatabase: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@
    -GdkPixbuf * +GdkPixbuf * webkit_icon_database_get_icon_pixbuf () @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -110,7 +110,7 @@

    Signals

    -
    +
    @@ -125,7 +125,7 @@

    Types and Values

    -
    +
    @@ -138,7 +138,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitIconDatabase
     
    @@ -172,8 +172,8 @@

    Clears all icons from the database.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -186,19 +186,19 @@
    -

    Since 1.3.13

    +

    Since: 1.3.13


    webkit_icon_database_get_icon_pixbuf ()

    -
    GdkPixbuf *
    +
    GdkPixbuf *
     webkit_icon_database_get_icon_pixbuf (WebKitIconDatabase *database,
                                           const gchar *page_uri);

    webkit_icon_database_get_icon_pixbuf has been deprecated since version 1.8 and should not be used in newly-written code.

    Use webkit_favicon_database_try_get_favicon_pixbuf() instead.

    -

    Obtains a GdkPixbuf of the favicon for the given page URI, or +

    Obtains a GdkPixbuf of the favicon for the given page URI, or a default icon if there is no icon for the given page. Use webkit_icon_database_get_icon_uri() if you need to distinguish these cases. Usually you want to connect to WebKitIconDatabase::icon-loaded and call this @@ -207,8 +207,8 @@ be resized before it is displayed. See also webkit_web_view_get_icon_pixbuf().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -229,11 +229,11 @@
    -

    Returns

    -

    a new reference to a GdkPixbuf, or NULL.

    +

    Returns

    +

    a new reference to a GdkPixbuf, or NULL.

    [transfer full]

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -248,8 +248,8 @@

    Obtains the URI for the favicon for the given page URI. See also webkit_web_view_get_icon_uri().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -270,11 +270,10 @@
    -

    Returns

    +

    Returns

    a newly allocated URI for the favicon, or NULL

    -

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -287,8 +286,8 @@

    Determines the absolute path to the database folder on disk.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -302,11 +301,10 @@
    -

    Returns

    +

    Returns

    the absolute path of the database folder, or NULL

    -

    -

    Since 1.3.13

    +

    Since: 1.3.13


    @@ -315,10 +313,6 @@ webkit_icon_database_get_type (void);

    -
    -

    Returns

    -

    -

    @@ -333,8 +327,8 @@

    Specifies the absolute path to the database folder on disk.

    Passing NULL or "" disables the icon database.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -354,7 +348,7 @@
    -

    Since 1.3.13

    +

    Since: 1.3.13

    @@ -378,7 +372,7 @@

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.3.13

    +

    Since: 1.3.13

    @@ -399,8 +393,8 @@

    Use WebKitFaviconDatabase::icon-loaded instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -431,12 +425,11 @@

    Flags: Run Last

    -

    Since 1.3.13

    +

    Since: 1.3.13

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitNetworkRequest.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitNetworkRequest.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitNetworkRequest.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitNetworkRequest.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitNetworkRequest - +WebKitNetworkRequest: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -58,7 +58,7 @@
    -SoupMessage * +SoupMessage * webkit_network_request_get_message () @@ -77,7 +77,7 @@

    Properties

    -
    +
    @@ -86,7 +86,7 @@ +SoupMessage * @@ -101,7 +101,7 @@

    Types and Values

    -
    -SoupMessage * message Read / Write / Construct Only
    +
    @@ -114,7 +114,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitNetworkRequest
     
    @@ -124,7 +124,7 @@ request. It is used whenever WebKit wants to provide information about a request that will be sent, or has been sent. Inside it you can find the URI of the request, and, for valid URIs, a -SoupMessage object, which provides access to further information +SoupMessage object, which provides access to further information such as headers.

    @@ -135,8 +135,8 @@ webkit_network_request_new (const gchar *uri);

    Creates a new WebKitNetworkRequest initialized with an URI.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -150,10 +150,9 @@
    -

    Returns

    +

    Returns

    a new WebKitNetworkRequest, or NULL if the URI is invalid.

    -


    @@ -162,8 +161,8 @@
    const gchar *
     webkit_network_request_get_uri (WebKitNetworkRequest *request);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -177,24 +176,23 @@
    -

    Returns

    +

    Returns

    the URI of the WebKitNetworkRequest

    -

    -

    Since 1.0.0

    +

    Since: 1.0.0


    webkit_network_request_get_message ()

    -
    SoupMessage *
    +
    SoupMessage *
     webkit_network_request_get_message (WebKitNetworkRequest *request);
    -

    Obtains the SoupMessage held and used by the given request. Notice +

    Obtains the SoupMessage held and used by the given request. Notice that modification of the SoupMessage of a request by signal handlers is only supported (as in, will only affect what is actually sent to the server) where explicitly documented.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -208,11 +206,11 @@
    -

    Returns

    -

    the SoupMessage.

    +

    Returns

    +

    the SoupMessage.

    [transfer none]

    -

    Since 1.1.9

    +

    Since: 1.1.9


    @@ -221,11 +219,11 @@ webkit_network_request_set_uri (WebKitNetworkRequest *request, const gchar *uri);

    Sets the URI held and used by the given request. When the request -has an associated SoupMessage, its URI will also be set by this +has an associated SoupMessage, its URI will also be set by this call.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -260,10 +258,10 @@

    Property Details

    The “message” property

    -
      “message”                  SoupMessage *
    -

    The SoupMessage that backs the request.

    +
      “message”                  SoupMessage *
    +

    The SoupMessage that backs the request.

    Flags: Read / Write / Construct Only

    -

    Since 1.1.10

    +

    Since: 1.1.10


    @@ -272,7 +270,7 @@

    The URI to which the request will be made.

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.1.10

    +

    Since: 1.1.10

    @@ -281,7 +279,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitNetworkResponse.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitNetworkResponse.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitNetworkResponse.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitNetworkResponse.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitNetworkResponse - +WebKitNetworkResponse: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -50,7 +50,7 @@
    -SoupMessage * +SoupMessage * webkit_network_response_get_message () @@ -76,7 +76,7 @@

    Properties

    -
    +
    @@ -85,7 +85,7 @@ +SoupMessage * @@ -106,7 +106,7 @@

    Types and Values

    -
    -SoupMessage * message Read / Write / Construct Only
    +
    @@ -119,7 +119,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitNetworkResponse
     
    @@ -135,8 +135,8 @@
    const gchar *
     webkit_network_response_get_uri (WebKitNetworkResponse *response);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -150,23 +150,22 @@
    -

    Returns

    +

    Returns

    the URI of the WebKitNetworkResponse

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    webkit_network_response_get_message ()

    -
    SoupMessage *
    +
    SoupMessage *
     webkit_network_response_get_message (WebKitNetworkResponse *response);
    -

    Obtains the SoupMessage that represents the given response. Notice +

    Obtains the SoupMessage that represents the given response. Notice that only the response side of the HTTP conversation is represented.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -180,11 +179,11 @@
    -

    Returns

    -

    the SoupMessage.

    +

    Returns

    +

    the SoupMessage.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -197,8 +196,8 @@ header, but this is not always present, and this method will return NULL in such case.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -212,11 +211,11 @@
    -

    Returns

    +

    Returns

    the suggested filename or NULL if not present.

    [transfer none]

    -

    Since 1.10

    +

    Since: 1.10


    @@ -225,11 +224,11 @@ webkit_network_response_set_uri (WebKitNetworkResponse *response, const gchar *uri);

    Sets the URI held and used by the given response. When the response -has an associated SoupMessage, its URI will also be set by this +has an associated SoupMessage, its URI will also be set by this call.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -249,7 +248,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -265,10 +264,10 @@

    Property Details

    The “message” property

    -
      “message”                  SoupMessage *
    -

    The SoupMessage that backs the response.

    +
      “message”                  SoupMessage *
    +

    The SoupMessage that backs the response.

    Flags: Read / Write / Construct Only

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -277,7 +276,7 @@

    The suggested filename for the response.

    Flags: Read

    Default value: NULL

    -

    Since 1.10

    +

    Since: 1.10


    @@ -286,7 +285,7 @@

    The URI to which the response will be made.

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -295,7 +294,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSecurityOrigin.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSecurityOrigin.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSecurityOrigin.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSecurityOrigin.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitSecurityOrigin - +WebKitSecurityOrigin: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -108,7 +108,7 @@

    Properties

    -
    +
    @@ -147,7 +147,7 @@

    Types and Values

    -
    +
    @@ -160,7 +160,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitSecurityOrigin
     
    @@ -186,8 +186,8 @@ (WebKitSecurityOrigin *securityOrigin);

    Returns a list of all Web Databases in the security origin.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -201,12 +201,12 @@
    -

    Returns

    +

    Returns

    a GList of databases in the security origin.

    [transfer container][element-type WebKitWebDatabase]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -215,8 +215,8 @@ webkit_security_origin_get_host (WebKitSecurityOrigin *securityOrigin);

    Returns the hostname for the security origin.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -230,11 +230,10 @@
    -

    Returns

    +

    Returns

    the hostname for the security origin

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -243,8 +242,8 @@ webkit_security_origin_get_port (WebKitSecurityOrigin *securityOrigin);

    Returns the port for the security origin.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -258,11 +257,10 @@
    -

    Returns

    +

    Returns

    the port for the security origin

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -271,8 +269,8 @@ webkit_security_origin_get_protocol (WebKitSecurityOrigin *securityOrigin);

    Returns the protocol for the security origin.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -286,11 +284,10 @@
    -

    Returns

    +

    Returns

    the protocol for the security origin

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -299,10 +296,6 @@ webkit_security_origin_get_type (void);

    -
    -

    Returns

    -

    -

    @@ -313,8 +306,8 @@

    Returns the quota for Web Database storage of the security origin in bytes.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -328,11 +321,10 @@
    -

    Returns

    +

    Returns

    the Web Database quota

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -343,8 +335,8 @@

    Returns the cumulative size of all Web Database database's in the origin in bytes.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -358,11 +350,10 @@
    -

    Returns

    +

    Returns

    the cumulative size of all databases

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -373,8 +364,8 @@ guint64 quota);

    Adjust the quota for Web Database storage of the security origin

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -394,7 +385,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -414,7 +405,7 @@

    The host of the security origin.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -424,7 +415,7 @@

    Flags: Read

    Allowed values: <= 65535

    Default value: 0

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -433,7 +424,7 @@

    The protocol of the security origin.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -442,7 +433,7 @@

    The web database qouta of the security origin in bytes.

    Flags: Read / Write

    Default value: 0

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -451,12 +442,11 @@

    The cumulative size of all web databases in the security origin in bytes.

    Flags: Read

    Default value: 0

    -

    Since 1.1.14

    +

    Since: 1.1.14

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSoupAuthDialog.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSoupAuthDialog.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSoupAuthDialog.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSoupAuthDialog.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitSoupAuthDialog - +WebKitSoupAuthDialog: WebKitGTK+ Reference Manual + - + @@ -30,14 +30,14 @@

    WebKitSoupAuthDialog

    -

    WebKitSoupAuthDialog — A SoupSessionFeature to provide a simple +

    WebKitSoupAuthDialog — A SoupSessionFeature to provide a simple authentication dialog for HTTP basic auth support.

    Signals

    -
    +
    @@ -45,7 +45,7 @@ +GtkWidget* @@ -53,7 +53,7 @@

    Types and Values

    -
    -GtkWidget* current-toplevel Run Last
    +
    @@ -66,7 +66,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitSoupAuthDialog
     
    @@ -74,16 +74,17 @@

    Implemented Interfaces

    WebKitSoupAuthDialog implements - SoupSessionFeature.

    + SoupSessionFeature.

    Description

    -

    WebKitSoupAuthDialog is a SoupSessionFeature that you can attach to your -SoupSession to provide a simple authentication dialog while +

    WebKitSoupAuthDialog is a SoupSessionFeature that you can attach to your +SoupSession to provide a simple authentication dialog while handling HTTP basic auth.

    Functions

    +

    Types and Values

    @@ -98,17 +99,17 @@

    Signal Details

    The “current-toplevel” signal

    -
    GtkWidget*
    +
    GtkWidget*
     user_function (WebKitSoupAuthDialog *authDialog,
    -               SoupMessage          *message,
    +               SoupMessage          *message,
                    gpointer              user_data)

    This signal is emitted by the authDialog when it needs to know the current toplevel widget in order to correctly set the transiency for the authentication dialog.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -122,7 +123,7 @@ - + @@ -134,17 +135,16 @@

    message

    the SoupMessage being used in the authentication process

    the SoupMessage being used in the authentication process

     
    -

    Returns

    -

    the current toplevel GtkWidget or NULL if there's none.

    +

    Returns

    +

    the current toplevel GtkWidget or NULL if there's none.

    [transfer none]

    Flags: Run Last

    -

    Since 1.1.1

    +

    Since: 1.1.1

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSpellChecker.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSpellChecker.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitSpellChecker.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitSpellChecker.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitSpellChecker - +WebKitSpellChecker: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Types and Values

    -
    +
    @@ -115,7 +115,7 @@

    Prerequisites

    WebKitSpellChecker requires - GObject.

    + GObject.

    Description

    @@ -143,8 +143,8 @@ and misspelling_length respectively.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -174,7 +174,7 @@
    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -188,8 +188,8 @@ misspelled word word .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -215,14 +215,14 @@
    -

    Returns

    +

    Returns

    a newly allocated NULL-terminated array of suggested corrections for a misspelled word word . Free it with g_strfreev when done with it.

    [transfer full]

    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -237,8 +237,8 @@ accepted format is a list of comma (',') separated language codes of the form 'en_US', ie, language_VARIANT.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -259,7 +259,7 @@
    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -270,8 +270,8 @@ const char *word);

    Returns a suggestion for a word to use in an "autocorrect" feature.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -292,13 +292,13 @@
    -

    Returns

    +

    Returns

    the suggestion for the autocorrection of word .

    [transfer full]

    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -312,8 +312,8 @@ spelled word. The word will be learned permanently in the user's personal dictionary.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -333,7 +333,7 @@
    -

    Since 1.5.1

    +

    Since: 1.5.1


    @@ -346,8 +346,8 @@ as a misspelling for this session.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -367,7 +367,7 @@
    -

    Since 1.5.1

    +

    Since: 1.5.1

    @@ -381,7 +381,6 @@
    +
    Generated by GTK-Doc V1.24.1
    \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitViewportAttributes.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitViewportAttributes.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitViewportAttributes.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitViewportAttributes.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitViewportAttributes - +WebKitViewportAttributes: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -52,7 +52,7 @@

    Properties

    -
    +
    @@ -134,7 +134,7 @@

    Types and Values

    -
    +
    @@ -147,7 +147,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitViewportAttributes
     
    @@ -250,8 +250,8 @@ The viewport-attributes-recompute-requested signal also will be handled to override the device size, available size, desktop width, or device DPI.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -264,7 +264,7 @@
    -

    Since 1.3.8

    +

    Since: 1.3.8

    @@ -408,7 +408,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebBackForwardList.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebBackForwardList.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebBackForwardList.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebBackForwardList.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebBackForwardList - +WebKitWebBackForwardList: WebKitGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -181,7 +181,7 @@

    Types and Values

    -
    +
    @@ -194,7 +194,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebBackForwardList
     
    @@ -243,8 +243,8 @@ , so you don't need to keep a reference once you've added it to the list.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -264,7 +264,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -277,8 +277,8 @@ This method also clears the list of visited links which means that all links will appear unvisited.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -291,7 +291,7 @@
    -

    Since 1.3.1

    +

    Since: 1.3.1


    @@ -303,8 +303,8 @@

    Checks if web_history_item is in the back forward list

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -325,10 +325,9 @@
    -

    Returns

    +

    Returns

    TRUE if web_history_item is in the back forward list, FALSE if it doesn't

    -


    @@ -339,8 +338,8 @@ (WebKitWebBackForwardList *web_back_forward_list);

    Returns the item that precedes the current item

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -354,7 +353,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebHistoryItem preceding the current item.

    [type WebKit.WebHistoryItem][transfer none]

    @@ -367,8 +366,8 @@ (WebKitWebBackForwardList *web_back_forward_list);

    Returns the number of items that preced the current item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -382,9 +381,8 @@
    -

    Returns

    +

    Returns

    a gint corresponding to the number of items preceding the current item

    -


    @@ -397,8 +395,8 @@

    Returns a list of items that precede the current item, limited by limit

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -419,7 +417,7 @@
    -

    Returns

    +

    Returns

    a GList of items preceding the current item, limited by limit .

    [element-type WebKit.WebHistoryItem][transfer container]

    @@ -434,8 +432,8 @@

    Returns the current item.

    Returns a NULL value if the back forward list is empty

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -449,7 +447,7 @@
    -

    Returns

    +

    Returns

    a WebKitWebHistoryItem.

    [type WebKit.WebHistoryItem][transfer none]

    @@ -463,8 +461,8 @@

    Returns the item that succeeds the current item.

    Returns a NULL value if there nothing that succeeds the current item

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -478,7 +476,7 @@
    -

    Returns

    +

    Returns

    a WebKitWebHistoryItem.

    [type WebKit.WebHistoryItem][transfer none]

    @@ -491,8 +489,8 @@ (WebKitWebBackForwardList *web_back_forward_list);

    Returns the number of items that succeed the current item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -506,9 +504,8 @@
    -

    Returns

    +

    Returns

    a gint corresponding to the nuber of items succeeding the current item

    -


    @@ -521,8 +518,8 @@

    Returns a list of items that succeed the current item, limited by limit

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -543,7 +540,7 @@
    -

    Returns

    +

    Returns

    a GList of items succeeding the current item, limited by limit .

    [element-type WebKit.WebHistoryItem][transfer container]

    @@ -557,8 +554,8 @@ (WebKitWebBackForwardList *web_back_forward_list);

    Returns the maximum limit of the back forward list.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -572,9 +569,8 @@
    -

    Returns

    +

    Returns

    a gint indicating the number of WebKitWebHistoryItem the back forward list can hold

    -


    @@ -586,8 +582,8 @@ gint index);

    Returns the item at a given index relative to the current item.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -608,7 +604,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebHistoryItem located at the specified index relative to the current item.

    [type WebKit.WebHistoryItem][transfer none]

    @@ -620,8 +616,8 @@ webkit_web_back_forward_list_go_back (WebKitWebBackForwardList *web_back_forward_list);

    Steps backward in the back forward list

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -643,8 +639,8 @@ (WebKitWebBackForwardList *web_back_forward_list);

    Steps forward in the back forward list

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -668,8 +664,8 @@

    Go to the specified web_history_item in the back forward list

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -702,9 +698,10 @@ created and owned by WebKitWebView instances only.

    Creates an instance of the back forward list with a controlling WebKitWebView

    +

    [skip]

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -718,9 +715,8 @@
    -

    Returns

    +

    Returns

    a WebKitWebBackForwardList

    -


    @@ -734,8 +730,8 @@ exceeds its capacity, items will be removed everytime a new item has been added.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -772,7 +768,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebDatabase.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebDatabase.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebDatabase - +WebKitWebDatabase: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -99,7 +99,7 @@

    Properties

    -
    +
    @@ -145,7 +145,7 @@

    Types and Values

    -
    +
    @@ -158,7 +158,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebDatabase
     
    @@ -188,8 +188,8 @@ webkit_web_database_get_display_name (WebKitWebDatabase *webDatabase);

    Returns the name of the WebKitWebDatabase as seen by the user.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -203,11 +203,10 @@
    -

    Returns

    +

    Returns

    the name of the database as seen by the user.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -218,8 +217,8 @@ web author. The Web Database standard allows web authors to specify an expected size of the database to optimize the user experience.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -233,11 +232,10 @@
    -

    Returns

    +

    Returns

    the expected size of the database in bytes

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -246,8 +244,8 @@ webkit_web_database_get_filename (WebKitWebDatabase *webDatabase);

    Returns the absolute filename to the WebKitWebDatabase file on disk.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -261,11 +259,10 @@
    -

    Returns

    +

    Returns

    the absolute filename of the database

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -274,8 +271,8 @@ webkit_web_database_get_name (WebKitWebDatabase *webDatabase);

    Returns the canonical name of the WebKitWebDatabase.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -289,11 +286,10 @@
    -

    Returns

    +

    Returns

    the name of the database

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -303,8 +299,8 @@ (WebKitWebDatabase *webDatabase);

    Returns the security origin of the WebKitWebDatabase.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -318,11 +314,11 @@
    -

    Returns

    +

    Returns

    the security origin of the database.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -331,8 +327,8 @@ webkit_web_database_get_size (WebKitWebDatabase *webDatabase);

    Returns the actual size of the WebKitWebDatabase space on disk in bytes.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -346,11 +342,10 @@
    -

    Returns

    +

    Returns

    the actual size of the database in bytes

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -360,8 +355,8 @@

    Removes the WebKitWebDatabase from its security origin and destroys all data stored in the database.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -374,7 +369,7 @@
    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -394,7 +389,7 @@

    The display name of the Web Database database.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -403,7 +398,7 @@

    The expected size of the database in bytes as defined by the web author.

    Flags: Read

    Default value: 0

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -412,7 +407,7 @@

    The absolute filename of the Web Database database.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -421,7 +416,7 @@

    The name of the Web Database database.

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -429,7 +424,7 @@
      “security-origin”          WebKitSecurityOrigin *

    The security origin of the database.

    Flags: Read / Write / Construct Only

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -438,12 +433,11 @@

    The current size of the database in bytes.

    Flags: Read

    Default value: 0

    -

    Since 1.1.14

    +

    Since: 1.1.14

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebDataSource.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebDataSource.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebDataSource.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebDataSource.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebDataSource - +WebKitWebDataSource: WebKitGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -123,7 +123,7 @@

    Types and Values

    -
    +
    @@ -136,7 +136,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebDataSource
     
    @@ -167,8 +167,8 @@ frame hasn't loaded any data. Use webkit_web_data_source_is_loading to test if data source is in the process of loading.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -182,14 +182,14 @@
    -

    Returns

    +

    Returns

    a GString which contains the raw data that represents the data_source or NULL if the data_source hasn't loaded any data.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -199,8 +199,8 @@

    Returns the text encoding name as set in the WebKitWebView, or if not, the text encoding of the response.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -214,11 +214,10 @@
    -

    Returns

    +

    Returns

    the encoding name of the WebKitWebView or of the response.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -231,8 +230,8 @@ prior to the "committed" load state. See webkit_web_data_source_get_request for getting the "committed" request.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -246,11 +245,11 @@
    -

    Returns

    +

    Returns

    the original WebKitNetworkRequest.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -261,8 +260,8 @@

    Returns the main resource of the data_source

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -276,13 +275,13 @@
    -

    Returns

    +

    Returns

    a new WebKitWebResource representing the main resource of the data_source .

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -294,8 +293,8 @@ the request that was "committed", and hence, different from the request you get from the webkit_web_data_source_get_initial_request method.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -309,7 +308,7 @@
    -

    Returns

    +

    Returns

    the WebKitNetworkRequest that created the data_source or NULL if the data_source @@ -317,7 +316,7 @@ attached to the frame or the frame hasn't been loaded.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -328,8 +327,8 @@

    Gives you a GList of WebKitWebResource objects that compose the WebKitWebView to which this WebKitWebDataSource is attached.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -343,12 +342,12 @@
    -

    Returns

    +

    Returns

    a GList of WebKitWebResource objects; the objects are owned by WebKit, but the GList must be freed.

    [element-type WebKitWebResource][transfer container]

    -

    Since 1.1.15

    +

    Since: 1.1.15


    @@ -362,8 +361,8 @@ unreachable URL if it was created using WebKitWebFrame's webkit_web_frame_load_alternate_html_string method.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -377,12 +376,11 @@
    -

    Returns

    +

    Returns

    the unreachable URL of data_source or NULL if there is no unreachable URL.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -391,8 +389,8 @@ webkit_web_data_source_get_web_frame (WebKitWebDataSource *data_source);

    Returns the WebKitWebFrame that represents this data source

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -406,7 +404,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebFrame that represents the data_source . The WebKitWebFrame is owned by WebKit and should @@ -415,7 +413,7 @@ is not attached to a frame.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -424,8 +422,8 @@ webkit_web_data_source_is_loading (WebKitWebDataSource *data_source);

    Determines whether the data source is in the process of loading its content.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -439,12 +437,11 @@
    -

    Returns

    +

    Returns

    TRUE if the data_source is still loading, FALSE otherwise

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -454,11 +451,10 @@

    Creates a new WebKitWebDataSource instance. The URL of the WebKitWebDataSource will be set to "about:blank".

    -

    Returns

    +

    Returns

    a new WebKitWebDataSource.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -476,7 +472,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebFrame.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebFrame.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebFrame.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebFrame.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebFrame - +WebKitWebFrame: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -60,7 +60,7 @@
    -WebKitDOMDocument * +WebKitDOMDocument * webkit_web_frame_get_dom_document () @@ -76,7 +76,7 @@
    -GtkPolicyType +GtkPolicyType webkit_web_frame_get_horizontal_scrollbar_policy () @@ -145,7 +145,7 @@
    -GtkPolicyType +GtkPolicyType webkit_web_frame_get_vertical_scrollbar_policy () @@ -209,7 +209,7 @@
    -GtkPrintOperationResult +GtkPrintOperationResult webkit_web_frame_print_full () @@ -236,7 +236,7 @@

    Properties

    -
    +
    @@ -244,7 +244,7 @@ - + @@ -272,7 +272,7 @@ - + @@ -281,7 +281,7 @@

    Signals

    -
    GtkPolicyTypeGtkPolicyType horizontal-scrollbar-policy Read
    Read
    GtkPolicyTypeGtkPolicyType vertical-scrollbar-policy Read
    +
    @@ -348,7 +348,7 @@

    Types and Values

    -
    +
    @@ -367,7 +367,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebFrame
     
    @@ -423,8 +423,8 @@ hierarchy, this function will search for a matching frame in other main frame hierarchies. Returns NULL if no match is found.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -445,7 +445,7 @@
    -

    Returns

    +

    Returns

    the found WebKitWebFrame or NULL in case none is found.

    [transfer none]

    @@ -457,8 +457,8 @@ webkit_web_frame_get_data_source (WebKitWebFrame *frame);

    Returns the committed data source.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -472,20 +472,20 @@
    -

    Returns

    +

    Returns

    the committed WebKitWebDataSource.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    webkit_web_frame_get_dom_document ()

    -
    WebKitDOMDocument *
    +
    WebKitDOMDocument *
     webkit_web_frame_get_dom_document (WebKitWebFrame *frame);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -499,13 +499,13 @@
    -

    Returns

    -

    the WebKitDOMDocument currently loaded +

    Returns

    +

    the WebKitDOMDocument currently loaded in the frame or NULL if no document is loaded.

    [transfer none]

    -

    Since 1.10

    +

    Since: 1.10


    @@ -515,8 +515,8 @@

    Gets the global JavaScript execution context. Use this function to bridge between the WebKit and JavaScriptCore APIs.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -530,7 +530,7 @@
    -

    Returns

    +

    Returns

    the global JavaScript context JSGlobalContextRef.

    [transfer none]

    @@ -538,15 +538,11 @@

    webkit_web_frame_get_horizontal_scrollbar_policy ()

    -
    GtkPolicyType
    +
    GtkPolicyType
     webkit_web_frame_get_horizontal_scrollbar_policy
                                    (WebKitWebFrame *frame);

    -
    -

    Returns

    -

    -

    @@ -555,8 +551,8 @@ webkit_web_frame_get_load_status (WebKitWebFrame *frame);

    Determines the current status of the load.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -570,11 +566,10 @@
    -

    Returns

    +

    Returns

    The WebKitLoadStatus specifying the status of the current load.

    -

    -

    Since 1.1.7

    +

    Since: 1.1.7


    @@ -584,8 +579,8 @@

    Returns the frame 's name

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -599,12 +594,11 @@
    -

    Returns

    +

    Returns

    the name of frame . This method will return NULL if the WebKitWebFrame is invalid or an empty string if it is not backed by a live WebCore frame.

    -


    @@ -617,8 +611,8 @@ frame was not created by a load. You must unref the object when you are done with it.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -632,11 +626,11 @@
    -

    Returns

    +

    Returns

    a WebKitNetworkResponse object.

    [transfer full]

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -646,8 +640,8 @@

    Returns the frame 's parent frame, or NULL if it has none.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -661,7 +655,7 @@
    -

    Returns

    +

    Returns

    the parent WebKitWebFrame or NULL in case there is none.

    [transfer none]

    @@ -677,8 +671,8 @@ transition to a committed data source once any data has been received. Use webkit_web_frame_get_data_source to get the committed data source.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -692,12 +686,12 @@
    -

    Returns

    +

    Returns

    the provisional WebKitWebDataSource or NULL if a load request is not in progress.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -707,8 +701,8 @@

    Returns the frame 's security origin.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -722,12 +716,12 @@
    -

    Returns

    +

    Returns

    the security origin of frame .

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -737,8 +731,8 @@

    Returns the frame 's document title

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -752,10 +746,9 @@
    -

    Returns

    +

    Returns

    the title of frame

    -


    @@ -766,8 +759,8 @@

    Returns the current URI of the contents displayed by the frame

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -781,24 +774,19 @@
    -

    Returns

    +

    Returns

    the URI of frame

    -


    webkit_web_frame_get_vertical_scrollbar_policy ()

    -
    GtkPolicyType
    +
    GtkPolicyType
     webkit_web_frame_get_vertical_scrollbar_policy
                                    (WebKitWebFrame *frame);

    -
    -

    Returns

    -

    -

    @@ -810,8 +798,8 @@ objects that contains frame .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -825,7 +813,7 @@
    -

    Returns

    +

    Returns

    the WebKitWebView that manages frame .

    [transfer none]

    @@ -845,8 +833,8 @@ base_url has to be an absolute URI.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -877,7 +865,7 @@
    -

    Since 1.1.6

    +

    Since: 1.1.6


    @@ -890,8 +878,8 @@ source once any data has been received. Use webkit_web_frame_stop_loading() to stop the load. This function is typically invoked on the main frame.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -932,8 +920,8 @@

    If encoding is NULL, "UTF-8" is assumed.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -968,7 +956,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -978,8 +966,8 @@ const gchar *uri);

    Requests loading of the specified URI string.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -999,7 +987,7 @@
    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -1013,8 +1001,8 @@

    Creates a new WebKitWebFrame initialized with a controlling WebKitWebView.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1028,9 +1016,8 @@
    -

    Returns

    +

    Returns

    a new WebKitWebFrame

    -


    @@ -1042,8 +1029,8 @@ user. If you need more control over the printing process, see webkit_web_frame_print_full().

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1056,23 +1043,23 @@
    -

    Since 1.1.5

    +

    Since: 1.1.5


    webkit_web_frame_print_full ()

    -
    GtkPrintOperationResult
    +
    GtkPrintOperationResult
     webkit_web_frame_print_full (WebKitWebFrame *frame,
    -                             GtkPrintOperation *operation,
    -                             GtkPrintOperationAction action,
    +                             GtkPrintOperation *operation,
    +                             GtkPrintOperationAction action,
                                  GError **error);
    -

    Prints the given WebKitWebFrame, using the given GtkPrintOperation -and GtkPrintOperationAction. This function wraps a call to -gtk_print_operation_run() for printing the contents of the +

    Prints the given WebKitWebFrame, using the given GtkPrintOperation +and GtkPrintOperationAction. This function wraps a call to +gtk_print_operation_run() for printing the contents of the WebKitWebFrame.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1086,12 +1073,12 @@ - + - + @@ -1103,11 +1090,10 @@

    operation

    the GtkPrintOperation to be carried

    the GtkPrintOperation to be carried

     

    action

    the GtkPrintOperationAction to be performed

    the GtkPrintOperationAction to be performed

     
    -

    Returns

    -

    The GtkPrintOperationResult specifying the result of this operation.

    -

    +

    Returns

    +

    The GtkPrintOperationResult specifying the result of this operation.

    -

    Since 1.1.5

    +

    Since: 1.1.5


    @@ -1116,8 +1102,8 @@ webkit_web_frame_reload (WebKitWebFrame *frame);

    Reloads the initial request.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1139,8 +1125,8 @@

    Stops any pending loads on frame 's data source, and those of its children.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1160,8 +1146,8 @@

    enum WebKitLoadStatus

    -

    Members

    -
    +

    Members

    +
    @@ -1231,14 +1217,14 @@

    Property Details

    The “horizontal-scrollbar-policy” property

    -
      “horizontal-scrollbar-policy” GtkPolicyType
    +
      “horizontal-scrollbar-policy” GtkPolicyType

    Determines the current policy for the horizontal scrollbar of the frame. For the main frame, make sure to set the same policy on the scrollable widget containing the WebKitWebView, unless you know what you are doing.

    Flags: Read

    Default value: GTK_POLICY_AUTOMATIC

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -1247,7 +1233,7 @@

    Determines the current status of the load.

    Flags: Read

    Default value: WEBKIT_LOAD_FINISHED

    -

    Since 1.1.7

    +

    Since: 1.1.7


    @@ -1276,14 +1262,14 @@

    The “vertical-scrollbar-policy” property

    -
      “vertical-scrollbar-policy” GtkPolicyType
    +
      “vertical-scrollbar-policy” GtkPolicyType

    Determines the current policy for the vertical scrollbar of the frame. For the main frame, make sure to set the same policy on the scrollable widget containing the WebKitWebView, unless you know what you are doing.

    Flags: Read

    Default value: GTK_POLICY_AUTOMATIC

    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -1296,8 +1282,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1330,8 +1316,8 @@

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1365,8 +1351,8 @@ when a page loaded via HTTPS loads a stylesheet, script, image or iframe from an unencrypted HTTP URL.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1397,7 +1383,7 @@

    Flags: Run Last

    -

    Since 1.10.0

    +

    Since: 1.10.0


    @@ -1411,8 +1397,8 @@

    Use the "load-status" property instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1448,8 +1434,8 @@ since the last time this signal was emitted. This is useful to provide progress information about the resource load operation.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1480,7 +1466,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -1492,8 +1478,8 @@ gpointer user_data)

    Invoked when a resource failed to load.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1524,7 +1510,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -1535,8 +1521,8 @@ gpointer user_data)

    Emitted when all the data for the resource was loaded.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1562,7 +1548,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -1576,14 +1562,14 @@

    Emitted when a request is about to be sent. You can modify the request while handling this signal. You can set the URI in the WebKitNetworkRequest object itself, and add/remove/replace -headers using the SoupMessage object it carries, if it is +headers using the SoupMessage object it carries, if it is present. See webkit_network_request_get_message(). Setting the request URI to "about:blank" will effectively cause the request to load nothing, and can be used to disable the loading of specific resources.

    Notice that information about an eventual redirect is available in response -'s SoupMessage, not in the SoupMessage carried by +'s SoupMessage, not in the SoupMessage carried by the request . If response is NULL, then this is not a @@ -1592,8 +1578,8 @@ the lifetime of the resource, but the contents may change between signal emissions.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1630,7 +1616,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -1642,8 +1628,8 @@ gpointer user_data)

    Emitted when the response is received from the server.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1674,7 +1660,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -1685,7 +1671,7 @@

    Signal emitted when policy for one or both of the scrollbars of the view has changed. The default handler will apply the new policy to the container that holds the WebKitWebFrame if it is -a GtkScrolledWindow and the frame is the main frame. If you do +a GtkScrolledWindow and the frame is the main frame. If you do not want this to be handled automatically, you need to handle this signal.

    The exception to this rule is that policies to disable the @@ -1696,8 +1682,8 @@ WebKitWebFrame:horizontal-scrollbar-policy and WebKitWebFrame:vertical-scrollbar-policy properties.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1718,13 +1704,12 @@
    -

    Returns

    +

    Returns

    TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.

    -

    Flags: Action

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -1739,8 +1724,8 @@

    Use "notify::title" instead.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -1770,7 +1755,6 @@ +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebHistoryItem.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebHistoryItem.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebHistoryItem.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebHistoryItem.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebHistoryItem - +WebKitWebHistoryItem: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -114,7 +114,7 @@

    Properties

    -
    +
    @@ -155,7 +155,7 @@

    Types and Values

    -
    +
    @@ -168,7 +168,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebHistoryItem
     
    @@ -203,8 +203,8 @@ webkit_web_history_item_copy (WebKitWebHistoryItem *web_history_item);

    Makes a copy of the item for use with other WebView objects.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -218,11 +218,11 @@
    -

    Returns

    +

    Returns

    the new WebKitWebHistoryItem.

    [transfer full]

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -233,8 +233,8 @@

    Returns the alternate title of web_history_item

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -248,10 +248,9 @@
    -

    Returns

    +

    Returns

    the alternate title of web_history_item

    -


    @@ -262,10 +261,6 @@ (WebKitWebHistoryItem *web_history_item);

    -
    -

    Returns

    -

    -

    @@ -276,8 +271,8 @@

    Returns the original URI of web_history_item .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -291,10 +286,9 @@
    -

    Returns

    +

    Returns

    the original URI of web_history_item

    -


    @@ -303,8 +297,8 @@
    const gchar *
     webkit_web_history_item_get_title (WebKitWebHistoryItem *web_history_item);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -318,10 +312,9 @@
    -

    Returns

    +

    Returns

    the page title of web_history_item

    -


    @@ -332,8 +325,8 @@

    Returns the URI of this

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -347,10 +340,9 @@
    -

    Returns

    +

    Returns

    the URI of web_history_item

    -


    @@ -360,9 +352,8 @@ webkit_web_history_item_new (void);

    Creates a new WebKitWebHistoryItem instance

    -

    Returns

    +

    Returns

    the new WebKitWebHistoryItem

    -


    @@ -373,8 +364,8 @@ const gchar *title);

    Creates a new WebKitWebHistoryItem with the given URI and title

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -395,9 +386,8 @@
    -

    Returns

    +

    Returns

    the new WebKitWebHistoryItem

    -


    @@ -410,8 +400,8 @@

    Sets an alternate title for web_history_item

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -451,7 +441,7 @@

    The alternate title of the history item.

    Flags: Read / Write

    Default value: NULL

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -461,7 +451,7 @@

    Flags: Read

    Allowed values: >= 0

    Default value: 0

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -470,7 +460,7 @@

    The original URI of the history item.

    Flags: Read

    Default value: NULL

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -479,7 +469,7 @@

    The title of the history item.

    Flags: Read

    Default value: NULL

    -

    Since 1.0.2

    +

    Since: 1.0.2


    @@ -488,7 +478,7 @@

    The URI of the history item.

    Flags: Read

    Default value: NULL

    -

    Since 1.0.2

    +

    Since: 1.0.2

    @@ -497,7 +487,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebInspector.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebInspector.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebInspector.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebInspector.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebInspector - +WebKitWebInspector: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -94,7 +94,7 @@

    Properties

    -
    +
    @@ -128,7 +128,7 @@

    Signals

    -
    +
    @@ -171,7 +171,7 @@

    Types and Values

    -
    +
    @@ -184,7 +184,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebInspector
     
    @@ -240,8 +240,8 @@ (WebKitWebInspector *web_inspector);

    Obtains the URI that is currently being inspected.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -255,12 +255,11 @@
    -

    Returns

    +

    Returns

    a pointer to the URI as an internally allocated string; it should not be freed, modified or stored.

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -273,8 +272,8 @@ that this method may return NULL if the user hasn't inspected anything.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -288,12 +287,12 @@
    -

    Returns

    +

    Returns

    the WebKitWebView instance that is used to render the inspector or NULL if it is not yet created.

    [transfer none]

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -306,15 +305,15 @@

    Causes the Web Inspector to inspect the node that is located at the given coordinates of the widget. The coordinates should be relative to the WebKitWebView widget, not to the scrollable content, and -may be obtained from a GdkEvent directly.

    +may be obtained from a GdkEvent directly.

    This means x , and y being zero doesn't guarantee you will hit the left-most top corner of the content, since the contents may have been scrolled.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -339,7 +338,7 @@
    -

    Since 1.1.17

    +

    Since: 1.1.17


    @@ -348,8 +347,8 @@ webkit_web_inspector_show (WebKitWebInspector *web_inspector);

    Causes the Web Inspector to be shown.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -362,7 +361,7 @@
    -

    Since 1.1.17

    +

    Since: 1.1.17


    @@ -371,8 +370,8 @@ webkit_web_inspector_close (WebKitWebInspector *web_inspector);

    Causes the Web Inspector to be closed.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -385,18 +384,18 @@
    -

    Since 1.1.17

    +

    Since: 1.1.17


    webkit_web_inspector_inspect_node ()

    void
     webkit_web_inspector_inspect_node (WebKitWebInspector *web_inspector,
    -                                   WebKitDOMNode *node);
    + WebKitDOMNode *node);

    Causes the Web Inspector to inspect the given node.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -410,13 +409,13 @@ - +

    node

    the WebKitDOMNode to inspect

    the WebKitDOMNode to inspect

     
    -

    Since 1.3.7

    +

    Since: 1.3.7

    @@ -436,7 +435,7 @@

    The URI that is currently being inspected.

    Flags: Read

    Default value: NULL

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -446,7 +445,7 @@ that Console.profiles will return the profiles.

    Flags: Read / Write

    Default value: FALSE

    -

    Since 1.1.1

    +

    Since: 1.1.1


    @@ -455,7 +454,7 @@

    This is enabling Timeline profiling in the Inspector.

    Flags: Read / Write

    Default value: FALSE

    -

    Since 1.1.17

    +

    Since: 1.1.17


    @@ -463,7 +462,7 @@
      “web-view”                 WebKitWebView *

    The Web View that renders the Web Inspector itself.

    Flags: Read

    -

    Since 1.0.3

    +

    Since: 1.0.3

    @@ -476,8 +475,8 @@

    Emitted when the inspector should appear at the same window as the WebKitWebView being inspected.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -503,7 +502,7 @@

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -520,8 +519,8 @@ “inspect-web-view” will be emmited again, when the user inspects an element.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -547,7 +546,7 @@

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -557,8 +556,8 @@ gpointer user_data)

    Emitted when the inspector should appear in a separate window.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -584,7 +583,7 @@

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -596,8 +595,8 @@ references on the inspector at this time. The inspected WebKitWebView may no longer exist when this signal is emitted.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -618,7 +617,7 @@

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -635,8 +634,8 @@ WebKitWebView instance you create; the widget to which you add it will do that.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -662,12 +661,12 @@
    -

    Returns

    +

    Returns

    a newly allocated WebKitWebView or NULL.

    [transfer none]

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -679,8 +678,8 @@ that the window must have been created already by handling “inspect-web-view”.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -706,12 +705,11 @@

    Flags: Run Last

    -

    Since 1.0.3

    +

    Since: 1.0.3

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebNavigationAction.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebNavigationAction.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebNavigationAction.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebNavigationAction.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebNavigationAction - +WebKitWebNavigationAction: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -100,7 +100,7 @@

    Properties

    -
    +
    @@ -139,7 +139,7 @@

    Types and Values

    -
    +
    @@ -158,7 +158,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebNavigationAction
     
    @@ -179,8 +179,8 @@ are 1, 2 and 3 for left, middle and right buttons, so they are DOM button values +1. If the action was not initiated by a mouse click the value will be -1.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -194,11 +194,10 @@
    -

    Returns

    +

    Returns

    the mouse button used to click

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -208,8 +207,8 @@ (WebKitWebNavigationAction *navigationAction);

    Returns a bitmask with the the state of the modifier keys.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -223,11 +222,10 @@
    -

    Returns

    +

    Returns

    a bitmask with the state of the modifier keys

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -238,8 +236,8 @@

    Returns the URI that was originally requested. This may differ from the navigation target, for instance because of a redirect.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -253,11 +251,10 @@
    -

    Returns

    +

    Returns

    the originally requested URI

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -267,8 +264,8 @@ (WebKitWebNavigationAction *navigationAction);

    Returns the reason why WebKit is requesting a navigation.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -282,11 +279,10 @@
    -

    Returns

    +

    Returns

    a WebKitWebNavigationReason

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -296,8 +292,8 @@ (WebKitWebNavigationAction *navigationAction);

    Returns the target frame of the action.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -311,12 +307,11 @@
    -

    Returns

    +

    Returns

    the target frame of the action or NULL if there is no target.

    -

    -

    Since 1.1.13

    +

    Since: 1.1.13


    @@ -328,8 +323,8 @@

    Sets the URI that was originally requested. This may differ from the navigation target, for instance because of a redirect.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -349,7 +344,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -360,8 +355,8 @@ WebKitWebNavigationReason reason);

    Sets the reason why WebKit is requesting a navigation.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -381,7 +376,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3

    @@ -397,8 +392,8 @@

    enum WebKitWebNavigationReason

    Enum values used to denote the various navigation reasons.

    -

    Members

    -
    +

    Members

    +
    @@ -463,7 +458,7 @@

    Flags: Read / Write / Construct Only

    Allowed values: >= -1

    Default value: -1

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -473,7 +468,7 @@

    Flags: Read / Write / Construct Only

    Allowed values: >= 0

    Default value: 0

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -482,7 +477,7 @@

    The URI that was requested as the target for the navigation.

    Flags: Read / Write / Construct

    Default value: ""

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -491,7 +486,7 @@

    The reason why this navigation is occuring.

    Flags: Read / Write / Construct

    Default value: WEBKIT_WEB_NAVIGATION_REASON_OTHER

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -500,12 +495,11 @@

    The target frame for the navigation.

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.13

    +

    Since: 1.1.13

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPluginDatabase.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPluginDatabase.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPluginDatabase.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPluginDatabase.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebPluginDatabase - +WebKitWebPluginDatabase: WebKitGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -77,7 +77,7 @@

    Types and Values

    -
    +
    @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebPluginDatabase
     
    @@ -114,8 +114,8 @@ database , or NULL if there's none doing so.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -136,11 +136,11 @@
    -

    Returns

    +

    Returns

    a WebKitWebPlugin.

    [transfer full]

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -152,8 +152,8 @@ . The returned list must be freed with webkit_web_plugin_database_plugins_list_free()

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -167,11 +167,11 @@
    -

    Returns

    +

    Returns

    a GSList of WebKitWebPlugin.

    [transfer full][element-type WebKitWebPlugin]

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -182,8 +182,8 @@

    Frees list .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -196,7 +196,7 @@
    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -208,8 +208,8 @@ removing those that have been disabled or are otherwise no longer available.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -222,7 +222,7 @@
    -

    Since 1.3.8

    +

    Since: 1.3.8

    @@ -240,7 +240,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPlugin.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPlugin.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPlugin.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPlugin.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebPlugin - +WebKitWebPlugin: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -91,7 +91,7 @@

    Properties

    -
    +
    @@ -106,7 +106,7 @@

    Types and Values

    -
    +
    @@ -125,7 +125,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebPlugin
     
    @@ -144,8 +144,8 @@
    const char *
     webkit_web_plugin_get_description (WebKitWebPlugin *plugin);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -159,12 +159,11 @@
    -

    Returns

    +

    Returns

    the description string for plugin .

    -

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -172,8 +171,8 @@
    gboolean
     webkit_web_plugin_get_enabled (WebKitWebPlugin *plugin);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -187,11 +186,10 @@
    -

    Returns

    +

    Returns

    TRUE if the plugin is enabled, FALSE otherwise

    -

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -201,9 +199,10 @@

    Returns all the WebKitWebPluginMIMEType that plugin is handling at the moment.

    +

    [skip]

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -217,11 +216,10 @@
    -

    Returns

    +

    Returns

    a GSList of WebKitWebPluginMIMEType

    -

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -229,8 +227,8 @@
    const char *
     webkit_web_plugin_get_name (WebKitWebPlugin *plugin);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -244,12 +242,11 @@
    -

    Returns

    +

    Returns

    the name string for plugin .

    -

    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -260,8 +257,8 @@

    Sets the enabled status of the plugin .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -281,7 +278,7 @@
    -

    Since 1.3.8

    +

    Since: 1.3.8


    @@ -289,8 +286,8 @@
    const char *
     webkit_web_plugin_get_path (WebKitWebPlugin *plugin);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -304,13 +301,12 @@
    -

    Returns

    +

    Returns

    the absolute path to plugin in system filename encoding or NULL on failure to convert the filename from UTF-8.

    -

    -

    Since 1.4.0

    +

    Since: 1.4.0

    @@ -335,8 +331,8 @@ webkit_web_plugin_get_mimetypes, use webkit_web_plugin_mime_type_list_free to free it.

    -

    Members

    -
    +

    Members

    +
    @@ -362,7 +358,7 @@
    -

    Since 1.3.8

    +

    Since: 1.3.8

    @@ -381,7 +377,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPolicyDecision.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPolicyDecision.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebPolicyDecision.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebPolicyDecision.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebPolicyDecision - +WebKitWebPolicyDecision: WebKitGTK+ Reference Manual + - + @@ -34,7 +34,7 @@

    Functions

    -
    +
    @@ -69,7 +69,7 @@

    Types and Values

    -
    +
    @@ -82,7 +82,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebPolicyDecision
     
    @@ -101,8 +101,8 @@ webkit_web_policy_decision_download (WebKitWebPolicyDecision *decision);

    Will send the DOWNLOAD decision to the policy implementer.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -115,7 +115,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -124,8 +124,8 @@ webkit_web_policy_decision_ignore (WebKitWebPolicyDecision *decision);

    Will send the IGNORE decision to the policy implementer.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -138,7 +138,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -147,8 +147,8 @@ webkit_web_policy_decision_use (WebKitWebPolicyDecision *decision);

    Will send the USE decision to the policy implementer.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -161,7 +161,7 @@
    -

    Since 1.0.3

    +

    Since: 1.0.3

    @@ -175,7 +175,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebResource.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebResource.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebResource.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebResource.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebResource - +WebKitWebResource: WebKitGTK+ Reference Manual + - + @@ -36,7 +36,7 @@

    Functions

    -
    +
    @@ -91,7 +91,7 @@

    Properties

    -
    +
    @@ -127,7 +127,7 @@

    Signals

    -
    +
    @@ -159,7 +159,7 @@

    Types and Values

    -
    +
    @@ -172,7 +172,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebResource
     
    @@ -190,8 +190,8 @@

    Returns the data of the webResource .

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -205,14 +205,14 @@
    -

    Returns

    +

    Returns

    a GString containing the character data of the webResource . The string is owned by WebKit and should not be freed or destroyed.

    [transfer none]

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -220,8 +220,8 @@
    const gchar *
     webkit_web_resource_get_encoding (WebKitWebResource *web_resource);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -235,11 +235,10 @@
    -

    Returns

    +

    Returns

    the encoding name of the resource

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -247,8 +246,8 @@
    const gchar *
     webkit_web_resource_get_frame_name (WebKitWebResource *web_resource);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -262,11 +261,10 @@
    -

    Returns

    +

    Returns

    the frame name of the resource.

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -274,8 +272,8 @@
    const gchar *
     webkit_web_resource_get_mime_type (WebKitWebResource *web_resource);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -289,11 +287,10 @@
    -

    Returns

    +

    Returns

    the MIME type of the resource

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -301,8 +298,8 @@
    const gchar *
     webkit_web_resource_get_uri (WebKitWebResource *web_resource);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -316,11 +313,10 @@
    -

    Returns

    +

    Returns

    the URI of the resource

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -338,8 +334,8 @@ argument can be used if the resource represents contents of an entire HTML frame, otherwise pass NULL.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -381,11 +377,10 @@
    -

    Returns

    +

    Returns

    a new WebKitWebResource

    -

    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -405,7 +400,7 @@

    The encoding name to which the web resource was encoded in.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -414,7 +409,7 @@

    The frame name for the web resource.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -423,7 +418,7 @@

    The MIME type of the web resource.

    Flags: Read

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14


    @@ -432,7 +427,7 @@

    The URI of the web resource

    Flags: Read / Write / Construct Only

    Default value: NULL

    -

    Since 1.1.14

    +

    Since: 1.1.14

    @@ -449,8 +444,8 @@ since the last time this signal was emitted. This is useful to provide progress information about the resource load operation.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -476,7 +471,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -488,8 +483,8 @@

    Invoked when the web_resource failed to load

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -515,7 +510,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -525,8 +520,8 @@ gpointer user_data)

    Emitted when all the data for the resource was loaded

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -547,7 +542,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -558,8 +553,8 @@ gpointer user_data)

    Emitted when the response is received from the server.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -585,7 +580,7 @@

    Flags: Run Last

    -

    Since 1.7.5

    +

    Since: 1.7.5

    @@ -594,7 +589,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebSettings.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebSettings.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebSettings.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebSettings.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebSettings - +WebKitWebSettings: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -69,7 +69,7 @@

    Properties

    -
    +
    @@ -387,7 +387,7 @@

    Types and Values

    -
    +
    @@ -406,7 +406,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebSettings
     
    @@ -445,8 +445,8 @@ webkit_web_settings_copy (WebKitWebSettings *web_settings);

    Copies an existing WebKitWebSettings instance.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -460,7 +460,7 @@
    -

    Returns

    +

    Returns

    a new WebKitWebSettings instance.

    [transfer full]

    @@ -473,9 +473,8 @@

    Creates a new WebKitWebSettings instance with default values. It must be manually attached to a WebView.

    -

    Returns

    +

    Returns

    a new WebKitWebSettings instance

    -


    @@ -484,8 +483,8 @@
    const gchar *
     webkit_web_settings_get_user_agent (WebKitWebSettings *web_settings);
    -

    Parameters

    -
    +

    Parameters

    +
    @@ -499,13 +498,12 @@
    -

    Returns

    +

    Returns

    the User-Agent string currently used by the web view(s) associated with the web_settings .

    -

    -

    Since 1.1.11

    +

    Since: 1.1.11

    @@ -521,8 +519,8 @@

    enum WebKitEditingBehavior

    Enum values used for determining the editing behavior of editable elements.

    -

    Members

    -
    +

    Members

    +
    @@ -577,7 +575,7 @@ WebKitWebWindowFeatures of your WebKitWebView.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.22

    +

    Since: 1.1.22


    @@ -644,7 +642,7 @@ Windows. A similar case exists on the top line.

    Flags: Read / Write / Construct

    Default value: WEBKIT_EDITING_BEHAVIOR_UNIX

    -

    Since 1.1.13

    +

    Since: 1.1.13


    @@ -655,7 +653,7 @@ proper rendering of 3D CSS transforms.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.7.5

    +

    Since: 1.7.5


    @@ -664,7 +662,7 @@

    Whether to enable caret browsing mode.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.6

    +

    Since: 1.1.6


    @@ -682,7 +680,7 @@

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -694,7 +692,7 @@ setting is enabled for.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -704,7 +702,7 @@ images and frames from non-HTTPS URLs.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 2.0

    +

    Since: 2.0


    @@ -714,7 +712,7 @@ Whether private browsing should set this or not is up for debate, for now it doesn't.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.3.13.

    +

    Since: 1.3.13.


    @@ -724,7 +722,7 @@ will correctly execute and paste content of the clipboard.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.16

    +

    Since: 1.1.16


    @@ -734,7 +732,7 @@ option is enabled every file:// will have its own security unique domain.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.22

    +

    Since: 1.1.22


    @@ -748,7 +746,7 @@ barely usable on touch devices.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.3.5

    +

    Since: 1.3.5


    @@ -760,7 +758,7 @@ http://www.w3.org/TR/fullscreen/

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 2.4

    +

    Since: 2.4


    @@ -771,7 +769,7 @@ use SQL to manipulate that data asynchronously.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.8

    +

    Since: 1.1.8


    @@ -781,7 +779,7 @@ simple synchronous storage access.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.8

    +

    Since: 1.1.8


    @@ -790,7 +788,7 @@

    Enable or disable support for <a ping>.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.2.5

    +

    Since: 1.2.5


    @@ -801,7 +799,7 @@ <object> or <embed>, which are the preferred tags for this task.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.22

    +

    Since: 1.1.22


    @@ -814,7 +812,7 @@

    See also http://www.w3.org/TR/mediacapture-streams/

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.10.0

    +

    Since: 1.10.0


    @@ -827,7 +825,7 @@

    See also http://www.w3.org/TR/media-source/

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 2.4

    +

    Since: 2.4


    @@ -838,7 +836,7 @@ the user is not connected to the network.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.13

    +

    Since: 1.1.13


    @@ -855,7 +853,7 @@ http://webkit.org/blog/427/webkit-page-cache-i-the-basics/

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.18

    +

    Since: 1.1.18


    @@ -876,7 +874,7 @@

    This is currently experimental for WebKitGtk.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.2

    +

    Since: 1.1.2


    @@ -886,7 +884,7 @@ CSS, scripts, and plugins from non-HTTPS URLs.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 2.0

    +

    Since: 2.0


    @@ -912,7 +910,7 @@ CPU work to produce a smooth scrolling experience.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.9.0

    +

    Since: 1.9.0


    @@ -926,7 +924,7 @@ which element he probably wants.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.23

    +

    Since: 1.1.23


    @@ -935,7 +933,7 @@

    Whether to enable spell checking while typing.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.6

    +

    Since: 1.1.6


    @@ -945,7 +943,7 @@ all pages.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.13

    +

    Since: 1.1.13


    @@ -958,7 +956,7 @@

    See also https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since TODO

    +

    Since: TODO


    @@ -969,7 +967,7 @@ standard is currently a work-in-progress by the Khronos Group.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.3.14

    +

    Since: 1.3.14


    @@ -979,7 +977,7 @@ reflective XSS attacks on vulnerable web sites.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.11

    +

    Since: 1.1.11


    @@ -992,7 +990,7 @@ content from the web should provide a preference for this.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -1010,7 +1008,7 @@ "enable-html5-local-storage". The default path is $XDG_DATA_HOME/webkit/databases/.

    Flags: Read / Write / Construct

    Default value: "/home/cgarcia/.local/share/webkit/databases"

    -

    Since 1.5.2

    +

    Since: 1.5.2


    @@ -1019,7 +1017,7 @@

    Whether JavaScript can access Clipboard.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.3.0

    +

    Since: 1.3.0


    @@ -1029,7 +1027,7 @@ intervention.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.1.11

    +

    Since: 1.1.11


    @@ -1040,7 +1038,7 @@ false allows specifying that media playback should be always fullscreen.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.10.0

    +

    Since: 1.10.0


    @@ -1053,7 +1051,7 @@ the media.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.10.0

    +

    Since: 1.10.0


    @@ -1134,7 +1132,7 @@ gtk_get_default_language will be used.

    Flags: Read / Write / Construct

    Default value: NULL

    -

    Since 1.1.6

    +

    Since: 1.1.6


    @@ -1151,7 +1149,7 @@ tab key will cause the insertion of a tab character.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.1.17

    +

    Since: 1.1.17


    @@ -1164,7 +1162,7 @@ default value.

    Flags: Read / Write / Construct

    Default value: ""

    -

    Since 1.1.11

    +

    Since: 1.1.11


    @@ -1182,12 +1180,11 @@

    Flags: Read / Write / Construct

    Allowed values: >= 0

    Default value: 0.1

    -

    Since 1.0.1

    +

    Since: 1.0.1

    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebWindowFeatures.html webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebWindowFeatures.html --- webkitgtk-2.4.9/Documentation/webkitgtk/html/WebKitWebWindowFeatures.html 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/html/WebKitWebWindowFeatures.html 2016-03-14 08:06:04.000000000 +0000 @@ -2,13 +2,13 @@ -WebKitGTK+ Reference Manual: WebKitWebWindowFeatures - +WebKitWebWindowFeatures: WebKitGTK+ Reference Manual + - + @@ -35,7 +35,7 @@

    Functions

    -
    +
    @@ -62,7 +62,7 @@

    Properties

    -
    +
    @@ -124,7 +124,7 @@

    Types and Values

    -
    +
    @@ -137,7 +137,7 @@

    Object Hierarchy

    -
        GObject
    +
        GObject
         ╰── WebKitWebWindowFeatures
     
    @@ -187,8 +187,8 @@

    Decides if a WebKitWebWindowFeatures instance equals another, as in has the same values.

    -

    Parameters

    -
    +

    Parameters

    +
    @@ -209,12 +209,11 @@
    -

    Returns

    +

    Returns

    TRUE if the instances have the same values, FALSE otherwise

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -224,11 +223,10 @@

    Creates a new WebKitWebWindowFeatures instance with default values. It must be manually attached to a WebView.

    -

    Returns

    +

    Returns

    a new WebKitWebWindowFeatures instance

    -

    -

    Since 1.0.3

    +

    Since: 1.0.3

    @@ -248,7 +246,7 @@

    Controls whether window will be displayed fullscreen.

    Flags: Read / Write / Construct

    Default value: FALSE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -258,7 +256,7 @@

    Flags: Read / Write / Construct

    Allowed values: >= -1

    Default value: -1

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -267,7 +265,7 @@

    Controls whether the locationbar should be visible for the window.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -276,7 +274,7 @@

    Controls whether the menubar should be visible for the window.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -285,7 +283,7 @@

    Controls whether the scrollbars should be visible for the window.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -294,7 +292,7 @@

    Controls whether the statusbar should be visible for the window.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -303,7 +301,7 @@

    Controls whether the toolbar should be visible for the window.

    Flags: Read / Write / Construct

    Default value: TRUE

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -313,7 +311,7 @@

    Flags: Read / Write / Construct

    Allowed values: >= -1

    Default value: -1

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -323,7 +321,7 @@

    Flags: Read / Write / Construct

    Allowed values: >= -1

    Default value: -1

    -

    Since 1.0.3

    +

    Since: 1.0.3


    @@ -333,7 +331,7 @@

    Flags: Read / Write / Construct

    Allowed values: >= -1

    Default value: -1

    -

    Since 1.0.3

    +

    Since: 1.0.3

    @@ -342,7 +340,6 @@
    +
    Generated by GTK-Doc V1.24.1 \ No newline at end of file diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitdefines.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitdefines.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitdefines.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitdefines.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitdownload.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitdownload.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitdownload.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitdownload.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkiterror.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkiterror.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkiterror.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkiterror.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitfavicondatabase.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitfavicondatabase.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitfavicondatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitfavicondatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitfilechooserrequest.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitfilechooserrequest.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitfilechooserrequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitfilechooserrequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitgeolocationpolicydecision.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitgeolocationpolicydecision.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitgeolocationpolicydecision.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitgeolocationpolicydecision.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkithittestresult.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkithittestresult.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkithittestresult.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkithittestresult.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkiticondatabase.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkiticondatabase.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkiticondatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkiticondatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitnetworkrequest.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitnetworkrequest.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitnetworkrequest.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitnetworkrequest.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitnetworkresponse.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitnetworkresponse.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitnetworkresponse.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitnetworkresponse.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitsecurityorigin.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitsecurityorigin.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitsecurityorigin.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitsecurityorigin.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkit.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkit.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkit.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkit.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitsoupauthdialog.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitsoupauthdialog.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitsoupauthdialog.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitsoupauthdialog.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitspellchecker.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitspellchecker.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitspellchecker.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitspellchecker.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitviewportattributes.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitviewportattributes.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitviewportattributes.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitviewportattributes.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebbackforwardlist.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebbackforwardlist.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebbackforwardlist.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebbackforwardlist.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebdatabase.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebdatabase.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebdatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebdatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebdatasource.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebdatasource.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebdatasource.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebdatasource.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebframe.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebframe.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebframe.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebframe.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebhistoryitem.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebhistoryitem.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebhistoryitem.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebhistoryitem.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebinspector.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebinspector.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebinspector.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebinspector.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebnavigationaction.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebnavigationaction.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebnavigationaction.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebnavigationaction.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebplugindatabase.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebplugindatabase.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebplugindatabase.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebplugindatabase.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebplugin.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebplugin.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebplugin.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebplugin.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebpolicydecision.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebpolicydecision.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebpolicydecision.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebpolicydecision.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebresource.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebresource.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebresource.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebresource.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebsettings.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebsettings.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebsettings.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebsettings.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebview.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebview.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebview.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebview.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebwindowfeatures.sgml webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebwindowfeatures.sgml --- webkitgtk-2.4.9/Documentation/webkitgtk/tmpl/webkitwebwindowfeatures.sgml 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/Documentation/webkitgtk/tmpl/webkitwebwindowfeatures.sgml 2016-03-14 08:06:04.000000000 +0000 @@ -9,11 +9,13 @@ + + diff -Nru webkitgtk-2.4.9/GNUmakefile.in webkitgtk-2.4.10/GNUmakefile.in --- webkitgtk-2.4.9/GNUmakefile.in 2015-05-20 09:29:33.000000000 +0000 +++ webkitgtk-2.4.10/GNUmakefile.in 2016-03-14 07:37:14.000000000 +0000 @@ -1,7 +1,7 @@ -# GNUmakefile.in generated by automake 1.14.1 from GNUmakefile.am. +# GNUmakefile.in generated by automake 1.15 from GNUmakefile.am. # @configure_input@ -# Copyright (C) 1994-2013 Free Software Foundation, Inc. +# Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -66,7 +66,17 @@ -am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -142,56 +152,6 @@ @ENABLE_COVERAGE_TRUE@ -DGCC_GENERATE_TEST_COVERAGE_FILES \ @ENABLE_COVERAGE_TRUE@ -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS -DIST_COMMON = $(srcdir)/Source/WTF/GNUmakefile.am \ - $(srcdir)/Source/WTF/GNUmakefile.list.am \ - $(srcdir)/Source/JavaScriptCore/GNUmakefile.am \ - $(srcdir)/Source/JavaScriptCore/GNUmakefile.list.am \ - $(srcdir)/Source/Platform/GNUmakefile.am \ - $(srcdir)/Source/WebCore/GNUmakefile.am \ - $(srcdir)/Source/WebCore/GNUmakefile.list.am \ - $(srcdir)/Source/WebCore/bindings/gobject/GNUmakefile.am \ - $(srcdir)/Source/WebCore/platform/gtk/po/GNUmakefile.am \ - $(srcdir)/Source/WebInspectorUI/GNUmakefile.am \ - $(srcdir)/Tools/gtk/GNUmakefile.am \ - $(srcdir)/Source/WebKit/gtk/GNUmakefile.am \ - $(srcdir)/Tools/GtkLauncher/GNUmakefile.am \ - $(srcdir)/Source/WebKit2/GNUmakefile.am \ - $(srcdir)/Source/WebKit2/GNUmakefile.list.am \ - $(srcdir)/Tools/MiniBrowser/gtk/GNUmakefile.am \ - $(srcdir)/Source/ThirdParty/ANGLE/GNUmakefile.am \ - $(srcdir)/Source/ThirdParty/leveldb/GNUmakefile.am \ - $(srcdir)/Source/ThirdParty/gtest/GNUmakefile.am \ - $(srcdir)/Tools/GNUmakefile.am \ - $(srcdir)/Tools/TestWebKitAPI/GNUmakefile.am \ - $(srcdir)/Tools/WebKitTestRunner/GNUmakefile.am \ - $(srcdir)/GNUmakefile.in $(srcdir)/GNUmakefile.am \ - $(top_srcdir)/configure $(am__configure_deps) \ - $(srcdir)/autotoolsconfig.h.in \ - $(top_srcdir)/Source/WebCore/platform/gtk/po/POTFILES.in \ - $(top_srcdir)/Source/JavaScriptCore/javascriptcoregtk.pc.in \ - $(top_srcdir)/Source/JavaScriptCore/JavaScriptCore.gir.in \ - $(top_srcdir)/Source/WebKit/gtk/webkit/webkitversion.h.in \ - $(top_srcdir)/Source/WebKit/gtk/webkit.pc.in \ - $(top_srcdir)/Source/WebKit2/UIProcess/API/gtk/WebKitVersion.h.in \ - $(top_srcdir)/Source/WebKit2/webkit2gtk.pc.in \ - $(top_srcdir)/Source/WebKit2/webkit2gtk-web-extension.pc.in \ - $(top_srcdir)/Source/autotools/depcomp \ - $(am__dist_audio_DATA_DIST) $(dist_resources_DATA) \ - $(dist_webresources_DATA) \ - $(libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ - $(libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ - $(libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ - $(noinst_HEADERS) ChangeLog INSTALL README \ - Source/autotools/compile Source/autotools/config.guess \ - Source/autotools/config.sub Source/autotools/depcomp \ - Source/autotools/install-sh Source/autotools/missing \ - Source/autotools/ltmain.sh \ - $(top_srcdir)/Source/autotools/compile \ - $(top_srcdir)/Source/autotools/config.guess \ - $(top_srcdir)/Source/autotools/config.sub \ - $(top_srcdir)/Source/autotools/install-sh \ - $(top_srcdir)/Source/autotools/ltmain.sh \ - $(top_srcdir)/Source/autotools/missing # OwnPtrWin.cpp needs the symbols from gdi32 dll @TARGET_WIN32_TRUE@am__append_3 = -lgdi32 @@ -776,6 +736,13 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/GNUmakefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(am__dist_audio_DATA_DIST) \ + $(dist_resources_DATA) $(dist_webresources_DATA) \ + $(libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ + $(libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ + $(libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS) \ + $(noinst_HEADERS) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d @@ -12851,6 +12818,49 @@ CTAGS = ctags CSCOPE = cscope AM_RECURSIVE_TARGETS = cscope +am__DIST_COMMON = $(srcdir)/GNUmakefile.in \ + $(srcdir)/Source/JavaScriptCore/GNUmakefile.am \ + $(srcdir)/Source/JavaScriptCore/GNUmakefile.list.am \ + $(srcdir)/Source/Platform/GNUmakefile.am \ + $(srcdir)/Source/ThirdParty/ANGLE/GNUmakefile.am \ + $(srcdir)/Source/ThirdParty/gtest/GNUmakefile.am \ + $(srcdir)/Source/ThirdParty/leveldb/GNUmakefile.am \ + $(srcdir)/Source/WTF/GNUmakefile.am \ + $(srcdir)/Source/WTF/GNUmakefile.list.am \ + $(srcdir)/Source/WebCore/GNUmakefile.am \ + $(srcdir)/Source/WebCore/GNUmakefile.list.am \ + $(srcdir)/Source/WebCore/bindings/gobject/GNUmakefile.am \ + $(srcdir)/Source/WebCore/platform/gtk/po/GNUmakefile.am \ + $(srcdir)/Source/WebInspectorUI/GNUmakefile.am \ + $(srcdir)/Source/WebKit/gtk/GNUmakefile.am \ + $(srcdir)/Source/WebKit2/GNUmakefile.am \ + $(srcdir)/Source/WebKit2/GNUmakefile.list.am \ + $(srcdir)/Tools/GNUmakefile.am \ + $(srcdir)/Tools/GtkLauncher/GNUmakefile.am \ + $(srcdir)/Tools/MiniBrowser/gtk/GNUmakefile.am \ + $(srcdir)/Tools/TestWebKitAPI/GNUmakefile.am \ + $(srcdir)/Tools/WebKitTestRunner/GNUmakefile.am \ + $(srcdir)/Tools/gtk/GNUmakefile.am \ + $(srcdir)/autotoolsconfig.h.in \ + $(top_srcdir)/Source/JavaScriptCore/JavaScriptCore.gir.in \ + $(top_srcdir)/Source/JavaScriptCore/javascriptcoregtk.pc.in \ + $(top_srcdir)/Source/WebCore/platform/gtk/po/POTFILES.in \ + $(top_srcdir)/Source/WebKit/gtk/webkit.pc.in \ + $(top_srcdir)/Source/WebKit/gtk/webkit/webkitversion.h.in \ + $(top_srcdir)/Source/WebKit2/UIProcess/API/gtk/WebKitVersion.h.in \ + $(top_srcdir)/Source/WebKit2/webkit2gtk-web-extension.pc.in \ + $(top_srcdir)/Source/WebKit2/webkit2gtk.pc.in \ + $(top_srcdir)/Source/autotools/compile \ + $(top_srcdir)/Source/autotools/config.guess \ + $(top_srcdir)/Source/autotools/config.sub \ + $(top_srcdir)/Source/autotools/depcomp \ + $(top_srcdir)/Source/autotools/install-sh \ + $(top_srcdir)/Source/autotools/ltmain.sh \ + $(top_srcdir)/Source/autotools/missing ChangeLog INSTALL \ + README Source/autotools/compile Source/autotools/config.guess \ + Source/autotools/config.sub Source/autotools/depcomp \ + Source/autotools/install-sh Source/autotools/ltmain.sh \ + Source/autotools/missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -13000,6 +13010,7 @@ LTCOMPILE = @LTCOMPILE@ LTCXXCOMPILE = @LTCXXCOMPILE@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ @@ -13113,6 +13124,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -25841,7 +25853,6 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign GNUmakefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign GNUmakefile -.PRECIOUS: GNUmakefile GNUmakefile: $(srcdir)/GNUmakefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -25851,7 +25862,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; -$(srcdir)/Source/WTF/GNUmakefile.am $(srcdir)/Source/WTF/GNUmakefile.list.am $(srcdir)/Source/JavaScriptCore/GNUmakefile.am $(srcdir)/Source/JavaScriptCore/GNUmakefile.list.am $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am $(srcdir)/Source/WebCore/bindings/gobject/GNUmakefile.am $(srcdir)/Source/WebCore/platform/gtk/po/GNUmakefile.am $(srcdir)/Source/WebInspectorUI/GNUmakefile.am $(srcdir)/Tools/gtk/GNUmakefile.am $(srcdir)/Source/WebKit/gtk/GNUmakefile.am $(srcdir)/Tools/GtkLauncher/GNUmakefile.am $(srcdir)/Source/WebKit2/GNUmakefile.am $(srcdir)/Source/WebKit2/GNUmakefile.list.am $(srcdir)/Tools/MiniBrowser/gtk/GNUmakefile.am $(srcdir)/Source/ThirdParty/ANGLE/GNUmakefile.am $(srcdir)/Source/ThirdParty/leveldb/GNUmakefile.am $(srcdir)/Source/ThirdParty/gtest/GNUmakefile.am $(srcdir)/Tools/GNUmakefile.am $(srcdir)/Tools/TestWebKitAPI/GNUmakefile.am $(srcdir)/Tools/WebKitTestRunner/GNUmakefile.am: +$(srcdir)/Source/WTF/GNUmakefile.am $(srcdir)/Source/WTF/GNUmakefile.list.am $(srcdir)/Source/JavaScriptCore/GNUmakefile.am $(srcdir)/Source/JavaScriptCore/GNUmakefile.list.am $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am $(srcdir)/Source/WebCore/bindings/gobject/GNUmakefile.am $(srcdir)/Source/WebCore/platform/gtk/po/GNUmakefile.am $(srcdir)/Source/WebInspectorUI/GNUmakefile.am $(srcdir)/Tools/gtk/GNUmakefile.am $(srcdir)/Source/WebKit/gtk/GNUmakefile.am $(srcdir)/Tools/GtkLauncher/GNUmakefile.am $(srcdir)/Source/WebKit2/GNUmakefile.am $(srcdir)/Source/WebKit2/GNUmakefile.list.am $(srcdir)/Tools/MiniBrowser/gtk/GNUmakefile.am $(srcdir)/Source/ThirdParty/ANGLE/GNUmakefile.am $(srcdir)/Source/ThirdParty/leveldb/GNUmakefile.am $(srcdir)/Source/ThirdParty/gtest/GNUmakefile.am $(srcdir)/Tools/GNUmakefile.am $(srcdir)/Tools/TestWebKitAPI/GNUmakefile.am $(srcdir)/Tools/WebKitTestRunner/GNUmakefile.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck @@ -81081,15 +81092,15 @@ $(am__post_remove_distdir) dist-tarZ: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) @@ -81125,17 +81136,17 @@ esac chmod -R a-w $(distdir) chmod u+w $(distdir) - mkdir $(distdir)/_build $(distdir)/_inst + mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ - && $(am__cd) $(distdir)/_build \ - && ../configure \ + && $(am__cd) $(distdir)/_build/sub \ + && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ - --srcdir=.. --prefix="$$dc_install_base" \ + --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ @@ -81968,6 +81979,8 @@ uninstall-nodist_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_laHEADERS \ uninstall-pkgconfigDATA uninstall-typelibsDATA +.PRECIOUS: GNUmakefile + # We do not care at all about this implicit built-in make rules, # disable them to save some build time diff -Nru webkitgtk-2.4.9/NEWS webkitgtk-2.4.10/NEWS --- webkitgtk-2.4.9/NEWS 2015-05-20 09:56:07.000000000 +0000 +++ webkitgtk-2.4.10/NEWS 2016-03-14 08:06:04.000000000 +0000 @@ -1,4 +1,20 @@ ================= +WebKitGTK+ 2.4.10 +================= + + - Fix rendering of form controls and scrollbars with GTK+ >= 3.19 + - Fix crashes on PPC64. + - Fix the build on powerpc 32 bits. + - Add ARM64 build support. + - Translation updates: German, Spanish, French, Italian, Korean, Brazilian Portuguese, Russian, + Chinese. + - Security fixes: CVE-2015-1120, CVE-2015-1076, CVE-2015-1071, CVE-2015-1081, CVE-2015-1122, + CVE-2015-1155, CVE-2014-1748, CVE-2015-3752, CVE-2015-5809, CVE-2015-5928, CVE-2015-3749, + CVE-2015-3659, CVE-2015-3748, CVE-2015-3743, CVE-2015-3731, CVE-2015-3745, CVE-2015-5822, + CVE-2015-3658, CVE-2015-3741, CVE-2015-3727, CVE-2015-5801, CVE-2015-5788, CVE-2015-3747, + CVE-2015-5794, CVE-2015-1127, CVE-2015-1153, CVE-2015-1083. + +================= WebKitGTK+ 2.4.9 ================= diff -Nru webkitgtk-2.4.9/Source/autotools/libtool.m4 webkitgtk-2.4.10/Source/autotools/libtool.m4 --- webkitgtk-2.4.9/Source/autotools/libtool.m4 2011-10-28 06:31:13.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/libtool.m4 2016-02-27 07:46:31.000000000 +0000 @@ -1,8 +1,6 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -10,36 +8,30 @@ # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. +# Copyright (C) 2014 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. + +# GNU Libtool 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 of the License, or +# (at your option) any later version. # -# GNU Libtool 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. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . ]) -# serial 57 LT_INIT +# serial 58 LT_INIT # LT_PREREQ(VERSION) @@ -67,7 +59,7 @@ # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl @@ -91,7 +83,7 @@ _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -111,26 +103,43 @@ dnl AC_DEFUN([AM_PROG_LIBTOOL], []) +# _LT_PREPARE_CC_BASENAME +# ----------------------- +m4_defun([_LT_PREPARE_CC_BASENAME], [ +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in @S|@*""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} +])# _LT_PREPARE_CC_BASENAME + + # _LT_CC_BASENAME(CC) # ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, +# but that macro is also expanded into generated libtool script, which +# arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +[m4_require([_LT_PREPARE_CC_BASENAME])dnl +AC_REQUIRE([_LT_DECL_SED])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +func_cc_basename $1 +cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} @@ -146,6 +155,8 @@ AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl @@ -175,15 +186,16 @@ m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl +m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -196,7 +208,7 @@ # 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 + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -207,14 +219,14 @@ ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -267,14 +279,14 @@ # _LT_PROG_LTMAIN # --------------- -# Note that this code is called both from `configure', and `config.status' +# Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, +# 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN @@ -284,7 +296,7 @@ # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' +# in macros and then make a single call at the end using the 'libtool' # label. @@ -419,8 +431,8 @@ # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME +# Quote a variable value, and forward it to 'config.status' so that its +# declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) @@ -444,7 +456,7 @@ # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl +available_tags='_LT_TAGS'dnl ]) @@ -472,7 +484,7 @@ # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], @@ -498,8 +510,8 @@ # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated +# into 'config.status', and then the shell code to quote escape them in +# for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], @@ -545,7 +557,7 @@ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -558,7 +570,7 @@ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -574,7 +586,7 @@ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the -# `#!' sequence but before initialization text begins. After this +# '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). @@ -596,7 +608,7 @@ _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF -test $lt_write_fail = 0 && chmod +x $1[]dnl +test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT @@ -619,7 +631,7 @@ } >&AS_MESSAGE_LOG_FD lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, +'$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. @@ -637,11 +649,11 @@ m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." -while test $[#] != 0 +while test 0 != $[#] do case $[1] in --version | --v* | -V ) @@ -654,10 +666,10 @@ lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; esac shift done @@ -683,7 +695,7 @@ # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: -test "$silent" = yes && +test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false @@ -703,27 +715,31 @@ _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. -# + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + _LT_COPYING _LT_LIBTOOL_TAGS +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS @@ -731,13 +747,24 @@ _LT_EOF + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +_LT_PREPARE_MUNGE_PATH_LIST +_LT_PREPARE_CC_BASENAME + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # 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 +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -754,8 +781,6 @@ sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - _LT_PROG_REPLACE_SHELLFNS - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -773,7 +798,6 @@ [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS @@ -801,6 +825,7 @@ m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], @@ -822,6 +847,31 @@ ])# _LT_LANG +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], @@ -852,6 +902,10 @@ m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) @@ -942,7 +996,7 @@ 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 + 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 @@ -954,7 +1008,13 @@ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -962,6 +1022,7 @@ rm -rf libconftest.dylib* rm -f conftest.* fi]) + AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no @@ -971,8 +1032,9 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF @@ -990,7 +1052,9 @@ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? - if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1000,32 +1064,32 @@ ]) case $host_os in rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # 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' ;; + _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' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; 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' + if test yes = "$lt_cv_ld_exported_symbols_list"; 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}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -1035,8 +1099,8 @@ ]) -# _LT_DARWIN_LINKER_FEATURES -# -------------------------- +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ @@ -1045,27 +1109,29 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - _LT_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_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_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_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}" + _LT_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_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + _LT_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_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" m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_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_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}" +[ if test yes != "$lt_cv_apple_cc_single_mod"; then + _LT_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_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 ],[]) else @@ -1085,7 +1151,7 @@ # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl -if test "${lt_cv_aix_libpath+set}" = set; then +if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], @@ -1103,7 +1169,7 @@ _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) @@ -1123,8 +1189,8 @@ # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script which will find a shell with a builtin -# printf (which we can use as an echo command). +# of the generated configure script that will find a shell with a builtin +# printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO @@ -1152,10 +1218,10 @@ # Invoke $ECHO with all args, space-separated. func_echo_all () { - $ECHO "$*" + $ECHO "$*" } -case "$ECHO" in +case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; @@ -1181,16 +1247,17 @@ AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], -[ --with-sysroot[=DIR] Search for dependent libraries within DIR - (or the compiler's sysroot if not specified).], +[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], + [Search for dependent libraries within DIR (or the compiler's sysroot + if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -1200,14 +1267,14 @@ no|'') ;; #( *) - AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and in which our libraries should be installed.])]) +[dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- @@ -1215,31 +1282,33 @@ [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -1268,9 +1337,46 @@ rm -rf conftest* ;; -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -1280,9 +1386,19 @@ LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - ppc64-*linux*|powerpc64-*linux*) + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -1301,7 +1417,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - ppc*-*linux*|powerpc*-*linux*) + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -1319,25 +1438,39 @@ *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; -sparc*-*solaris*) - # Find out which ABI we are using. +*-*solaris*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; + yes*) + case $host in + i?86-*-solaris*|x86_64-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD=${LD-ld}_sol2 + fi + ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" @@ -1351,7 +1484,7 @@ ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK @@ -1370,11 +1503,11 @@ [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -1382,7 +1515,7 @@ ]) ]) -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -1413,14 +1546,14 @@ if test -n "$RANLIB"; then case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + bitrig* | openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in @@ -1449,7 +1582,7 @@ [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" + lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # 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 @@ -1476,7 +1609,7 @@ $RM conftest* ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) @@ -1498,7 +1631,7 @@ m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -1517,10 +1650,10 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) @@ -1541,7 +1674,7 @@ AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -1581,7 +1714,7 @@ lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -1600,6 +1733,11 @@ lt_cv_sys_max_cmd_len=196608 ;; + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not @@ -1626,22 +1764,23 @@ ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -1657,7 +1796,7 @@ ;; esac ]) -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) @@ -1685,7 +1824,7 @@ # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : +if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -1732,9 +1871,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -1760,7 +1899,7 @@ return status; }] _LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in @@ -1781,7 +1920,7 @@ # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then +if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -1791,44 +1930,52 @@ case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], + [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], + [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) @@ -1837,21 +1984,21 @@ ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], @@ -1861,7 +2008,7 @@ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl @@ -1871,9 +2018,9 @@ ]) fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -1965,8 +2112,8 @@ m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes @@ -1976,8 +2123,8 @@ ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + if test no = "$hard_links"; then + AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else @@ -2004,8 +2151,8 @@ _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) +AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", + [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR @@ -2017,15 +2164,15 @@ _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && + test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else @@ -2039,12 +2186,12 @@ fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then +if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || + test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -2068,7 +2215,7 @@ # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) @@ -2086,6 +2233,47 @@ ])# _LT_CMD_STRIPLIB +# _LT_PREPARE_MUNGE_PATH_LIST +# --------------------------- +# Make sure func_munge_path_list() is defined correctly. +m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], +[[# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x@S|@2 in + x) + ;; + *:) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" + ;; + x:*) + eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" + ;; + *) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + esac +} +]])# _LT_PREPARE_PATH_LIST + + # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics @@ -2096,17 +2284,18 @@ m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -2122,28 +2311,35 @@ ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -2157,7 +2353,7 @@ # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -2166,7 +2362,7 @@ library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -2183,56 +2379,109 @@ # flags to be left without arguments need_version=unknown +AC_ARG_VAR([LT_SYS_LIBRARY_PATH], +[User-defined run-time library search path.]) + case $host_os in aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + version_type=linux # correct to gnu/linux during the next big refactor + 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' + soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -2242,27 +2491,27 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -2274,7 +2523,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -2283,8 +2532,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -2300,17 +2549,17 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -2319,8 +2568,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -2347,7 +2596,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -2360,8 +2609,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -2374,7 +2623,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -2387,8 +2636,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -2398,18 +2647,14 @@ ;; dgux*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; -freebsd1*) - dynamic_linker=no - ;; - freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. @@ -2417,25 +2662,26 @@ objformat=`/usr/bin/objformat` else case $host_os in - freebsd[[123]]*) objformat=aout ;; + freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in - freebsd2*) + freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) @@ -2454,26 +2700,15 @@ esac ;; -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -2491,14 +2726,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -2506,8 +2742,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -2516,8 +2752,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -2527,11 +2763,11 @@ ;; interix[[3-9]]*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2542,16 +2778,16 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -2570,8 +2806,8 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -2580,13 +2816,33 @@ dynamic_linker=no ;; -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux +linux*android*) + version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2611,7 +2867,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -2643,12 +2904,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -2657,8 +2918,8 @@ ;; newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -2667,58 +2928,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -2726,11 +2997,11 @@ ;; solaris*) - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -2740,20 +3011,20 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -2774,24 +3045,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -2806,19 +3077,19 @@ tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux + version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2827,20 +3098,30 @@ ;; esac AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) @@ -2873,39 +3154,41 @@ [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) +_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], + [Detected run-time system search path for libraries]) +_LT_DECL([], [configure_time_lt_sys_library_path], [2], + [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- -# find a file program which can recognize shared library +# find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -f "$ac_dir/$1"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -2928,11 +3211,11 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else @@ -2950,7 +3233,7 @@ # _LT_PATH_MAGIC # -------------- -# find a file program which can recognize a shared library +# find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then @@ -2977,16 +3260,16 @@ AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], + [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -3000,7 +3283,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -3011,37 +3294,37 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], +[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi]) +rm -f conftest.i conftest2.i conftest.out]) +])# _LT_PATH_DD + + +# _LT_CMD_TRUNCATE +# ---------------- +# find command to truncate a binary pipe +m4_defun([_LT_CMD_TRUNCATE], +[m4_require([_LT_PATH_DD]) +AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], +[printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) +_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], + [Command to truncate a binary pipe]) +])# _LT_CMD_TRUNCATE + + # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies @@ -3127,13 +3447,13 @@ # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # '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. +# that 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 aix[[4-9]]*) @@ -3160,8 +3480,7 @@ # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -3197,10 +3516,6 @@ fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -3238,8 +3553,8 @@ lt_cv_deplibs_check_method=pass_all ;; -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; @@ -3261,8 +3576,8 @@ lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' @@ -3315,6 +3630,9 @@ tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac ]) @@ -3355,33 +3673,38 @@ AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -3392,21 +3715,21 @@ esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -3414,8 +3737,8 @@ esac fi AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -3461,8 +3784,8 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -3474,7 +3797,7 @@ ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) @@ -3501,13 +3824,28 @@ lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL +# _LT_DLL_DEF_P([FILE]) +# --------------------- +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with func_dll_def_p in the libtool script +AC_DEFUN([_LT_DLL_DEF_P], +[dnl + test DEF = "`$SED -n dnl + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e q dnl Only consider the first "real" line + $1`" dnl +])# _LT_DLL_DEF_P + + # LT_LIB_M # -------- # check for math library @@ -3519,11 +3857,11 @@ # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM="-lm") + AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) @@ -3542,7 +3880,7 @@ _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; @@ -3594,7 +3932,7 @@ symcode='[[ABCDGISTW]]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; @@ -3627,14 +3965,44 @@ symcode='[[ABCDGIRSTW]]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -3652,20 +4020,24 @@ # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -3705,11 +4077,11 @@ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else @@ -3735,7 +4107,7 @@ { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -3755,9 +4127,9 @@ mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -3778,7 +4150,7 @@ rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -3805,12 +4177,16 @@ [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], + [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], + [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS @@ -3826,17 +4202,18 @@ m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -3847,8 +4224,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -3864,6 +4241,11 @@ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -3913,7 +4295,7 @@ case $host_os in aix[[4-9]]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -3954,14 +4336,14 @@ case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -3990,7 +4372,7 @@ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -3998,7 +4380,7 @@ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' @@ -4143,17 +4525,18 @@ fi ], [ - if test "$GCC" = yes; then + if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -4164,8 +4547,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -4182,6 +4565,11 @@ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -4242,7 +4630,9 @@ case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi ;; esac else @@ -4250,7 +4640,7 @@ case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -4258,11 +4648,30 @@ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # 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). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -4278,7 +4687,7 @@ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -4287,9 +4696,9 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' @@ -4314,6 +4723,12 @@ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -4334,18 +4749,33 @@ ;; *) case `$CC -V 2>&1 | sed 5q` in - *Sun\ F* | *Sun*Fortran*) + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; esac ;; esac @@ -4396,7 +4826,7 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi @@ -4425,7 +4855,7 @@ fi ]) case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; @@ -4491,21 +4921,27 @@ case $host_os in 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 - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in - cl*) ;; + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] @@ -4533,7 +4969,6 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported @@ -4549,9 +4984,9 @@ # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # 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'. + # 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_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 @@ -4567,7 +5002,7 @@ # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -4575,7 +5010,7 @@ # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) @@ -4588,7 +5023,7 @@ # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -4610,24 +5045,24 @@ esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -4640,7 +5075,7 @@ case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 @@ -4659,7 +5094,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -4675,7 +5110,7 @@ _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4685,7 +5120,7 @@ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -4693,61 +5128,89 @@ _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -4758,43 +5221,47 @@ lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -4808,8 +5275,8 @@ _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -4827,8 +5294,8 @@ _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4840,7 +5307,7 @@ _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -4855,9 +5322,9 @@ # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4874,15 +5341,15 @@ *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= @@ -4898,7 +5365,7 @@ # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported @@ -4906,34 +5373,57 @@ ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; 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="" + no_entry_flag= else # 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 - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | 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. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive 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 + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -4952,13 +5442,21 @@ _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -4977,62 +5475,80 @@ ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi - _LT_TAGVAR(link_all_deplibs, $1)=no + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -5041,7 +5557,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -5071,35 +5587,37 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -5108,7 +5626,7 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -5130,10 +5648,6 @@ _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; - freebsd1*) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little @@ -5146,7 +5660,7 @@ ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) + freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes @@ -5162,34 +5676,33 @@ ;; hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes @@ -5197,25 +5710,25 @@ ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ @@ -5223,14 +5736,14 @@ # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in @@ -5241,7 +5754,7 @@ *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -5252,16 +5765,16 @@ ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], - [save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + [save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], @@ -5274,21 +5787,32 @@ end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) - LDFLAGS="$save_LDFLAGS"]) - if test "$lt_cv_irix_exported_symbol" = yes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + LDFLAGS=$save_LDFLAGS]) + if test yes = "$lt_cv_irix_exported_symbol"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + _LT_TAGVAR(link_all_deplibs, $1)=no else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(ld_shlibs, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -5303,7 +5827,7 @@ newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; @@ -5311,27 +5835,19 @@ *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no @@ -5342,33 +5858,53 @@ _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -5379,24 +5915,24 @@ solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -5406,11 +5942,11 @@ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi @@ -5420,10 +5956,10 @@ ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -5472,43 +6008,43 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -5523,17 +6059,17 @@ ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no +test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld @@ -5550,7 +6086,7 @@ # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -5627,18 +6163,15 @@ _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], - [[If ld is used when linking, flag to hardcode $libdir into a binary - during linking. This must work even if $libdir does not exist]]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the + "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR @@ -5679,10 +6212,10 @@ # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" +lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. @@ -5722,18 +6255,18 @@ LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB - # Report which library types will actually be built + # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -5741,8 +6274,12 @@ ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -5750,13 +6287,13 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP -CC="$lt_save_CC" +CC=$lt_save_CC ])# _LT_LANG_C_CONFIG @@ -5764,14 +6301,14 @@ # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then +if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes @@ -5787,7 +6324,6 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported @@ -5814,7 +6350,7 @@ # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -5856,35 +6392,35 @@ if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi @@ -5920,18 +6456,30 @@ _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; 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="" + 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. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -5941,6 +6489,13 @@ ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -5959,13 +6514,21 @@ _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -5983,64 +6546,84 @@ fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # The "-G" linker flag allows undefined symbols. + _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -6050,7 +6633,7 @@ _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6078,57 +6661,58 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - 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' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + 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 _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6139,6 +6723,34 @@ _LT_DARWIN_LINKER_FEATURES($1) ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -6157,7 +6769,7 @@ esac ;; - freebsd[[12]]*) + freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no @@ -6173,18 +6785,15 @@ _LT_TAGVAR(ld_shlibs, $1)=yes ;; - gnu*) - ;; - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default @@ -6196,7 +6805,7 @@ _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6205,11 +6814,11 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no @@ -6219,15 +6828,15 @@ ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi @@ -6253,13 +6862,13 @@ aCC*) case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -6270,20 +6879,20 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -6298,22 +6907,22 @@ interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -6322,22 +6931,22 @@ _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -6345,8 +6954,8 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6355,10 +6964,10 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -6372,59 +6981,59 @@ # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_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' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_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' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -6438,18 +7047,18 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -6457,10 +7066,10 @@ *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on @@ -6518,22 +7127,17 @@ _LT_TAGVAR(ld_shlibs, $1)=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -6549,9 +7153,9 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using @@ -6569,17 +7173,17 @@ cxx*) case $host in osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac @@ -6594,21 +7198,21 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists @@ -6654,9 +7258,9 @@ # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no @@ -6664,7 +7268,7 @@ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; @@ -6681,30 +7285,30 @@ ;; gcx*) # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -6712,11 +7316,11 @@ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -6725,52 +7329,52 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" + '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" + '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -6801,10 +7405,10 @@ esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$GXX + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -6831,7 +7435,7 @@ lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG @@ -6853,13 +7457,14 @@ AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case @S|@2 in + .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; + *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF + # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose @@ -6918,12 +7523,18 @@ } }; _LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary @@ -6937,13 +7548,13 @@ pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -6959,16 +7570,16 @@ case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -6976,9 +7587,9 @@ esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" + _LT_TAGVAR(postdeps, $1)=$prev$p else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= @@ -6993,15 +7604,15 @@ continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" + _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" + _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi @@ -7032,51 +7643,6 @@ _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac ]) @@ -7085,7 +7651,7 @@ esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) @@ -7105,10 +7671,10 @@ # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test "X$F77" = "Xno"; then +if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi @@ -7120,7 +7686,6 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no @@ -7146,7 +7711,7 @@ # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then +if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7168,7 +7733,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} @@ -7182,21 +7747,25 @@ AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7204,11 +7773,11 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$G77 + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7225,9 +7794,9 @@ fi # test -n "$compiler" GCC=$lt_save_GCC - CC="$lt_save_CC" - CFLAGS="$lt_save_CFLAGS" -fi # test "$_lt_disable_F77" != yes + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG @@ -7237,11 +7806,11 @@ # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) -if test -z "$FC" || test "X$FC" = "Xno"; then +if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi @@ -7253,7 +7822,6 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no @@ -7279,7 +7847,7 @@ # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then +if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7301,7 +7869,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} @@ -7317,21 +7885,25 @@ AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7339,11 +7911,11 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7363,7 +7935,7 @@ GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS -fi # test "$_lt_disable_FC" != yes +fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG @@ -7373,7 +7945,7 @@ # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE @@ -7407,7 +7979,7 @@ CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. @@ -7440,11 +8012,82 @@ ])# _LT_LANG_GCJ_CONFIG +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)=$LD +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE @@ -7460,7 +8103,7 @@ lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" +lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER @@ -7470,7 +8113,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. -lt_save_CC="$CC" +lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= @@ -7499,7 +8142,7 @@ [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) @@ -7509,6 +8152,13 @@ dnl AC_DEFUN([LT_AC_PROG_GCJ], []) +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], @@ -7603,7 +8253,7 @@ # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue + test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -7620,9 +8270,9 @@ $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break + test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then + if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi @@ -7646,27 +8296,7 @@ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false @@ -7690,102 +8320,9 @@ ])# _LT_CHECK_SHELL_FEATURES -# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) -# ------------------------------------------------------ -# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and -# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. -m4_defun([_LT_PROG_FUNCTION_REPLACE], -[dnl { -sed -e '/^$1 ()$/,/^} # $1 /c\ -$1 ()\ -{\ -m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) -} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: -]) - - -# _LT_PROG_REPLACE_SHELLFNS -# ------------------------- -# Replace existing portable implementations of several shell functions with -# equivalent extended shell implementations where those features are available.. -m4_defun([_LT_PROG_REPLACE_SHELLFNS], -[if test x"$xsi_shell" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) - - _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) - - _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) - - _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) -fi - -if test x"$lt_shell_append" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) - - _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl - func_quote_for_eval "${2}" -dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ - eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) -fi -]) - # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- -# Determine which file name conversion functions should be used by +# Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], diff -Nru webkitgtk-2.4.9/Source/autotools/ltmain.sh webkitgtk-2.4.10/Source/autotools/ltmain.sh --- webkitgtk-2.4.9/Source/autotools/ltmain.sh 2012-05-06 13:14:26.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/ltmain.sh 2016-02-27 07:46:31.000000000 +0000 @@ -1,9 +1,12 @@ +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 -# libtool (GNU libtool) 2.4.2 +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Copyright (C) 1996-2015 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. @@ -23,881 +26,2112 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, -# or obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . -# Usage: $progname [OPTION]... [MODE-ARG]... -# -# Provide generalized library-building support services. -# -# --config show all configuration variables -# --debug enable verbose shell tracing -# -n, --dry-run display commands without modifying any files -# --features display basic configuration information and exit -# --mode=MODE use operation mode MODE -# --preserve-dup-deps don't remove duplicate dependency libraries -# --quiet, --silent don't print informational messages -# --no-quiet, --no-silent -# print informational messages (default) -# --no-warn don't display warning messages -# --tag=TAG use configuration variables from tag TAG -# -v, --verbose print more informational messages than default -# --no-verbose don't print the extra informational messages -# --version print version information -# -h, --help, --help-all print short, long, or detailed help message -# -# MODE must be one of the following: -# -# clean remove files from the build directory -# compile compile a source file into a libtool object -# execute automatically set library path, then run a program -# finish complete the installation of libtool libraries -# install install libraries or executables -# link create a library or an executable -# uninstall remove libraries from an installed directory -# -# MODE-ARGS vary depending on the MODE. When passed as first option, -# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. -# Try `$progname --help --mode=MODE' for a more detailed description of MODE. -# -# When reporting a bug, please describe a test case to reproduce it and -# include the following information: -# -# host-triplet: $host -# shell: $SHELL -# compiler: $LTCC -# compiler flags: $LTCFLAGS -# linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 -# automake: $automake_version -# autoconf: $autoconf_version -# -# Report bugs to . -# GNU libtool home page: . -# General help using GNU software: . PROGRAM=libtool PACKAGE=libtool -VERSION="2.4.2 Debian-2.4.2-1ubuntu1" -TIMESTAMP="" -package_revision=1.3337 +VERSION="2.4.6 Debian-2.4.6-0.1" +package_revision=2.4.6 -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 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. + +# 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 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES 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, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} -# NLS nuisances: We save the old values to restore during execute mode. -lt_user_locale= -lt_safe_locale= -for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_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_var=C - export $lt_var - lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" - lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done -LC_ALL=C -LANGUAGE=C -export LANGUAGE LC_ALL -$lt_unset CDPATH +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath="$0" +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. : ${CP="cp -f"} -test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} -: ${Xsed="$SED -e 1s/^X//"} - -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. - -exit_status=$EXIT_SUCCESS - -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" -dirname="s,/[^/]*$,," -basename="s,^.*/,," -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} # func_dirname may be replaced by extended shell implementation +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "${1}" | $SED "$basename"` -} # func_basename may be replaced by extended shell implementation +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () -{ - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi - func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` -} # func_dirname_and_basename may be replaced by extended shell implementation +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; - esac -} # func_stripname may be replaced by extended shell implementation +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" -# These SED scripts presuppose an absolute path with a trailing slash. -pathcar='s,^/\([^/]*\).*$,\1,' -pathcdr='s,^/[^/]*,,' -removedotparts=':dotsl - s@/\./@/@g - t dotsl - s,/\.$,/,' -collapseslashes='s@/\{1,\}@/@g' -finalslash='s,/*$,/,' +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. -# func_normal_abspath PATH -# Remove doubled-up and trailing slashes, "." path components, -# and cancel out any ".." path components in PATH after making -# it an absolute path. -# value returned in "$func_normal_abspath_result" -func_normal_abspath () -{ - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` - while :; do - # Processed it all yet? - if test "$func_normal_abspath_tpath" = / ; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result" ; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in - "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. -# func_relative_path SRCDIR DSTDIR -# generates a relative path from SRCDIR to DSTDIR, with a trailing -# slash if non-empty, suitable for immediately appending a filename -# without needing to append a separator. -# value returned in "$func_relative_path_result" -func_relative_path () -{ - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break - ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break - ;; - *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=${func_dirname_result} - if test "x$func_relative_path_tlibdir" = x ; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result - ;; - esac - done +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test "x$func_stripname_result" != x ; then - func_relative_path_result=${func_relative_path_result}/${func_stripname_result} - fi +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS - # Normalisation. If bindir is libdir, return empty string, - # else relative path ending with a slash; either way, target - # file name can be directly appended. - if test ! -z "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result/" - func_relative_path_result=$func_stripname_result - fi -} +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath=$0 -# The name of this program: -func_dirname_and_basename "$progpath" -progname=$func_basename_result +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` -# Make sure we have an absolute path for reexecution: +# Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) - progdir=$func_dirname_result + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` - progpath="$progdir/$progname" + progpath=$progdir/$progname ;; *) - save_IFS="$IFS" + _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do - IFS="$save_IFS" + IFS=$_G_IFS test -x "$progdir/$progname" && break done - IFS="$save_IFS" + IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` - progpath="$progdir/$progname" + progpath=$progdir/$progname ;; 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 that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' -# Sed substitution that converts a w32 file name or path -# which contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-`\' parameter expansions in output of double_quote_subst that were -# `\'-ed in input to the same. If an odd number of `\' preceded a '$' -# in input to double_quote_subst, that '$' was protected from expansion. -# Since each input `\' is now two `\'s, look for any number of runs of -# four `\'s followed by two `\'s and then a '$'. `\' that '$'. -bs='\\' -bs2='\\\\' -bs4='\\\\\\\\' -dollar='\$' -sed_double_backslash="\ - s/$bs4/&\\ -/g - s/^$bs2$dollar/$bs&/ - s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g - s/\n//g" +## ----------------- ## +## Standard options. ## +## ----------------- ## + +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. -# Standard options: opt_dry_run=false -opt_help=false opt_quiet=false opt_verbose=false -opt_warning=: - -# func_echo arg... -# Echo program name prefixed message, along with the current mode -# name if it has been set yet. -func_echo () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }$*" -} -# func_verbose arg... -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $opt_verbose && func_echo ${1+"$@"} +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= + +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue + +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all + + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } - # A bug in bash halts the script if the last line of a function - # fails when set -e is in force, so we need another command to - # work around that: - : + require_term_colors=: } -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} -# func_error arg... -# Echo program name prefixed message to standard error. -func_error () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 -} +## ----------------- ## +## Function library. ## +## ----------------- ## -# func_warning arg... -# Echo program name prefixed warning message to standard error. -func_warning () -{ - $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. - # bash bug again: - : -} -# func_fatal_error arg... -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - func_error ${1+"$@"} - exit $EXIT_FAILURE -} +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. -# func_fatal_help arg... -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - func_error ${1+"$@"} - func_fatal_error "$help" -} -help="Try \`$progname --help' for more information." ## default + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +eval 'func_dirname () +{ + $debug_cmd -# func_grep expression filename + '"$_d"' +}' + + +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () +{ + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { + $debug_cmd + $GREP "$1" "$2" >/dev/null 2>&1 } -# func_mkdir_p directory-path +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { - my_directory_path="$1" - my_dir_list= + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= - if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then - # Protect directory names starting with `-' - case $my_directory_path in - -*) my_directory_path="./$my_directory_path" ;; + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... - while test ! -d "$my_directory_path"; do + while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. - my_dir_list="$my_directory_path:$my_dir_list" + _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done - case $my_directory_path in */*) ;; *) break ;; esac + case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop - my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done - my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` - save_mkdir_p_IFS="$IFS"; IFS=':' - for my_dir in $my_dir_list; do - IFS="$save_mkdir_p_IFS" - # mkdir can fail with a `File exist' error if two processes + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! - $MKDIR "$my_dir" 2>/dev/null || : + $MKDIR "$_G_dir" 2>/dev/null || : done - IFS="$save_mkdir_p_IFS" + IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. - test -d "$my_directory_path" || \ - func_fatal_error "Failed to create \`$1'" + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" fi } -# func_mktempdir [string] +# func_mktempdir [BASENAME] +# ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. +# given, BASENAME is the basename for that directory. func_mktempdir () { - my_template="${TMPDIR-/tmp}/${1-$progname}" + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} - if test "$opt_dry_run" = ":"; then + if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" + _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` - if test ! -d "$my_tmpdir"; then + if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + + +# func_normal_abspath PATH +# ------------------------ +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +func_normal_abspath () +{ + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + + +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () +{ + $debug_cmd + + $opt_quiet || func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + + +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () +{ + $debug_cmd + + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. + + : +} + + +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. +func_quote_for_eval () +{ + $debug_cmd + + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done +} + + +# func_quote_for_expand ARG +# ------------------------- +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + $debug_cmd + + case $1 in + *[\\\`\"]*) + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; + *) + _G_arg=$1 ;; + esac + + case $_G_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_arg=\"$_G_arg\" + ;; + esac + + func_quote_for_expand_result=$_G_arg +} + + +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_tr_sh +# ---------- +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $debug_cmd + + $opt_verbose && func_echo "$*" + + : +} + + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 +} + + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 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. + +# 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 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd - save_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$my_tmpdir" - umask $save_mktempdir_umask - fi + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || \ - func_fatal_error "cannot create temporary directory \`$my_tmpdir'" - fi + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} - $ECHO "$my_tmpdir" + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result } -# func_quote_for_eval arg -# Aesthetically quote ARG to be evaled later. -# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT -# is double-quoted, suitable for a subsequent eval, whereas -# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters -# which are still active within double quotes backslashified. -func_quote_for_eval () +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () { - case $1 in - *[\\\`\"\$]*) - func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; - *) - func_quote_for_eval_unquoted_result="$1" ;; - esac + $debug_cmd - case $func_quote_for_eval_unquoted_result in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and and variable - # expansion for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" - ;; - *) - func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" - esac + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result } -# func_quote_for_expand arg -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () { - case $1 in - *[\\\`\"]*) - my_arg=`$ECHO "$1" | $SED \ - -e "$double_quote_subst" -e "$sed_double_backslash"` ;; - *) - my_arg="$1" ;; - esac + $debug_cmd - case $my_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - my_arg="\"$my_arg\"" - ;; - esac + func_parse_options_result= - func_quote_for_expand_result="$my_arg" -} + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift -# func_show_eval cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. -func_show_eval () -{ - my_cmd="$1" - my_fail_exp="${2-:}" + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; - if ${opt_dry_run-false}; then :; else - eval "$my_cmd" - my_status=$? - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi - fi + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result } -# func_show_eval_locale cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. Use the saved locale for evaluation. -func_show_eval_locale () +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" - if ${opt_dry_run-false}; then :; else - eval "$lt_user_locale - $my_cmd" - my_status=$? - eval "$lt_safe_locale" - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi - fi -} + func_run_hooks func_validate_options ${1+"$@"} -# func_tr_sh -# Turn $1 into a string suitable for a shell variable name. -# Result is stored in $func_tr_sh_result. All characters -# not in the set a-zA-Z0-9_ are replaced with '_'. Further, -# if $1 begins with a digit, a '_' is prepended as well. -func_tr_sh () -{ - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result } -# func_version -# Echo version message to standard output and exit. -func_version () -{ - $opt_debug - $SED -n '/(C)/!b go - :more - /\./!{ - N - s/\n# / / - b more - } - :go - /^# '$PROGRAM' (GNU /,/# warranty; / { - s/^# // - s/^# *$// - s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ - p - }' < "$progpath" - exit $? -} +## ----------------- ## +## Helper functions. ## +## ----------------- ## -# func_usage -# Echo short help message to standard output and exit. -func_usage () +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/^# *.*--help/ { - s/^# // - s/^# *$// - s/\$progname/'$progname'/ - p - }' < "$progpath" - echo - $ECHO "run \`$progname --help | more' for full usage" - exit $? + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE } -# func_help [NOEXIT] -# Echo long help message to standard output and exit, -# unless 'noexit' is passed as argument. + +# func_help +# --------- +# Echo long help message to standard output and exit. func_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/# Report bugs to/ { - :print - s/^# // - s/^# *$// - s*\$progname*'$progname'* - s*\$host*'"$host"'* - s*\$SHELL*'"$SHELL"'* - s*\$LTCC*'"$LTCC"'* - s*\$LTCFLAGS*'"$LTCFLAGS"'* - s*\$LD*'"$LD"'* - s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ - p - d - } - /^# .* home page:/b print - /^# General help using/b print - ' < "$progpath" - ret=$? - if test -z "$1"; then - exit $ret - fi + func_usage_message + $ECHO "$long_help_message" + exit 0 } -# func_missing_arg argname + +# func_missing_arg ARGNAME +# ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { - $opt_debug + $debug_cmd - func_error "missing argument for $1." + func_error "Missing argument for '$1'." exit_cmd=exit } -# func_split_short_opt shortopt +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. -func_split_short_opt () +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () { - my_sed_short_opt='1s/^\(..\).*$/\1/;q' - my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + $debug_cmd - func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` - func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` -} # func_split_short_opt may be replaced by extended shell implementation + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} -# func_split_long_opt longopt -# Set func_split_long_opt_name and func_split_long_opt_arg shell -# variables after splitting LONGOPT at the `=' sign. -func_split_long_opt () +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () { - my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' - my_sed_long_arg='1s/^--[^=]*=//' + $debug_cmd - func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` - func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` -} # func_split_long_opt may be replaced by extended shell implementation + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} -exit_cmd=: +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () +{ + $debug_cmd + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + exit $? +} -magic="%%%MAGIC variable%%%" -magic_exe="%%%MAGIC EXE variable%%%" +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: -# Global variables. -nonopt= -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 +# Set a version string. +scriptversion='(GNU libtool) 2.4.6' -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () { - eval "${1}=\$${1}\${2}" -} # func_append may be replaced by extended shell implementation + $debug_cmd -# func_append_quoted var value -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -func_append_quoted () -{ - func_quote_for_eval "${2}" - eval "${1}=\$${1}\\ \$func_quote_for_eval_result" -} # func_append_quoted may be replaced by extended shell implementation + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} -# func_arith arithmetic-term... -func_arith () +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () { - func_arith_result=`expr "${@}"` -} # func_arith may be replaced by extended shell implementation + $debug_cmd + $warning_func ${1+"$@"} +} -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` -} # func_len may be replaced by extended shell implementation +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" -# func_lo2o object -func_lo2o () +# Additional text appended to 'usage_message' in response to '--help'. +func_help () { - func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -} # func_lo2o may be replaced by extended shell implementation + $debug_cmd + func_usage_message + $ECHO "$long_help_message -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -} # func_xform may be replaced by extended shell implementation +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname (GNU libtool) 2.4.6 + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} + + +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi -# func_fatal_configuration arg... +# func_fatal_configuration ARG... +# ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { - func_error ${1+"$@"} - func_error "See the $PACKAGE documentation for more information." - func_fatal_error "Fatal configuration error." + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." } # func_config +# ----------- # Display the configuration for all the tags in this script. func_config () { @@ -915,17 +2149,19 @@ exit $? } + # func_features +# ------------- # Display the features supported by this script. func_features () { echo "host: $host" - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" @@ -934,289 +2170,297 @@ exit $? } -# func_enable_tag tagname + +# func_enable_tag TAGNAME +# ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { - # Global variable: - tagname="$1" + # Global variable: + tagname=$1 - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf="/$re_begincf/,/$re_endcf/p" - - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac } + # func_check_version_match +# ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - else - cat >&2 <<_LT_EOF + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - fi - else - cat >&2 <<_LT_EOF + fi + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF - fi + fi - exit $EXIT_MISMATCH - fi + exit $EXIT_MISMATCH + fi } -# Shorthand for --mode=foo, only valid as the first argument -case $1 in -clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; -compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; -execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; -finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; -install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; -link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; -uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; -esac +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () +{ + $debug_mode + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false + nonopt= + preserve_args= -# Option defaults: -opt_debug=: -opt_dry_run=false -opt_config=false -opt_preserve_dup_deps=false -opt_features=false -opt_finish=false -opt_help=false -opt_help_all=false -opt_silent=: -opt_warning=: -opt_verbose=: -opt_silent=false -opt_verbose=false + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + esac + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result +} +func_add_hook func_options_prep libtool_options_prep -# Parse options once, thoroughly. This comes as soon as possible in the -# script to make things like `--version' happen as quickly as we can. -{ - # this just eases exit handling - while test $# -gt 0; do - opt="$1" - shift - case $opt in - --debug|-x) opt_debug='set -x' - func_echo "enabling shell trace mode" - $opt_debug - ;; - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - --config) - opt_config=: -func_config - ;; - --dlopen|-dlopen) - optarg="$1" - opt_dlopen="${opt_dlopen+$opt_dlopen -}$optarg" - shift - ;; - --preserve-dup-deps) - opt_preserve_dup_deps=: - ;; - --features) - opt_features=: -func_features - ;; - --finish) - opt_finish=: -set dummy --mode finish ${1+"$@"}; shift - ;; - --help) - opt_help=: - ;; - --help-all) - opt_help_all=: -opt_help=': help-all' - ;; - --mode) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_mode="$optarg" -case $optarg in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; - - # Catch anything else as an error - *) func_error "invalid argument for $opt" - exit_cmd=exit - break - ;; -esac - shift - ;; - --no-silent|--no-quiet) - opt_silent=false -func_append preserve_args " $opt" - ;; - --no-warning|--no-warn) - opt_warning=false -func_append preserve_args " $opt" - ;; - --no-verbose) - opt_verbose=false -func_append preserve_args " $opt" - ;; - --silent|--quiet) - opt_silent=: -func_append preserve_args " $opt" - opt_verbose=false - ;; - --verbose|-v) - opt_verbose=: -func_append preserve_args " $opt" -opt_silent=false - ;; - --tag) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_tag="$optarg" -func_append preserve_args " $opt $optarg" -func_enable_tag "$optarg" - shift - ;; - - -\?|-h) func_usage ;; - --help) func_help ;; - --version) func_version ;; - - # Separate optargs to long options: - --*=*) - func_split_long_opt "$opt" - set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-n*|-v*) - func_split_short_opt "$opt" - set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognized option \`$opt'" ;; - *) set dummy "$opt" ${1+"$@"}; shift; break ;; - esac - done - # Validate options: +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd - # save first non-option argument - if test "$#" -gt 0; then - nonopt="$opt" - shift - fi + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; - # preserve --debug - test "$opt_debug" = : || func_append preserve_args " --debug" + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done - case $host in - *cygwin* | *mingw* | *pw32* | *cegcc*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - $opt_help || { - # Sanity checks first: - func_check_version_match + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options - if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - func_fatal_configuration "not configured to build any kind of library" - fi - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test "$opt_mode" != execute; then - func_error "unrecognized option \`-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift fi - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$progname --help --mode=$opt_mode' for more information." - } + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } - # Bail if the options were screwed - $exit_cmd $EXIT_FAILURE + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result } +func_add_hook func_validate_options libtool_validate_options + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift @@ -1224,24 +2468,52 @@ ## Main. ## ## ----------- ## +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + # func_lalib_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && - $SED -e 4q "$1" 2>/dev/null \ - | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be -# fatal anyway. Works if `file' does not exist. +# fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no @@ -1249,13 +2521,13 @@ for lalib_p_l in 1 2 3 4 do read lalib_p_line - case "$lalib_p_line" in + case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi - test "$lalib_p" = yes + test yes = "$lalib_p" } # func_ltwrapper_script_p file @@ -1264,7 +2536,8 @@ # determined imposters. func_ltwrapper_script_p () { - func_lalib_p "$1" + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file @@ -1289,7 +2562,7 @@ { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file @@ -1308,11 +2581,13 @@ # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { - $opt_debug + $debug_cmd + save_ifs=$IFS; IFS='~' for cmd in $1; do - IFS=$save_ifs + IFS=$sp$nl eval cmd=\"$cmd\" + IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs @@ -1324,10 +2599,11 @@ # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing -# `FILE.' does not work on cygwin managed mounts. +# 'FILE.' does not work on cygwin managed mounts. func_source () { - $opt_debug + $debug_cmd + case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; @@ -1354,10 +2630,10 @@ # store the result into func_replace_sysroot_result. func_replace_sysroot () { - case "$lt_sysroot:$1" in + case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result="=$func_stripname_result" + func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. @@ -1374,7 +2650,8 @@ # arg is usually of the form 'gcc ...' func_infer_tag () { - $opt_debug + $debug_cmd + if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do @@ -1393,7 +2670,7 @@ for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. @@ -1418,7 +2695,7 @@ # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with \`--tag'" + func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi @@ -1434,15 +2711,15 @@ # but don't create it if we're doing a dry run. func_write_libtool_object () { - write_libobj=${1} - if test "$build_libtool_libs" = yes; then - write_lobj=\'${2}\' + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' else write_lobj=none fi - if test "$build_old_libs" = yes; then - write_oldobj=\'${3}\' + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' else write_oldobj=none fi @@ -1450,7 +2727,7 @@ $opt_dry_run || { cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` + $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi @@ -1514,18 +2792,19 @@ # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { - $opt_debug + $debug_cmd + # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result="" + func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi @@ -1554,7 +2833,8 @@ # environment variable; do not put it in $PATH. func_cygpath () { - $opt_debug + $debug_cmd + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then @@ -1563,7 +2843,7 @@ fi else func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath @@ -1574,10 +2854,11 @@ # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { - $opt_debug + $debug_cmd + # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 @@ -1588,13 +2869,14 @@ # func_to_host_file_result to ARG1). func_convert_file_check () { - $opt_debug - if test -z "$2" && test -n "$1" ; then + $debug_cmd + + if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" - func_error " \`$1'" + func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: - func_to_host_file_result="$1" + func_to_host_file_result=$1 fi } # end func_convert_file_check @@ -1606,10 +2888,11 @@ # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { - $opt_debug + $debug_cmd + if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" - func_error " \`$3'" + func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. @@ -1618,7 +2901,7 @@ func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else - func_to_host_path_result="$3" + func_to_host_path_result=$3 fi fi } @@ -1630,9 +2913,10 @@ # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { - $opt_debug + $debug_cmd + case $4 in - $1 ) func_to_host_path_result="$3$func_to_host_path_result" + $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in @@ -1646,7 +2930,7 @@ ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## -# invoked via `$to_host_file_cmd ARG' +# invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. @@ -1657,7 +2941,8 @@ # in func_to_host_file_result. func_to_host_file () { - $opt_debug + $debug_cmd + $to_host_file_cmd "$1" } # end func_to_host_file @@ -1669,7 +2954,8 @@ # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { - $opt_debug + $debug_cmd + case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 @@ -1687,7 +2973,7 @@ # Copy ARG to func_to_host_file_result. func_convert_file_noop () { - func_to_host_file_result="$1" + func_to_host_file_result=$1 } # end func_convert_file_noop @@ -1698,11 +2984,12 @@ # func_to_host_file_result. func_convert_file_msys_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" - func_to_host_file_result="$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1714,8 +3001,9 @@ # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. @@ -1731,11 +3019,12 @@ # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1747,12 +3036,13 @@ # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1765,13 +3055,14 @@ # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1781,7 +3072,7 @@ ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# -# invoked via `$to_host_path_cmd ARG' +# invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. @@ -1805,10 +3096,11 @@ to_host_path_cmd= func_init_to_host_path_cmd () { - $opt_debug + $debug_cmd + if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd="func_convert_path_${func_stripname_result}" + to_host_path_cmd=func_convert_path_$func_stripname_result fi } @@ -1818,7 +3110,8 @@ # in func_to_host_path_result. func_to_host_path () { - $opt_debug + $debug_cmd + func_init_to_host_path_cmd $to_host_path_cmd "$1" } @@ -1829,7 +3122,7 @@ # Copy ARG to func_to_host_path_result. func_convert_path_noop () { - func_to_host_path_result="$1" + func_to_host_path_result=$1 } # end func_convert_path_noop @@ -1840,8 +3133,9 @@ # func_to_host_path_result. func_convert_path_msys_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; @@ -1849,7 +3143,7 @@ func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1863,8 +3157,9 @@ # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" @@ -1883,14 +3178,15 @@ # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1904,15 +3200,16 @@ # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1927,8 +3224,9 @@ # func_to_host_file_result. func_convert_path_nix_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them @@ -1937,7 +3235,7 @@ func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1946,13 +3244,31 @@ # end func_convert_path_nix_to_cygwin +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + # func_mode_compile arg... func_mode_compile () { - $opt_debug + $debug_cmd + # Get the compilation command and the source file. base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" + srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal @@ -1965,12 +3281,12 @@ case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile - lastarg="$arg" + lastarg=$arg arg_mode=normal ;; target ) - libobj="$arg" + libobj=$arg arg_mode=normal continue ;; @@ -1980,7 +3296,7 @@ case $arg in -o) test -n "$libobj" && \ - func_fatal_error "you cannot specify \`-o' more than once" + func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; @@ -2009,12 +3325,12 @@ func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for arg in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_append_quoted lastarg "$arg" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result @@ -2027,8 +3343,8 @@ # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # - lastarg="$srcfile" - srcfile="$arg" + lastarg=$srcfile + srcfile=$arg ;; esac # case $arg ;; @@ -2043,13 +3359,13 @@ func_fatal_error "you must specify an argument for -Xcompile" ;; target) - func_fatal_error "you must specify a target with \`-o'" + func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" - libobj="$func_basename_result" + libobj=$func_basename_result } ;; esac @@ -2069,7 +3385,7 @@ case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) - func_fatal_error "cannot determine name of library object from \`$libobj'" + func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac @@ -2078,8 +3394,8 @@ for arg in $later; do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; @@ -2105,17 +3421,17 @@ func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name \`$libobj' may not contain shell special characters." + && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" - objname="$func_basename_result" - xdir="$func_dirname_result" - lobj=${xdir}$objdir/$objname + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" @@ -2127,16 +3443,16 @@ pic_mode=default ;; esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock else output_obj= need_locks=no @@ -2145,12 +3461,12 @@ # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then + if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done - elif test "$need_locks" = warn; then + elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: @@ -2158,7 +3474,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2180,11 +3496,11 @@ qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile - if test "$pic_mode" != no; then + if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code @@ -2201,7 +3517,7 @@ func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2212,7 +3528,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2228,20 +3544,20 @@ fi # Allow error messages only from the first compilation. - if test "$suppress_opt" = yes; then + if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - if test "$pic_mode" != yes; then + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi - if test "$compiler_c_o" = yes; then + if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi @@ -2250,7 +3566,7 @@ func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2261,7 +3577,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2281,7 +3597,7 @@ func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked - if test "$need_locks" != no; then + if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi @@ -2291,7 +3607,7 @@ } $opt_help || { - test "$opt_mode" = compile && func_mode_compile ${1+"$@"} + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () @@ -2311,7 +3627,7 @@ Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated @@ -2330,16 +3646,16 @@ -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only - -shared do not build a \`.o' file suitable for static linking - -static only build a \`.o' file suitable for static linking + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler -COMPILE-COMMAND is a command to be used in creating a \`standard' object file +COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." ;; execute) @@ -2352,7 +3668,7 @@ -dlopen FILE add the directory containing FILE to the library path -This mode sets the library path environment variable according to \`-dlopen' +This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated @@ -2371,7 +3687,7 @@ Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." +the '--dry-run' option if you just want to see what would be executed." ;; install) @@ -2381,7 +3697,7 @@ Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. +either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: @@ -2407,7 +3723,7 @@ -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE @@ -2421,7 +3737,8 @@ -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information @@ -2441,20 +3758,20 @@ -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) -All other options (arguments beginning with \`-') are ignored. +All other options (arguments beginning with '-') are ignored. -Every other argument is treated as a filename. Files ending in \`.la' are +Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; @@ -2465,7 +3782,7 @@ Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. @@ -2473,17 +3790,17 @@ ;; *) - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo - $ECHO "Try \`$progname --help' for more information about other modes." + $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then - if test "$opt_help" = :; then + if test : = "$opt_help"; then func_mode_help else { @@ -2491,7 +3808,7 @@ for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done - } | sed -n '1p; 2,$s/^Usage:/ or: /p' + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do @@ -2499,7 +3816,7 @@ func_mode_help done } | - sed '1d + $SED '1d /^When reporting/,/^Report/{ H d @@ -2516,16 +3833,17 @@ # func_mode_execute arg... func_mode_execute () { - $opt_debug + $debug_cmd + # The first argument is the command name. - cmd="$nonopt" + cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ - || func_fatal_help "\`$file' is not a file" + || func_fatal_help "'$file' is not a file" dir= case $file in @@ -2535,7 +3853,7 @@ # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$lib' is not a valid libtool archive" + || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= @@ -2546,18 +3864,18 @@ if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ - func_warning "\`$file' was not linked with \`-export-dynamic'" + func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; @@ -2565,18 +3883,18 @@ *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result ;; *) - func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" + test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then @@ -2588,7 +3906,7 @@ # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. - libtool_execute_magic="$magic" + libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= @@ -2601,12 +3919,12 @@ if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program fi ;; esac @@ -2614,7 +3932,15 @@ func_append_quoted args "$file" done - if test "X$opt_dry_run" = Xfalse; then + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" @@ -2631,25 +3957,18 @@ done # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS + exec_cmd=\$cmd$args fi } -test "$opt_mode" = execute && func_mode_execute ${1+"$@"} +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { - $opt_debug + $debug_cmd + libs= libdirs= admincmds= @@ -2663,11 +3982,11 @@ if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else - func_warning "\`$opt' is not a valid libtool archive" + func_warning "'$opt' is not a valid libtool archive" fi else - func_fatal_error "invalid argument \`$opt'" + func_fatal_error "invalid argument '$opt'" fi done @@ -2682,12 +4001,12 @@ # Remove sysroot references if $opt_dry_run; then for lib in $libs; do - echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do - sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done @@ -2712,7 +4031,7 @@ fi # Exit here if they wanted silent mode. - $opt_silent && exit $EXIT_SUCCESS + $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" @@ -2723,27 +4042,27 @@ echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then - echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" - $ECHO " - use the \`$flag' linker flag" + $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo @@ -2762,18 +4081,20 @@ exit $EXIT_SUCCESS } -test "$opt_mode" = finish && func_mode_finish ${1+"$@"} +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { - $opt_debug + $debug_cmd + # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac; then + case $nonopt in *shtool*) :;; *) false;; esac + then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " @@ -2800,7 +4121,7 @@ opts= prev= install_type= - isdir=no + isdir=false stripme= no_mode=: for arg @@ -2813,7 +4134,7 @@ fi case $arg in - -d) isdir=yes ;; + -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg @@ -2831,7 +4152,7 @@ *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then - if test "x$prev" = x-m && test -n "$install_override_mode"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi @@ -2856,7 +4177,7 @@ func_fatal_help "you must specify an install program" test -n "$prev" && \ - func_fatal_help "the \`$prev' option requires an argument" + func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else @@ -2878,19 +4199,19 @@ dest=$func_stripname_result # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." - destdir="$func_dirname_result" - destname="$func_basename_result" + destdir=$func_dirname_result + destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ - func_fatal_help "\`$dest' is not a directory" + func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; @@ -2899,7 +4220,7 @@ case $file in *.lo) ;; *) - func_fatal_help "\`$destdir' must be an absolute directory name" + func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done @@ -2908,7 +4229,7 @@ # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic staticlibs= future_libdirs= @@ -2928,7 +4249,7 @@ # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$file' is not a valid libtool archive" + || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= @@ -2950,7 +4271,7 @@ fi func_dirname "$file" "/" "" - dir="$func_dirname_result" + dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then @@ -2964,7 +4285,7 @@ # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. @@ -2973,29 +4294,36 @@ relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi - func_warning "relinking \`$file'" + func_warning "relinking '$file'" func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then - realname="$1" + realname=$1 shift - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T + srcname=$realname + test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' - tstripme="$stripme" + tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) - tstripme="" + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= ;; esac ;; @@ -3006,7 +4334,7 @@ if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on + # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname @@ -3017,14 +4345,14 @@ fi # Do each command in the postinstall commands. - lib="$destdir/$realname" + lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" - name="$func_basename_result" - instname="$dir/$name"i + name=$func_basename_result + instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. @@ -3036,11 +4364,11 @@ # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. @@ -3050,11 +4378,11 @@ staticdest=$func_lo2o_result ;; *.$objext) - staticdest="$destfile" + staticdest=$destfile destfile= ;; *) - func_fatal_help "cannot copy a libtool object to \`$destfile'" + func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac @@ -3063,7 +4391,7 @@ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result @@ -3075,23 +4403,23 @@ *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install - stripped_ext="" + stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result - stripped_ext=".exe" + stripped_ext=.exe fi ;; esac @@ -3119,19 +4447,19 @@ # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script \`$wrapper'" + func_fatal_error "invalid libtool wrapper script '$wrapper'" - finalize=yes + finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi - libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "\`$lib' has not been installed in \`$libdir'" - finalize=no + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false fi done @@ -3139,29 +4467,29 @@ func_source "$wrapper" outputname= - if test "$fast_install" = no && test -n "$relink_command"; then + if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { - if test "$finalize" = yes; then + if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" - file="$func_basename_result" - outputname="$tmpdir/$file" + file=$func_basename_result + outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - $opt_silent || { + $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else - func_error "error: relink \`$file' with the above command before installing it" + func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi - file="$outputname" + file=$outputname else - func_warning "cannot relink \`$file'" + func_warning "cannot relink '$file'" fi } else @@ -3198,10 +4526,10 @@ for file in $staticlibs; do func_basename "$file" - name="$func_basename_result" + name=$func_basename_result # Set up the ranlib parameters. - oldlib="$destdir/$name" + oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result @@ -3216,18 +4544,18 @@ done test -n "$future_libdirs" && \ - func_warning "remember to run \`$progname --finish$future_libdirs'" + func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } -test "$opt_mode" = install && func_mode_install ${1+"$@"} +test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p @@ -3235,16 +4563,17 @@ # a dlpreopen symbol table. func_generate_dlsyms () { - $opt_debug - my_outputname="$1" - my_originator="$2" - my_pic_p="${3-no}" - my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms="${my_outputname}S.c" + my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi @@ -3255,7 +4584,7 @@ "") ;; *.c) # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${my_outputname}.nm" + nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" @@ -3263,34 +4592,36 @@ func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif -#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* External symbol declarations for the compiler. */\ " - if test "$dlself" = yes; then - func_verbose "generating symbol list for \`$output'" + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" @@ -3298,7 +4629,7 @@ progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done @@ -3318,10 +4649,10 @@ # Prepare the list of exported symbols if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" + export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols - eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' @@ -3331,7 +4662,7 @@ } else $opt_dry_run || { - eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in @@ -3345,22 +4676,22 @@ fi for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from \`$dlprefile'" + func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" - name="$func_basename_result" + name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename="" + dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname" ; then + if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" - dlprefile_dlbasename="$func_basename_result" + dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" @@ -3368,7 +4699,7 @@ fi fi $opt_dry_run || { - if test -n "$dlprefile_dlbasename" ; then + if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" @@ -3424,6 +4755,11 @@ echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ @@ -3432,11 +4768,30 @@ void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[]; +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = -{\ - { \"$my_originator\", (void *) 0 }," +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi case $need_lib_prefix in no) @@ -3478,9 +4833,7 @@ *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) - if test "X$my_pic_p" != Xno; then - pic_flag_for_symtable=" $pic_flag" - fi + $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; @@ -3497,10 +4850,10 @@ func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. - symfileobj="$output_objdir/${my_outputname}S.$objext" + symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then @@ -3518,7 +4871,7 @@ esac ;; *) - func_fatal_error "unknown suffix for \`$my_dlsyms'" + func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else @@ -3532,6 +4885,32 @@ fi } +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + # func_win32_libid arg # return the library type of file 'arg' # @@ -3541,8 +4920,9 @@ # Despite the name, also deal with 64 bit binaries. func_win32_libid () { - $opt_debug - win32_libid_type="unknown" + $debug_cmd + + win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import @@ -3552,16 +4932,29 @@ # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' 1,100{ / I /{ - s,.*,import, + s|.*|import| p q } }'` + ;; + esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; @@ -3593,7 +4986,8 @@ # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { - $opt_debug + $debug_cmd + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } @@ -3610,7 +5004,8 @@ # specified import library. func_cygming_dll_for_implib_fallback_core () { - $opt_debug + $debug_cmd + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ @@ -3646,8 +5041,8 @@ /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the - # archive which possess that section. Heuristic: eliminate - # all those which have a first or second character that is + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually @@ -3658,30 +5053,6 @@ $SED -e '/^\./d;/^.\./d;q' } -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified @@ -3695,16 +5066,17 @@ # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { - $opt_debug - if func_cygming_gnu_implib_p "$1" ; then + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1" ; then + elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown - sharedlib_from_linklib_result="" + sharedlib_from_linklib_result= fi } @@ -3712,10 +5084,11 @@ # func_extract_an_archive dir oldlib func_extract_an_archive () { - $opt_debug - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - if test "$lock_old_archive_extraction" = yes; then + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" @@ -3724,7 +5097,7 @@ fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' - if test "$lock_old_archive_extraction" = yes; then + if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then @@ -3738,22 +5111,23 @@ # func_extract_archives gentop oldlib ... func_extract_archives () { - $opt_debug - my_gentop="$1"; shift + $debug_cmd + + my_gentop=$1; shift my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" - my_xlib="$func_basename_result" + my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in @@ -3765,7 +5139,7 @@ esac done extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" @@ -3778,22 +5152,23 @@ cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` - darwin_base_archive=`basename "$darwin_archive"` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" - $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do @@ -3815,7 +5190,7 @@ my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done - func_extract_archives_result="$my_oldobjs" + func_extract_archives_result=$my_oldobjs } @@ -3830,7 +5205,7 @@ # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script -# will assume that the directory in which it is stored is +# will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () @@ -3841,7 +5216,7 @@ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. @@ -3898,9 +5273,9 @@ # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ which is used only on +# /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options which match +# (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and @@ -3933,7 +5308,7 @@ # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then - echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } @@ -3944,7 +5319,7 @@ lt_dump_args_N=1; for lt_arg do - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } @@ -3958,7 +5333,7 @@ *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} @@ -3968,7 +5343,7 @@ *) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} @@ -4043,13 +5418,13 @@ test -n \"\$absdir\" && thisdir=\"\$absdir\" " - if test "$fast_install" = yes; then + if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" @@ -4066,7 +5441,7 @@ if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else - $ECHO \"\$relink_command_output\" >&2 + \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi @@ -4101,7 +5476,7 @@ fi # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" @@ -4121,7 +5496,7 @@ fi else # The program doesn't exist. - \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 @@ -4140,7 +5515,7 @@ cat < #include +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* declarations of non-ANSI functions */ -#if defined(__MINGW32__) +#if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif -/* #elif defined (other platforms) ... */ +/* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ -#if defined(_MSC_VER) +#if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC -# ifndef _INTPTR_T_DEFINED -# define _INTPTR_T_DEFINED -# define intptr_t int -# endif -#elif defined(__MINGW32__) +#elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" -/* #elif defined (other platforms) ... */ +/* #elif defined other platforms ... */ #endif -#if defined(PATH_MAX) +#if defined PATH_MAX # define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) +#elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 @@ -4234,8 +5607,8 @@ # define PATH_SEPARATOR ':' #endif -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 @@ -4268,10 +5641,10 @@ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ + if (stale) { free (stale); stale = 0; } \ } while (0) -#if defined(LT_DEBUGWRAPPER) +#if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; @@ -4300,11 +5673,16 @@ EOF cat < 0) && IS_PATH_SEPARATOR (new_value[len-1])) + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { - new_value[len-1] = '\0'; + new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); @@ -5082,27 +6460,47 @@ # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { - $opt_debug + $debug_cmd + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + # func_mode_link arg... func_mode_link () { - $opt_debug + $debug_cmd + case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra + # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not + # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. @@ -5146,10 +6544,11 @@ module=no no_install=no objs= + os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no - preload=no + preload=false prev= prevarg= release= @@ -5161,7 +6560,7 @@ vinfo= vinfo_number=no weak_libs= - single_module="${wl}-single_module" + single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. @@ -5169,15 +6568,15 @@ do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) - if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then @@ -5210,7 +6609,7 @@ # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do - arg="$1" + arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result @@ -5227,21 +6626,21 @@ case $prev in bindir) - bindir="$arg" + bindir=$arg prev= continue ;; dlfiles|dlprefiles) - if test "$preload" = no; then + $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" - preload=yes - fi + preload=: + } case $arg in *.la | *.lo) ;; # We handle these cases below. force) - if test "$dlself" = no; then + if test no = "$dlself"; then dlself=needless export_dynamic=yes fi @@ -5249,9 +6648,9 @@ continue ;; self) - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless @@ -5261,7 +6660,7 @@ continue ;; *) - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" @@ -5272,14 +6671,14 @@ esac ;; expsyms) - export_symbols="$arg" + export_symbols=$arg test -f "$arg" \ - || func_fatal_error "symbol file \`$arg' does not exist" + || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) - export_symbols_regex="$arg" + export_symbols_regex=$arg prev= continue ;; @@ -5297,7 +6696,13 @@ continue ;; inst_prefix) - inst_prefix_dir="$arg" + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. prev= continue ;; @@ -5321,21 +6726,21 @@ if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5346,7 +6751,7 @@ fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5354,23 +6759,23 @@ # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" + arg=$pic_object fi # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5378,7 +6783,7 @@ if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5386,24 +6791,29 @@ func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi done else - func_fatal_error "link input file \`$arg' does not exist" + func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; precious_regex) - precious_files_regex="$arg" + precious_files_regex=$arg prev= continue ;; release) - release="-$arg" + release=-$arg prev= continue ;; @@ -5415,7 +6825,7 @@ func_fatal_error "only absolute run-paths are allowed" ;; esac - if test "$prev" = rpath; then + if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; @@ -5430,7 +6840,7 @@ continue ;; shrext) - shrext_cmds="$arg" + shrext_cmds=$arg prev= continue ;; @@ -5470,7 +6880,7 @@ esac fi # test -n "$prev" - prevarg="$arg" + prevarg=$arg case $arg in -all-static) @@ -5484,7 +6894,7 @@ -allow-undefined) # FIXME: remove this flag sometime in the future. - func_fatal_error "\`-allow-undefined' must not be used because it is the default" + func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) @@ -5516,7 +6926,7 @@ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi - if test "X$arg" = "X-export-symbols"; then + if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex @@ -5550,9 +6960,9 @@ func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then - func_fatal_error "require no space between \`-L' and \`$1'" + func_fatal_error "require no space between '-L' and '$1'" else - func_fatal_error "need path for \`-L' option" + func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" @@ -5563,8 +6973,8 @@ *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of \`$dir'" - dir="$absdir" + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir ;; esac case "$deplibs " in @@ -5599,7 +7009,7 @@ ;; -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) @@ -5607,11 +7017,11 @@ ;; *-*-os2*) # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework @@ -5620,16 +7030,16 @@ ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; esac - elif test "X$arg" = "X-lc_r"; then + elif test X-lc_r = "X$arg"; then case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; @@ -5639,6 +7049,11 @@ continue ;; + -mllvm) + prev=mllvm + continue + ;; + -module) module=yes continue @@ -5668,7 +7083,7 @@ ;; -multi_module) - single_module="${wl}-multi_module" + single_module=$wl-multi_module continue ;; @@ -5682,8 +7097,8 @@ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. - func_warning "\`-no-install' is ignored for $host" - func_warning "assuming \`-no-fast-install' instead" + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; @@ -5701,6 +7116,11 @@ continue ;; + -os2dllname) + prev=os2dllname + continue + ;; + -o) prev=output ;; -precious-files-regex) @@ -5788,14 +7208,14 @@ func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5804,15 +7224,15 @@ func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5835,7 +7255,7 @@ # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: @@ -5847,25 +7267,49 @@ # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; *.$objext) @@ -5886,21 +7330,21 @@ if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + test none = "$pic_object" || { # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5911,7 +7355,7 @@ fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5919,23 +7363,23 @@ # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" - fi + arg=$pic_object + } # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5943,7 +7387,7 @@ if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5951,7 +7395,7 @@ func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; @@ -5967,11 +7411,11 @@ # A libtool-controlled library. func_resolve_sysroot "$arg" - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= - elif test "$prev" = dlprefiles; then + elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= @@ -5986,7 +7430,7 @@ # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + arg=$func_quote_for_eval_result ;; esac # arg @@ -5998,9 +7442,9 @@ done # argument parsing loop test -n "$prev" && \ - func_fatal_help "the \`$prevarg' option requires an argument" + func_fatal_help "the '$prevarg' option requires an argument" - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" @@ -6009,20 +7453,23 @@ oldlibs= # calculate the name of the file, without its directory func_basename "$output" - outputname="$func_basename_result" - libobjs_save="$libobjs" + outputname=$func_basename_result + libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + func_dirname "$output" "/" "" - output_objdir="$func_dirname_result$objdir" + output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. @@ -6045,7 +7492,7 @@ # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6053,7 +7500,7 @@ func_append libs " $deplib" done - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps @@ -6085,7 +7532,7 @@ case $file in *.la) ;; *) - func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done @@ -6093,7 +7540,7 @@ prog) compile_deplibs= finalize_deplibs= - alldeplibs=no + alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" @@ -6105,32 +7552,32 @@ for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... - if test "$linkmode,$pass" = "lib,link"; then + if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs fi - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs deplibs= fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi - if test "$linkmode,$pass" = "lib,dlpreopen"; then + if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs @@ -6151,26 +7598,26 @@ esac done done - libs="$dlprefiles" + libs=$dlprefiles fi - if test "$pass" = dlopen; then + if test dlopen = "$pass"; then # Collect dlpreopened libraries - save_deplibs="$deplibs" + save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= - found=no + found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6180,13 +7627,13 @@ continue ;; -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - func_warning "\`-l' is ignored for archives/objects" + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result - if test "$linkmode" = lib; then + if test lib = "$linkmode"; 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" @@ -6194,31 +7641,22 @@ 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}" + lib=$searchdir/lib$name$search_ext if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes + if test .la = "$search_ext"; then + found=: else - found=no + found=false fi break 2 fi done done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library + if $found; then + # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then @@ -6226,19 +7664,19 @@ old_library= func_source "$lib" for l in $old_library $library_names; do - ll="$l" + ll=$l done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no + if test "X$ll" = "X$old_library"; then # only static version available + found=false func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi @@ -6247,15 +7685,25 @@ *) ;; esac fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue fi ;; # -l *.ltframework) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6268,18 +7716,18 @@ case $linkmode in lib) deplibs="$deplib $deplibs" - test "$pass" = conv && continue + test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi - if test "$pass" = scan; then + if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6290,13 +7738,13 @@ func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) - func_warning "\`-L' is ignored for archives/objects" + func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) - if test "$pass" = link; then + if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result @@ -6314,7 +7762,7 @@ lib=$func_resolve_sysroot_result ;; *.$libext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi @@ -6325,21 +7773,26 @@ case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) - valid_a_lib=no + valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes + valid_a_lib=: fi ;; pass_all) - valid_a_lib=yes + valid_a_lib=: ;; esac - if test "$valid_a_lib" != yes; then + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" @@ -6347,18 +7800,13 @@ echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." - else - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) - if test "$pass" != link; then + if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6369,10 +7817,10 @@ esac # linkmode ;; # *.$libext *.lo | *.$objext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" @@ -6385,22 +7833,20 @@ continue ;; %DEPLIBS%) - alldeplibs=yes + alldeplibs=: continue ;; esac # case $deplib - if test "$found" = yes || test -f "$lib"; then : - else - func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" - fi + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ - || func_fatal_error "\`$lib' is not a valid libtool archive" + || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result dlname= dlopen= @@ -6430,19 +7876,19 @@ done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi - if test "$pass" = conv; then + if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" @@ -6450,15 +7896,15 @@ tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done - elif test "$linkmode" != prog && test "$linkmode" != lib; then - func_fatal_error "\`$lib' is not a convenience library" + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv @@ -6467,26 +7913,26 @@ # Get the name of the library we link against. linklib= if test -n "$old_library" && - { test "$prefer_static_libs" = yes || - test "$prefer_static_libs,$installed" = "built,no"; }; then + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do - linklib="$l" + linklib=$l done fi if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - func_fatal_error "cannot -dlopen a convenience library: \`$lib'" - fi + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't @@ -6500,40 +7946,40 @@ # We need an absolute path. case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" - abs_ladir="$ladir" + abs_ladir=$ladir fi ;; esac func_basename "$lib" - laname="$func_basename_result" + laname=$func_basename_result # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then + if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library \`$lib' was moved." - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir else - dir="$lt_sysroot$libdir" - absdir="$lt_sysroot$libdir" + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" + dir=$ladir + absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi @@ -6542,11 +7988,11 @@ name=$func_stripname_result # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir" && test "$linkmode" = prog; then - func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi - case "$host" in + case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both @@ -6590,9 +8036,9 @@ if test -z "$libdir"; then # Link the convenience library - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then + elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else @@ -6602,14 +8048,14 @@ fi - if test "$linkmode" = prog && test "$pass" != link; then + if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: fi tmp_libs= @@ -6621,14 +8067,14 @@ ;; esac # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then + if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6638,15 +8084,15 @@ continue fi # $linkmode = prog... - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. - case "$temp_rpath:" in + case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac @@ -6675,9 +8121,9 @@ esac fi # $linkmode,$pass = prog,link... - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue @@ -6686,19 +8132,19 @@ link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes; then + if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then + { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in - *cygwin* | *mingw* | *cegcc*) + *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) - if test "$installed" = no; then + if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi @@ -6708,24 +8154,24 @@ # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule="" + dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule="$dlpremoduletest" + dlopenmodule=$dlpremoduletest break fi done - if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. @@ -6753,43 +8199,43 @@ # figure out the soname set dummy $library_names shift - realname="$1" + realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then - soname="$dlname" + soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in - *cygwin* | mingw* | *cegcc*) + *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; esac eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" + soroot=$soname func_basename "$soroot" - soname="$func_basename_result" + soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else - func_verbose "extracting exported symbol list from \`$soname'" + func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for \`$soname'" + func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library @@ -6797,58 +8243,58 @@ linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" - if test "$linkmode" = prog || test "$opt_mode" != relink; then + if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" + if test no = "$hardcode_direct"; then + add=$dir/$linklib case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; + *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) - # if the lib is a (non-dlopened) module then we can not + # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null ; then + $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then + if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else - add="$dir/$old_library" + add=$dir/$old_library fi elif test -n "$old_library"; then - add="$dir/$old_library" + add=$dir/$old_library fi fi esac - elif test "$hardcode_minus_L" = no; then + elif test no = "$hardcode_minus_L"; then case $host in - *-*-sunos*) add_shlibpath="$dir" ;; + *-*-sunos*) add_shlibpath=$dir ;; esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi ;; relink) - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$absdir" + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6857,10 +8303,10 @@ ;; esac fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi @@ -6868,7 +8314,7 @@ *) lib_linked=no ;; esac - if test "$lib_linked" != yes; then + if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi @@ -6878,15 +8324,15 @@ *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && - test "$hardcode_minus_L" != yes && - test "$hardcode_shlibpath_var" = yes; then + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; @@ -6895,33 +8341,33 @@ fi fi - if test "$linkmode" = prog || test "$opt_mode" = relink; then + if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then + add=-l$name + elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib else - add="$libdir/$linklib" + add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" + add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6930,10 +8376,10 @@ ;; esac fi - add="-l$name" + add=-l$name fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else @@ -6941,43 +8387,43 @@ test -n "$add" && deplibs="$add $deplibs" fi fi - elif test "$linkmode" = prog; then + elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi - elif test "$build_libtool_libs" = yes; then + elif test yes = "$build_libtool_libs"; then # Not a shared library - if test "$deplibs_check_method" != pass_all; then + if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo - $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then + if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then + if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else @@ -6990,11 +8436,11 @@ fi fi # link shared/static library? - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do @@ -7008,12 +8454,12 @@ *) func_append temp_deplibs " $libdir";; esac done - dependency_libs="$temp_deplibs" + dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do @@ -7023,7 +8469,7 @@ func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; @@ -7032,12 +8478,12 @@ func_append tmp_libs " $func_resolve_sysroot_result" done - if test "$link_all_deplibs" != no; then + if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in - -L*) path="$deplib" ;; + -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result @@ -7045,12 +8491,12 @@ dir=$func_dirname_result # We need an absolute path. case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of \`$dir'" - absdir="$dir" + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir fi ;; esac @@ -7058,35 +8504,35 @@ case $host in *-*-darwin*) depdepl= - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do depdepl=$tmp done - if test -f "$absdir/$objdir/$depdepl" ; then - depdepl="$absdir/$objdir/$depdepl" - darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then - darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi - func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" - func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) - path="-L$absdir/$objdir" + path=-L$absdir/$objdir ;; esac else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ - func_warning "\`$deplib' seems to be moved" + func_warning "'$deplib' seems to be moved" - path="-L$absdir" + path=-L$absdir fi ;; esac @@ -7098,23 +8544,23 @@ fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs - if test "$pass" = link; then - if test "$linkmode" = "prog"; then + if test link = "$pass"; then + if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then + if test dlopen != "$pass"; then + test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do @@ -7124,12 +8570,12 @@ esac done newlib_search_path= - fi + } - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else + if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" + else + vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order @@ -7187,62 +8633,93 @@ eval $var=\"$tmp_libs\" done # for var fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= - for i in $dependency_libs ; do + for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) - i="" + i= ;; esac - if test -n "$i" ; then + if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" + if test prog = "$linkmode"; then + dlfiles=$newdlfiles fi - if test "$linkmode" = prog || test "$linkmode" = lib; then - dlprefiles="$newdlprefiles" + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles fi case $linkmode in oldlib) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for archives" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for archives" ;; + func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for archives" + func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for archives" + func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for archives" + func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ - func_warning "\`-release' is ignored for archives" + func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ - func_warning "\`-export-symbols' is ignored for archives" + func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no - oldlibs="$output" + oldlibs=$output func_append objs "$old_deplibs" ;; lib) - # Make sure we only generate libraries of the form `libNAME.la'. + # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" @@ -7251,10 +8728,10 @@ eval libname=\"$libname_spec\" ;; *) - test "$module" = no && \ - func_fatal_help "libtool library \`$output' must begin with \`lib'" + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" - if test "$need_lib_prefix" != no; then + if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result @@ -7268,8 +8745,8 @@ esac if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" @@ -7278,21 +8755,21 @@ fi fi - test "$dlself" != no && \ - func_warning "\`-dlopen self' is ignored for libtool libraries" + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift - test "$#" -gt 1 && \ - func_warning "ignoring multiple \`-rpath's for a libtool library" + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" - install_libdir="$1" + install_libdir=$1 oldlibs= if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so + # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" @@ -7301,20 +8778,20 @@ fi test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ - func_warning "\`-release' is ignored for convenience libraries" + func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. - save_ifs="$IFS"; IFS=':' + save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift - IFS="$save_ifs" + IFS=$save_ifs test -n "$7" && \ - func_fatal_help "too many parameters to \`-version-info'" + func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts @@ -7322,45 +8799,45 @@ case $vinfo_number in yes) - number_major="$1" - number_minor="$2" - number_revision="$3" + number_major=$1 + number_minor=$2 + number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix - # which has an extra 1 added just for fun + # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor - darwin|linux|osf|windows|none) + darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_revision" + age=$number_minor + revision=$number_revision ;; - freebsd-aout|freebsd-elf|qnx|sunos) - current="$number_major" - revision="$number_minor" - age="0" + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_minor" + age=$number_minor + revision=$number_minor lt_irix_increment=no ;; *) - func_fatal_configuration "$modename: unknown library version type \`$version_type'" + func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) - current="$1" - revision="$2" - age="$3" + current=$1 + revision=$2 + age=$3 ;; esac @@ -7368,30 +8845,30 @@ case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "CURRENT \`$current' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "REVISION \`$revision' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "AGE \`$age' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then - func_error "AGE \`$age' is greater than the current interface number \`$current'" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. @@ -7406,26 +8883,36 @@ # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac ;; freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; + major=.$current + versuffix=.$current.$revision ;; freebsd-elf) - major=".$current" - versuffix=".$current" + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision ;; irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then + if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 @@ -7436,69 +8923,74 @@ nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac - verstring="$verstring_prefix$major.$revision" + verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring_prefix$major.$iface:$verstring" + verstring=$verstring_prefix$major.$iface:$verstring done - # Before this point, $major must not contain `.'. + # Before this point, $major must not contain '.'. major=.$major - versuffix="$major.$revision" + versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring:${iface}.0" + verstring=$verstring:$iface.0 done # Make executables depend on our current version. - func_append verstring ":${current}.0" + func_append verstring ":$current.0" ;; qnx) - major=".$current" - versuffix=".$current" + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current ;; sunos) - major=".$current" - versuffix=".$current.$revision" + major=.$current + versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. + # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; *) - func_fatal_configuration "unknown library version type \`$version_type'" + func_fatal_configuration "unknown library version type '$version_type'" ;; esac @@ -7512,42 +9004,45 @@ verstring= ;; *) - verstring="0.0" + verstring=0.0 ;; esac - if test "$need_version" = no; then + if test no = "$need_version"; then versuffix= else - versuffix=".0.0" + versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then + if test yes,no = "$avoid_version,$need_version"; then major= versuffix= - verstring="" + verstring= fi # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - func_warning "undefined symbols not allowed in $host shared libraries" - build_libtool_libs=no - build_old_libs=yes + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi fi else # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" + allow_undefined_flag=$no_undefined_flag fi fi - func_generate_dlsyms "$libname" "$libname" "yes" + func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" - test "X$libobjs" = "X " && libobjs= + test " " = "$libobjs" && libobjs= - if test "$opt_mode" != relink; then + if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= @@ -7556,8 +9051,8 @@ case $p in *.$objext | *.gcno) ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue @@ -7573,11 +9068,11 @@ fi # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. @@ -7598,13 +9093,13 @@ *) func_append finalize_rpath " $libdir" ;; esac done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" + old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in @@ -7614,7 +9109,7 @@ done # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" + old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in @@ -7623,7 +9118,7 @@ esac done - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) @@ -7647,7 +9142,7 @@ ;; *) # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then + if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; @@ -7663,9 +9158,9 @@ # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? - release="" - versuffix="" - major="" + release= + versuffix= + major= newdeplibs= droppeddeps=no case $deplibs_check_method in @@ -7694,20 +9189,20 @@ -l*) func_stripname -l '' "$i" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7737,20 +9232,20 @@ $opt_dry_run || $RM conftest if $LTCC $LTCFLAGS -o conftest conftest.c $i; then ldd_output=`ldd conftest` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7787,24 +9282,24 @@ -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` if test -n "$file_magic_glob"; then libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob` else libnameglob=$libname fi - test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob` + test yes = "$want_nocaseglob" && nocaseglob=`shopt -p nocaseglob` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - if test "$want_nocaseglob" = yes; then + if test yes = "$want_nocaseglob"; then shopt -s nocaseglob potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` $nocaseglob @@ -7822,25 +9317,25 @@ # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? - potlib="$potent_lib" + potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7848,7 +9343,7 @@ echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7871,30 +9366,30 @@ -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test + potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7902,7 +9397,7 @@ echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7918,18 +9413,18 @@ done # Gone through all deplibs. ;; none | unknown | *) - newdeplibs="" + newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo - if test "X$deplibs_check_method" = "Xnone"; then + if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." @@ -7953,8 +9448,8 @@ ;; esac - if test "$droppeddeps" = yes; then - if test "$module" = yes; then + if test yes = "$droppeddeps"; then + if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" @@ -7963,12 +9458,12 @@ if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -7979,14 +9474,14 @@ echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." - if test "$allow_undefined" = no; then + if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -8032,7 +9527,7 @@ *) func_append new_libs " $deplib" ;; esac done - deplibs="$new_libs" + deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= @@ -8040,25 +9535,25 @@ dlname= # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - # Remove ${wl} instances when linking with ld. + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac - if test "$hardcode_into_libs" = yes; then + if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= - rpath="$finalize_rpath" - test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8083,7 +9578,7 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then @@ -8097,8 +9592,8 @@ test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi - shlibpath="$finalize_shlibpath" - test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi @@ -8108,19 +9603,19 @@ eval library_names=\"$library_names_spec\" set dummy $library_names shift - realname="$1" + realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi if test -z "$dlname"; then dlname=$soname fi - lib="$output_objdir/$realname" + lib=$output_objdir/$realname linknames= for link do @@ -8134,7 +9629,7 @@ delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols="$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi @@ -8143,31 +9638,31 @@ cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile - if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. - orig_export_symbols="$export_symbols" + orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes - fi + } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do - IFS="$save_ifs" + IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in @@ -8181,7 +9676,7 @@ try_normal_branch=no ;; esac - if test "$try_normal_branch" = yes \ + if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then @@ -8192,7 +9687,7 @@ output_la=$func_basename_result save_libobjs=$libobjs save_output=$output - output=${output_objdir}/${output_la}.nm + output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" @@ -8215,8 +9710,8 @@ break fi done - IFS="$save_ifs" - if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi @@ -8224,16 +9719,16 @@ fi if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi - if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8252,11 +9747,11 @@ ;; esac done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && - test "$compiler_needs_object" = yes && + test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. @@ -8267,7 +9762,7 @@ eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8276,18 +9771,18 @@ fi fi - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds @@ -8305,7 +9800,7 @@ fi fi - if test "X$skipped_export" != "X:" && + if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then @@ -8338,8 +9833,8 @@ last_robj= k=1 - if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then - output=${output_objdir}/${output_la}.lnkscript + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs @@ -8351,14 +9846,14 @@ func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then - output=${output_objdir}/${output_la}.lnk + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= - if test "$compiler_needs_object" = yes; then + if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi @@ -8373,7 +9868,7 @@ else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result @@ -8385,13 +9880,13 @@ func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result - if test "X$objlist" = X || + if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. - if test "$k" -eq 1 ; then + if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" @@ -8401,10 +9896,10 @@ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi - last_robj=$output_objdir/$output_la-${k}.$objext + last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result @@ -8416,9 +9911,9 @@ # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" - eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then - eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" @@ -8426,9 +9921,9 @@ output= fi - if ${skipped_export-false}; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. @@ -8437,16 +9932,16 @@ if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi - fi + } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do - IFS="$save_ifs" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8454,7 +9949,7 @@ lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8463,7 +9958,7 @@ exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' @@ -8471,18 +9966,18 @@ fi fi - if ${skipped_export-false}; then + ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8491,7 +9986,7 @@ export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi - fi + } libobjs=$output # Restore the value of output. @@ -8505,7 +10000,7 @@ # value of $libobjs for piecewise linking. # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else @@ -8527,7 +10022,7 @@ # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -8535,11 +10030,12 @@ test "X$libobjs" = "X " && libobjs= fi - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $cmds; do - IFS="$save_ifs" + IFS=$sp$nl eval cmd=\"$cmd\" - $opt_silent || { + IFS=$save_ifs + $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } @@ -8547,7 +10043,7 @@ lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8556,10 +10052,10 @@ exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then @@ -8579,39 +10075,39 @@ done # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then + if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. - dlname="$soname" + dlname=$soname fi fi ;; obj) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for objects" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for objects" ;; + func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for objects" + func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for objects" + func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for objects" + func_warning "'-version-info' is ignored for objects" test -n "$release" && \ - func_warning "\`-release' is ignored for objects" + func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object \`$output' from non-libtool objects" + func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" @@ -8619,7 +10115,7 @@ ;; *) libobj= - obj="$output" + obj=$output ;; esac @@ -8632,17 +10128,19 @@ # the extraction. reload_conv_objs= gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else - gentop="$output_objdir/${obj}x" + gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8651,12 +10149,12 @@ fi # If we're not building shared, we need to use non_pic_objs - test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. - reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - output="$obj" + output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. @@ -8668,7 +10166,7 @@ exit $EXIT_SUCCESS fi - if test "$build_libtool_libs" != yes; then + test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi @@ -8678,12 +10176,12 @@ # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS - fi + } - if test -n "$pic_flag" || test "$pic_mode" != default; then + if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" - output="$libobj" + output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi @@ -8700,16 +10198,14 @@ output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for programs" + func_warning "'-version-info' is ignored for programs" test -n "$release" && \ - func_warning "\`-release' is ignored for programs" + func_warning "'-release' is ignored for programs" - test "$preload" = yes \ - && test "$dlopen_support" = unknown \ - && test "$dlopen_self" = unknown \ - && test "$dlopen_self_static" = unknown && \ - func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) @@ -8723,11 +10219,11 @@ *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). - if test "$tagname" = CXX ; then + if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) - func_append compile_command " ${wl}-bind_at_load" - func_append finalize_command " ${wl}-bind_at_load" + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" ;; esac fi @@ -8763,7 +10259,7 @@ *) func_append new_libs " $deplib" ;; esac done - compile_deplibs="$new_libs" + compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" @@ -8787,7 +10283,7 @@ if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8810,7 +10306,7 @@ fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; @@ -8827,10 +10323,10 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - compile_rpath="$rpath" + compile_rpath=$rpath rpath= hardcode_libdirs= @@ -8838,7 +10334,7 @@ if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8863,45 +10359,43 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - finalize_rpath="$rpath" + finalize_rpath=$rpath - if test -n "$libobjs" && test "$build_old_libs" = yes; then + if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi - func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi - wrappers_required=yes + wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=no + wrappers_required=false ;; *cygwin* | *mingw* ) - if test "$build_libtool_libs" != yes; then - wrappers_required=no - fi + test yes = "$build_libtool_libs" || wrappers_required=false ;; *) - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - wrappers_required=no + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false fi ;; esac - if test "$wrappers_required" = no; then + $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command="$compile_command$compile_rpath" + link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 @@ -8914,12 +10408,12 @@ fi # Delete the generated files. - if test -f "$output_objdir/${outputname}S.${objext}"; then - func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status - fi + } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" @@ -8949,9 +10443,9 @@ fi fi - if test "$no_install" = yes; then + if test yes = "$no_install"; then # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" + link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. @@ -8968,27 +10462,28 @@ exit $EXIT_SUCCESS fi - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - - func_warning "this platform does not like uninstalled shared libraries" - func_warning "\`$output' will be relinked during installation" - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` @@ -9045,8 +10540,8 @@ func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 @@ -9067,7 +10562,7 @@ trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host" ; then + if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result @@ -9090,25 +10585,27 @@ # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save $symfileobj" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience build_libtool_libs=no - else + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$symfileobj"; then - func_append oldobjs " $symfileobj" - fi - fi - addlibs="$old_convenience" - fi + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs @@ -9116,13 +10613,13 @@ fi # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -9143,7 +10640,7 @@ : else echo "copying selected object files to avoid basename conflicts..." - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs @@ -9152,7 +10649,7 @@ for obj in $save_oldobjs do func_basename "$obj" - objbase="$func_basename_result" + objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) @@ -9221,18 +10718,18 @@ else # the above command should be used before it gets too long oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then + if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist - if test "X$oldobjs" = "X" ; then + if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" @@ -9249,7 +10746,7 @@ case $output in *.la) old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" + test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior @@ -9264,31 +10761,31 @@ fi done # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test "$hardcode_automatic" = yes ; then + if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do - if test "$installed" = yes; then + if test yes = "$installed"; then if test -z "$install_libdir"; then break fi - output="$output_objdir/$outputname"i + output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" - name="$func_basename_result" + name=$func_basename_result func_resolve_sysroot "$deplib" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) @@ -9304,23 +10801,23 @@ *) func_append newdependency_libs " $deplib" ;; esac done - dependency_libs="$newdependency_libs" + dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in @@ -9330,34 +10827,34 @@ # didn't already link the preopened objects directly into # the library: func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin @@ -9373,10 +10870,9 @@ case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. - if test "x$bindir" != x ; - then + if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result$dlname + tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname @@ -9385,7 +10881,7 @@ esac $ECHO > $output "\ # $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. @@ -9399,7 +10895,7 @@ # The name of the static archive. old_library='$old_library' -# Linker flags that can not go in dependency_libs. +# Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. @@ -9425,7 +10921,7 @@ # Directory that this library needs to be installed in: libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then + if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi @@ -9440,27 +10936,29 @@ exit $EXIT_SUCCESS } -{ test "$opt_mode" = link || test "$opt_mode" = relink; } && - func_mode_link ${1+"$@"} +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi # func_mode_uninstall arg... func_mode_uninstall () { - $opt_debug - RM="$nonopt" + $debug_cmd + + RM=$nonopt files= - rmforce= + rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic for arg do case $arg in - -f) func_append RM " $arg"; rmforce=yes ;; + -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac @@ -9473,18 +10971,18 @@ for file in $files; do func_dirname "$file" "" "." - dir="$func_dirname_result" - if test "X$dir" = X.; then - odir="$objdir" + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir else - odir="$dir/$objdir" + odir=$dir/$objdir fi func_basename "$file" - name="$func_basename_result" - test "$opt_mode" = uninstall && odir="$dir" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates - if test "$opt_mode" = clean; then + if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; @@ -9499,11 +10997,11 @@ elif test -d "$file"; then exit_status=1 continue - elif test "$rmforce" = yes; then + elif $rmforce; then continue fi - rmfiles="$file" + rmfiles=$file case $name in *.la) @@ -9517,7 +11015,7 @@ done test -n "$old_library" && func_append rmfiles " $odir/$old_library" - case "$opt_mode" in + case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; @@ -9528,12 +11026,12 @@ uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; @@ -9549,21 +11047,19 @@ func_source $dir/$name # Add PIC object to the list of files to remove. - if test -n "$pic_object" && - test "$pic_object" != none; then + if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && - test "$non_pic_object" != none; then + if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) - if test "$opt_mode" = clean ; then + if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) @@ -9590,12 +11086,12 @@ # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi - if test "X$noexename" != "X$name" ; then - func_append rmfiles " $odir/lt-${noexename}.c" + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" fi fi fi @@ -9604,7 +11100,7 @@ func_show_eval "$RM $rmfiles" 'exit_status=1' done - # Try to remove the ${objdir}s in the directories where we deleted files + # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" @@ -9614,16 +11110,17 @@ exit $exit_status } -{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && - func_mode_uninstall ${1+"$@"} +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi test -z "$opt_mode" && { - help="$generic_help" + help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" @@ -9634,7 +11131,7 @@ # The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting +# where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support @@ -9657,5 +11154,3 @@ # mode:shell-script # sh-indentation:2 # End: -# vi:sw=2 - diff -Nru webkitgtk-2.4.9/Source/autotools/ltoptions.m4 webkitgtk-2.4.10/Source/autotools/ltoptions.m4 --- webkitgtk-2.4.9/Source/autotools/ltoptions.m4 2011-10-28 06:31:13.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/ltoptions.m4 2016-02-27 07:46:31.000000000 +0000 @@ -1,14 +1,14 @@ # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 7 ltoptions.m4 +# serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) @@ -29,7 +29,7 @@ [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl + [m4_warning([Unknown $1 option '$2'])])[]dnl ]) @@ -75,13 +75,15 @@ dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) + [_LT_ENABLE_FAST_INSTALL]) + _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], + [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS @@ -112,7 +114,7 @@ [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) +put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -148,7 +150,7 @@ _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) +put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -157,9 +159,9 @@ # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-shared flag, and supports the 'shared' and +# 'disable-shared' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], @@ -172,14 +174,14 @@ *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) @@ -211,9 +213,9 @@ # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-static flag, and support the 'static' and +# 'disable-static' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], @@ -226,14 +228,14 @@ *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) @@ -265,9 +267,9 @@ # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-fast-install flag, and support the 'fast-install' +# and 'disable-fast-install' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], @@ -280,14 +282,14 @@ *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) @@ -304,14 +306,14 @@ [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) +the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) +the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -319,19 +321,85 @@ dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) +# _LT_WITH_AIX_SONAME([DEFAULT]) +# ---------------------------------- +# implement the --with-aix-soname flag, and support the `aix-soname=aix' +# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT +# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. +m4_define([_LT_WITH_AIX_SONAME], +[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl +shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[[5-9]]*,yes) + AC_MSG_CHECKING([which variant of shared library versioning to provide]) + AC_ARG_WITH([aix-soname], + [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], + [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], + [case $withval in + aix|svr4|both) + ;; + *) + AC_MSG_ERROR([Unknown argument to --with-aix-soname]) + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname], + [AC_CACHE_VAL([lt_cv_with_aix_soname], + [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) + with_aix_soname=$lt_cv_with_aix_soname]) + AC_MSG_RESULT([$with_aix_soname]) + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + +_LT_DECL([], [shared_archive_member_spec], [0], + [Shared archive member basename, for filename based shared library versioning on AIX])dnl +])# _LT_WITH_AIX_SONAME + +LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) + + # _LT_WITH_PIC([MODE]) # -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], - [AS_HELP_STRING([--with-pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for lt_pkg in $withval; do + IFS=$lt_save_ifs + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS=$lt_save_ifs + ;; + esac], + [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC @@ -344,7 +412,7 @@ [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) +put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: diff -Nru webkitgtk-2.4.9/Source/autotools/ltversion.m4 webkitgtk-2.4.10/Source/autotools/ltversion.m4 --- webkitgtk-2.4.9/Source/autotools/ltversion.m4 2012-05-06 13:14:26.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/ltversion.m4 2016-02-27 07:46:31.000000000 +0000 @@ -1,6 +1,6 @@ # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -9,15 +9,15 @@ # @configure_input@ -# serial 3337 ltversion.m4 +# serial 4179 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.4.2]) -m4_define([LT_PACKAGE_REVISION], [1.3337]) +m4_define([LT_PACKAGE_VERSION], [2.4.6]) +m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.2' -macro_revision='1.3337' +[macro_version='2.4.6' +macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) diff -Nru webkitgtk-2.4.9/Source/autotools/SetupCompilerFlags.m4 webkitgtk-2.4.10/Source/autotools/SetupCompilerFlags.m4 --- webkitgtk-2.4.9/Source/autotools/SetupCompilerFlags.m4 2015-05-20 09:03:25.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/SetupCompilerFlags.m4 2016-03-14 07:09:02.000000000 +0000 @@ -57,3 +57,18 @@ CXXFLAGS="$CXXFLAGS -O0" CFLAGS="$CFLAGS -O0" fi + +# Some architectures need to add libatomic explicitly +AC_LANG_PUSH([C++]) +AC_LINK_IFELSE([AC_LANG_SOURCE([[ +#include +int main() { + std::atomic i(0); + i++; + return 0; +} +]])], has_atomic=yes, has_atomic=no) +AC_LANG_POP([C++]) +if test "$has_atomic" = "no"; then + LIBS="$LIBS -latomic" +fi diff -Nru webkitgtk-2.4.9/Source/autotools/Versions.m4 webkitgtk-2.4.10/Source/autotools/Versions.m4 --- webkitgtk-2.4.9/Source/autotools/Versions.m4 2015-05-20 09:03:25.000000000 +0000 +++ webkitgtk-2.4.10/Source/autotools/Versions.m4 2016-03-14 07:35:55.000000000 +0000 @@ -1,6 +1,6 @@ m4_define([webkit_major_version], [2]) m4_define([webkit_minor_version], [4]) -m4_define([webkit_micro_version], [9]) +m4_define([webkit_micro_version], [10]) # This is the version we'll be using as part of our User-Agent string, # e.g., AppleWebKit/$(webkit_user_agent_version) ... @@ -11,9 +11,9 @@ # Libtool library version, not to confuse with API version. # See http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html -m4_define([libwebkitgtk_version], [22:15:22]) -m4_define([libjavascriptcoregtk_version], [16:17:16]) -m4_define([libwebkit2gtk_version], [35:12:10]) +m4_define([libwebkitgtk_version], [22:16:22]) +m4_define([libjavascriptcoregtk_version], [16:18:16]) +m4_define([libwebkit2gtk_version], [35:13:10]) m4_define([gtk2_required_version], [2.24.10]) m4_define([gtk3_required_version], [3.6.0]) diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/ChangeLog webkitgtk-2.4.10/Source/JavaScriptCore/ChangeLog --- webkitgtk-2.4.9/Source/JavaScriptCore/ChangeLog 2015-05-20 09:03:23.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/ChangeLog 2016-03-14 07:09:00.000000000 +0000 @@ -1,3 +1,107 @@ +2016-03-12 Tomas Popela + + [CLoop] - Fix CLoop on the 32-bit Big-Endians + https://bugs.webkit.org/show_bug.cgi?id=137020 + + Reviewed by Mark Lam. + + * llint/LowLevelInterpreter.asm: + * llint/LowLevelInterpreter32_64.asm: + +2016-03-12 Tomas Popela + + LLINT op_put_to_scope and op_get_from_scope should use loadpFromInstruction to get operand from instruction + https://bugs.webkit.org/show_bug.cgi?id=132333 + + Unreviewed. + + When loading operand variable from instruction in + _llint_op_get_from_scope and _llint_op_put_to_scope use + loadpFromInstruction instead of loadisFromInstruction. Also when + saving the operand in LLIntSlowPaths.cpp use the same way as in + CodeBlock.cpp. + + * llint/LLIntSlowPaths.cpp: + * llint/LowLevelInterpreter32_64.asm: + * llint/LowLevelInterpreter64.asm: + +2016-03-10 Carlos Garcia Campos + + Fix the build in Windows. + + Reviewed by Alberto Garcia. + + * interpreter/JSStack.cpp: + (JSC::commitSize): + +2015-12-07 Alberto Garcia + + Crashes on PPC64 due to mprotect() on address not aligned to the page size + https://bugs.webkit.org/show_bug.cgi?id=130237 + + Reviewed by Mark Lam. + + Make sure that commitSize is at least as big as the page size. + + * interpreter/JSStack.cpp: + (JSC::commitSize): + (JSC::JSStack::JSStack): + (JSC::JSStack::growSlowCase): + * interpreter/JSStack.h: + +2014-04-09 Mark Lam + + Ensure that LLINT accessing of the ProtoCallFrame is big endian friendly. + + + Reviewed by Mark Hahnenberg. + + Change ProtoCallFrame::paddedArgCount to be of type uint32_t. The argCount + that it pads is of type int anyway. It doesn't need to be 64 bit. This + also makes it work with the LLINT which is loading it with a loadi + instruction. + + We should add the PayLoadOffset to ProtoCallFrame::argCountAndCodeOriginValue + when loading the argCount. + + * interpreter/ProtoCallFrame.h: + (JSC::ProtoCallFrame::setPaddedArgCount): + * llint/LowLevelInterpreter32_64.asm: + * llint/LowLevelInterpreter64.asm: + +2015-01-12 Geoffrey Garen + + Out of bounds read in IdentifierArena::makeIdentifier + https://bugs.webkit.org/show_bug.cgi?id=140376 + + Patch by Alexey Proskuryakov. + + Reviewed and ChangeLogged by Geoffrey Garen. + + No test, since this is a small past-the-end read, which is very + difficult to turn into a reproducible failing test -- and existing tests + crash reliably using ASan. + + * parser/ParserArena.h: + (JSC::IdentifierArena::makeIdentifier): + (JSC::IdentifierArena::makeIdentifierLCharFromUChar): Check for a + zero-length string input, like we do in the literal parser, since it is + not valid to dereference characters in a zero-length string. + + A zero-length string is allowed in JavaScript -- for example, "". + +2015-04-24 Matthew Mirman + + Made Object.prototype.__proto__ native getter and setter check that this object not null or undefined + https://bugs.webkit.org/show_bug.cgi?id=141865 + rdar://problem/19927273 + + Reviewed by Filip Pizlo. + + * runtime/JSGlobalObjectFunctions.cpp: + (JSC::globalFuncProtoGetter): + (JSC::globalFuncProtoSetter): + 2015-04-17 Milan Crha [GTK][Stable] Missing implementation of callToJavaScript/callToNativeFunction with msys/mingw32 diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/JSStack.cpp webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/JSStack.cpp --- webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/JSStack.cpp 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/JSStack.cpp 2016-03-14 07:09:01.000000000 +0000 @@ -31,6 +31,7 @@ #include "ConservativeRoots.h" #include "Interpreter.h" +#include namespace JSC { @@ -42,6 +43,14 @@ return staticMutex; } +static size_t commitSize() +{ + static size_t size = 0; + if (!size) + size = std::max(16 * 1024, static_cast(WTF::pageSize())); + return size; +} + JSStack::JSStack(VM& vm, size_t capacity) : m_vm(vm) , m_end(0) @@ -49,7 +58,7 @@ { ASSERT(capacity && isPageAligned(capacity)); - m_reservation = PageReservation::reserve(roundUpAllocationSize(capacity * sizeof(Register), commitSize), OSAllocator::JSVMStackPages); + m_reservation = PageReservation::reserve(roundUpAllocationSize(capacity * sizeof(Register), commitSize()), OSAllocator::JSVMStackPages); updateStackLimit(highAddress()); m_commitEnd = highAddress(); @@ -78,7 +87,7 @@ // Compute the chunk size of additional memory to commit, and see if we // have it is still within our budget. If not, we'll fail to grow and // return false. - long delta = roundUpAllocationSize(reinterpret_cast(m_commitEnd) - reinterpret_cast(newEnd), commitSize); + long delta = roundUpAllocationSize(reinterpret_cast(m_commitEnd) - reinterpret_cast(newEnd), commitSize()); if (reinterpret_cast(m_commitEnd) - delta <= reinterpret_cast(m_useableEnd)) return false; @@ -134,7 +143,7 @@ void JSStack::disableErrorStackReserve() { - char* useableEnd = reinterpret_cast(reservationEnd()) + commitSize; + char* useableEnd = reinterpret_cast(reservationEnd()) + commitSize(); m_useableEnd = reinterpret_cast_ptr(useableEnd); // By the time we get here, we are guaranteed to be destructing the last diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/JSStack.h webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/JSStack.h --- webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/JSStack.h 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/JSStack.h 2016-03-14 07:09:01.000000000 +0000 @@ -73,7 +73,6 @@ }; static const size_t defaultCapacity = 512 * 1024; - static const size_t commitSize = 16 * 1024; // Allow 8k of excess registers before we start trying to reap the stack static const ptrdiff_t maxExcessCapacity = 8 * 1024; diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/ProtoCallFrame.h webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/ProtoCallFrame.h --- webkitgtk-2.4.9/Source/JavaScriptCore/interpreter/ProtoCallFrame.h 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/interpreter/ProtoCallFrame.h 2016-03-14 07:09:01.000000000 +0000 @@ -36,7 +36,7 @@ Register calleeValue; Register argCountAndCodeOriginValue; Register thisArg; - size_t paddedArgCount; + uint32_t paddedArgCount; JSValue *args; void init(CodeBlock*, JSScope*, JSObject*, JSValue, int, JSValue* otherArgs = 0); @@ -53,7 +53,7 @@ int argumentCountIncludingThis() const { return argCountAndCodeOriginValue.payload(); } int argumentCount() const { return argumentCountIncludingThis() - 1; } void setArgumentCountIncludingThis(int count) { argCountAndCodeOriginValue.payload() = count; } - void setPaddedArgsCount(size_t argCount) { paddedArgCount = argCount; } + void setPaddedArgsCount(uint32_t argCount) { paddedArgCount = argCount; } void clearCurrentVPC() { argCountAndCodeOriginValue.tag() = 0; } diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp webkitgtk-2.4.10/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp --- webkitgtk-2.4.9/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp 2016-03-14 07:09:01.000000000 +0000 @@ -1354,7 +1354,7 @@ CodeBlock* codeBlock = exec->codeBlock(); ConcurrentJITLocker locker(codeBlock->m_lock); pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), scope->structure()); - pc[6].u.operand = slot.cachedOffset(); + pc[6].u.pointer = reinterpret_cast(slot.cachedOffset()); } } @@ -1381,7 +1381,7 @@ if (slot.isCacheable() && slot.base() == scope && scope->structure()->propertyAccessesAreCacheable()) { ConcurrentJITLocker locker(codeBlock->m_lock); pc[5].u.structure.set(exec->vm(), codeBlock->ownerExecutable(), scope->structure()); - pc[6].u.operand = slot.cachedOffset(); + pc[6].u.pointer = reinterpret_cast(slot.cachedOffset()); } } diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm --- webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm 2016-03-14 07:09:01.000000000 +0000 @@ -282,7 +282,7 @@ storep temp3, CodeBlock+4[cfr, temp1, 8] btinz temp1, .copyHeaderLoop - loadi ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 + loadi PayloadOffset + ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 subi 1, temp2 loadi ProtoCallFrame::paddedArgCount[protoCallFrame], temp3 subi 1, temp3 @@ -320,8 +320,8 @@ loadp CallerFrame[cfr], cfr .calleeFramePopped: - loadp Callee[cfr], temp3 # VM.topCallFrame - loadp ScopeChain[cfr], temp4 + loadp Callee + PayloadOffset[cfr], temp3 # VM.topCallFrame + loadp ScopeChain + PayloadOffset[cfr], temp4 storep temp4, [temp3] doReturn(extraStackSpace) @@ -598,7 +598,7 @@ macro branchIfException(label) - loadp ScopeChain[cfr], t3 + loadp ScopeChain + PayloadOffset[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 bieq VM::m_exception + TagOffset[t3], EmptyValueTag, .noException @@ -1574,7 +1574,7 @@ loadp JSCell::m_structure[t2], t0 bpneq t0, JSPropertyNameIterator::m_cachedStructure[t3], .opGetByPnameSlow loadi 24[PC], t0 - loadi [cfr, t0, 8], t0 + loadi PayloadOffset[cfr, t0, 8], t0 subi 1, t0 biaeq t0, JSPropertyNameIterator::m_numCacheableSlots[t3], .opGetByPnameSlow bilt t0, JSPropertyNameIterator::m_cachedStructureInlineCapacity[t3], .opGetByPnameInlineProperty @@ -2002,7 +2002,7 @@ loadi 20[PC], t2 loadi PayloadOffset[cfr, t2, 8], t2 loadp JSPropertyNameIterator::m_jsStrings[t2], t3 - loadi [t3, t0, 8], t3 + loadi PayloadOffset[t3, t0, 8], t3 addi 1, t0 storei t0, PayloadOffset[cfr, t1, 8] loadi 4[PC], t1 @@ -2039,7 +2039,7 @@ # the interpreter's throw trampoline (see _llint_throw_trampoline). # The throwing code must have known that we were throwing to the interpreter, # and have set VM::targetInterpreterPCForThrow. - loadp ScopeChain[cfr], t3 + loadp ScopeChain + PayloadOffset[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 loadp VM::callFrameForThrow[t3], cfr @@ -2122,7 +2122,7 @@ storei CellTag, ScopeChain + TagOffset[cfr] storei t1, ScopeChain + PayloadOffset[cfr] if X86 - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 storep cfr, VM::topCallFrame[t3] @@ -2135,11 +2135,11 @@ move t0, cfr call executableOffsetToFunction[t1] addp 16 - 4, sp - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 elsif ARM or ARMv7 or ARMv7_TRADITIONAL or MIPS or SH4 - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 storep cfr, VM::topCallFrame[t3] @@ -2155,11 +2155,11 @@ end call executableOffsetToFunction[t1] restoreReturnAddressBeforeReturn(t3) - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 elsif C_LOOP - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 storep cfr, VM::topCallFrame[t3] @@ -2172,7 +2172,7 @@ move t2, cfr cloopCallNative executableOffsetToFunction[t1] restoreReturnAddressBeforeReturn(t3) - loadp ScopeChain[cfr], t3 + loadp PayloadOffset + ScopeChain[cfr], t3 andp MarkedBlockMask, t3 loadp MarkedBlock::m_weakSet + WeakSet::m_vm[t3], t3 else @@ -2212,7 +2212,7 @@ addi 1, t2 .resolveScopeAfterActivationCheck: - loadp ScopeChain[cfr], t0 + loadp ScopeChain + PayloadOffset[cfr], t0 btiz t2, .resolveScopeLoopEnd .resolveScopeLoop: @@ -2271,13 +2271,13 @@ macro loadWithStructureCheck(operand, slowPath) loadisFromInstruction(operand, t0) - loadp [cfr, t0, 8], t0 + loadp PayloadOffset[cfr, t0, 8], t0 loadpFromInstruction(5, t1) bpneq JSCell::m_structure[t0], t1, slowPath end macro getProperty() - loadisFromInstruction(6, t3) + loadpFromInstruction(6, t3) loadPropertyAtVariableOffset(t3, t0, t1, t2) valueProfile(t1, t2, 28, t0) loadisFromInstruction(1, t0) @@ -2297,7 +2297,7 @@ macro getClosureVar() loadp JSVariableObject::m_registers[t0], t0 - loadisFromInstruction(6, t3) + loadpFromInstruction(6, t3) loadp TagOffset[t0, t3, 8], t1 loadp PayloadOffset[t0, t3, 8], t2 valueProfile(t1, t2, 28, t0) @@ -2356,7 +2356,7 @@ macro putProperty() loadisFromInstruction(3, t1) loadConstantOrVariable(t1, t2, t3) - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) storePropertyAtVariableOffset(t1, t0, t2, t3) end @@ -2374,7 +2374,7 @@ loadisFromInstruction(3, t1) loadConstantOrVariable(t1, t2, t3) loadp JSVariableObject::m_registers[t0], t0 - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) storei t2, TagOffset[t0, t1, 8] storei t3, PayloadOffset[t0, t1, 8] end diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm --- webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm 2016-03-14 07:09:01.000000000 +0000 @@ -171,7 +171,7 @@ storep temp3, CodeBlock[cfr, temp1, 8] btinz temp1, .copyHeaderLoop - loadi ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 + loadi PayloadOffset + ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], temp2 subi 1, temp2 loadi ProtoCallFrame::paddedArgCount[protoCallFrame], temp3 subi 1, temp3 @@ -2047,7 +2047,7 @@ end macro getProperty() - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) loadPropertyAtVariableOffset(t1, t0, t2) valueProfile(t2, 7, t0) loadisFromInstruction(1, t0) @@ -2064,7 +2064,7 @@ macro getClosureVar() loadp JSVariableObject::m_registers[t0], t0 - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) loadq [t0, t1, 8], t0 valueProfile(t0, 7, t1) loadisFromInstruction(1, t1) @@ -2121,7 +2121,7 @@ macro putProperty() loadisFromInstruction(3, t1) loadConstantOrVariable(t1, t2) - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) storePropertyAtVariableOffset(t1, t0, t2) end @@ -2138,7 +2138,7 @@ loadisFromInstruction(3, t1) loadConstantOrVariable(t1, t2) loadp JSVariableObject::m_registers[t0], t0 - loadisFromInstruction(6, t1) + loadpFromInstruction(6, t1) storeq t2, [t0, t1, 8] end diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter.asm webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter.asm --- webkitgtk-2.4.9/Source/JavaScriptCore/llint/LowLevelInterpreter.asm 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/llint/LowLevelInterpreter.asm 2016-03-14 07:09:01.000000000 +0000 @@ -299,13 +299,21 @@ end macro functionForCallCodeBlockGetter(targetRegister) - loadp Callee[cfr], targetRegister + if JSVALUE64 + loadp Callee[cfr], targetRegister + else + loadp Callee + PayloadOffset[cfr], targetRegister + end loadp JSFunction::m_executable[targetRegister], targetRegister loadp FunctionExecutable::m_codeBlockForCall[targetRegister], targetRegister end macro functionForConstructCodeBlockGetter(targetRegister) - loadp Callee[cfr], targetRegister + if JSVALUE64 + loadp Callee[cfr], targetRegister + else + loadp Callee + PayloadOffset[cfr], targetRegister + end loadp JSFunction::m_executable[targetRegister], targetRegister loadp FunctionExecutable::m_codeBlockForConstruct[targetRegister], targetRegister end diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/parser/ParserArena.h webkitgtk-2.4.10/Source/JavaScriptCore/parser/ParserArena.h --- webkitgtk-2.4.9/Source/JavaScriptCore/parser/ParserArena.h 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/parser/ParserArena.h 2016-03-14 07:09:01.000000000 +0000 @@ -26,6 +26,7 @@ #ifndef ParserArena_h #define ParserArena_h +#include "CommonIdentifiers.h" #include "Identifier.h" #include #include @@ -72,6 +73,8 @@ template ALWAYS_INLINE const Identifier& IdentifierArena::makeIdentifier(VM* vm, const T* characters, size_t length) { + if (!length) + return vm->propertyNames->emptyIdentifier; if (characters[0] >= MaximumCachableCharacter) { m_identifiers.append(Identifier(vm, characters, length)); return m_identifiers.last(); @@ -93,6 +96,8 @@ ALWAYS_INLINE const Identifier& IdentifierArena::makeIdentifierLCharFromUChar(VM* vm, const UChar* characters, size_t length) { + if (!length) + return vm->propertyNames->emptyIdentifier; if (characters[0] >= MaximumCachableCharacter) { m_identifiers.append(Identifier::createLCharFromUChar(vm, characters, length)); return m_identifiers.last(); diff -Nru webkitgtk-2.4.9/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp webkitgtk-2.4.10/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp --- webkitgtk-2.4.9/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp 2016-03-14 07:09:01.000000000 +0000 @@ -739,6 +739,9 @@ EncodedJSValue JSC_HOST_CALL globalFuncProtoGetter(ExecState* exec) { + if (exec->thisValue().isUndefinedOrNull()) + return throwVMError(exec, createTypeError(exec, "Can't convert undefined or null to object")); + JSObject* thisObject = jsDynamicCast(exec->thisValue().toThis(exec, NotStrictMode)); if (!thisObject) @@ -779,6 +782,9 @@ EncodedJSValue JSC_HOST_CALL globalFuncProtoSetter(ExecState* exec) { + if (exec->thisValue().isUndefinedOrNull()) + return throwVMError(exec, createTypeError(exec, "Can't convert undefined or null to object")); + JSValue value = exec->argument(0); JSObject* thisObject = jsDynamicCast(exec->thisValue().toThis(exec, NotStrictMode)); diff -Nru webkitgtk-2.4.9/Source/ThirdParty/leveldb/port/atomic_pointer.h webkitgtk-2.4.10/Source/ThirdParty/leveldb/port/atomic_pointer.h --- webkitgtk-2.4.9/Source/ThirdParty/leveldb/port/atomic_pointer.h 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/ThirdParty/leveldb/port/atomic_pointer.h 2016-03-14 07:09:01.000000000 +0000 @@ -34,7 +34,7 @@ #define ARCH_CPU_X86_FAMILY 1 #elif defined(_M_IX86) || defined(__i386__) || defined(__i386) #define ARCH_CPU_X86_FAMILY 1 -#elif defined(__ARMEL__) +#elif defined(__ARMEL__) || defined(__aarch64__) #define ARCH_CPU_ARM_FAMILY 1 #elif defined(__ppc__) || defined(__powerpc__) || defined(__powerpc64__) #define ARCH_CPU_PPC_FAMILY 1 diff -Nru webkitgtk-2.4.9/Source/WebCore/bindings/js/JSHistoryCustom.cpp webkitgtk-2.4.10/Source/WebCore/bindings/js/JSHistoryCustom.cpp --- webkitgtk-2.4.9/Source/WebCore/bindings/js/JSHistoryCustom.cpp 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/WebCore/bindings/js/JSHistoryCustom.cpp 2016-03-14 07:09:01.000000000 +0000 @@ -96,7 +96,6 @@ bool JSHistory::putDelegate(ExecState* exec, PropertyName, JSValue, PutPropertySlot&) { - // Only allow putting by frames in the same origin. if (!shouldAllowAccessToFrame(exec, impl().frame())) return true; return false; @@ -105,7 +104,6 @@ bool JSHistory::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) { JSHistory* thisObject = jsCast(cell); - // Only allow deleting by frames in the same origin. if (!shouldAllowAccessToFrame(exec, thisObject->impl().frame())) return false; return Base::deleteProperty(thisObject, exec, propertyName); @@ -114,7 +112,6 @@ bool JSHistory::deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) { JSHistory* thisObject = jsCast(cell); - // Only allow deleting by frames in the same origin. if (!shouldAllowAccessToFrame(exec, thisObject->impl().frame())) return false; return Base::deletePropertyByIndex(thisObject, exec, propertyName); @@ -123,7 +120,6 @@ void JSHistory::getOwnPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) { JSHistory* thisObject = jsCast(object); - // Only allow the history object to enumerated by frames in the same origin. if (!shouldAllowAccessToFrame(exec, thisObject->impl().frame())) return; Base::getOwnPropertyNames(thisObject, exec, propertyNames, mode); @@ -145,6 +141,9 @@ JSValue JSHistory::pushState(ExecState* exec) { + if (!shouldAllowAccessToFrame(exec, impl().frame())) + return jsUndefined(); + RefPtr historyState = SerializedScriptValue::create(exec, exec->argument(0), 0, 0); if (exec->hadException()) return jsUndefined(); @@ -171,6 +170,9 @@ JSValue JSHistory::replaceState(ExecState* exec) { + if (!shouldAllowAccessToFrame(exec, impl().frame())) + return jsUndefined(); + RefPtr historyState = SerializedScriptValue::create(exec, exec->argument(0), 0, 0); if (exec->hadException()) return jsUndefined(); diff -Nru webkitgtk-2.4.9/Source/WebCore/ChangeLog webkitgtk-2.4.10/Source/WebCore/ChangeLog --- webkitgtk-2.4.9/Source/WebCore/ChangeLog 2015-05-20 09:03:24.000000000 +0000 +++ webkitgtk-2.4.10/Source/WebCore/ChangeLog 2016-03-14 07:09:01.000000000 +0000 @@ -1,3 +1,954 @@ +2014-06-06 Brady Eidson + + Initialize a char* that needs to be initialized. + and https://bugs.webkit.org/show_bug.cgi?id=133585 + + Reviewed by Mark Rowe. + + r152134 (erroneously) removed this initialization. + + * platform/sql/SQLiteStatement.cpp: + (WebCore::SQLiteStatement::prepare): tail should start out initialized to 0. + +2016-03-02 Milan Crha + + Fix the build with VIDEO disabled. + + Reviewed by Carlos Garcia Campos. + + * platform/gtk/RenderThemeGtk2.cpp: + * platform/gtk/RenderThemeGtk3.cpp: + +2016-02-29 Carlos Garcia Campos + + Unreviewed. Fix the build with GTK+ < 3.19. + + * platform/gtk/ScrollbarThemeGtk3.cpp: + (WebCore::ScrollbarThemeGtk::paintScrollbarBackground): + (WebCore::ScrollbarThemeGtk::paintThumb): + (WebCore::ScrollbarThemeGtk::paintButton): + +2015-02-06 Zalan Bujtas + + ASSERT repaintContainer->hasLayer() in WebCore::RenderObject::repaintUsingContainer + https://bugs.webkit.org/show_bug.cgi?id=140750 + + Reviewed by Simon Fraser. + + There's a short period of time when RenderObject::layer() still returns a valid pointer + even though we already cleared the hasLayer() flag. + Do not use the layer as repaint container in such cases. + + Test: compositing/repaint-container-assertion-when-toggling-compositing.html + + * rendering/RenderObject.cpp: + (WebCore::RenderObject::enclosingLayer): + +2015-01-13 Andreas Kling + + Element::normalizeAttributes() needs to handle arbitrary JS executing between loop iterations. + + + + Reviewed by Benjamin Poulain. + + Since DOM mutation events may arise below the call to Node::normalize(), + have the loop in Element::normalizeAttributes() make a copy of the Attr nodes + beforehand, to guard against mutations. + + Based on a patch by Chris "Chris Dumez" Dumez. + + Test: fast/dom/Element/normalize-crash2.html + + * dom/Element.cpp: + (WebCore::Element::normalizeAttributes): + +2015-02-06 Maciej Stachowiak + + REGRESSION(r179706): Caused memory corruption on some tests (Requested by _ap_ on #webkit). + https://bugs.webkit.org/show_bug.cgi?id=141324 + + Reviewed by Alexey Proskuryakov. + + No new tests. This is caught by existing tests under ASAN, and I don't know how to reproduce + it without ASAN. + + * rendering/RenderLineBoxList.cpp: + (WebCore::RenderLineBoxList::dirtyLinesFromChangedChild): Give up + and just always invalidate the next line. It's too hard to come up + with the condition that catches all needed cases, doesn't itself + cause a crash, and isn't overzealous. And we do this for the + previous line anyway. Also clean up the code a bit since it + confusingly reuses a variable, and declares it uninitialized, for + no good reason. + +2015-02-05 Maciej Stachowiak + + Crash due to failing to dirty a removed text node's line box + https://bugs.webkit.org/show_bug.cgi?id=136544 + + Reviewed by David Hyatt. + + Test: fast/text/remove-text-node-linebox-not-dirty-crash.html + + * rendering/RenderLineBoxList.cpp: + (WebCore::RenderLineBoxList::dirtyLinesFromChangedChild): Make the check for dirtying the next + line box a bit more inclusive to avoid a case of a line box for a destroyed render object not + being dirtied. In particular, when the text node's parent has no line boxes but contains BRs. + +2015-02-15 Said Abou-Hallawa + + Crash when accessing an item in SVGLengthList and then replacing it with a previous item in the list. + https://bugs.webkit.org/show_bug.cgi?id=141552. + + Reviewed by Darin Adler. + + Tests: LayoutTests/svg/dom/SVGLengthList-basics.xhtml: This test is modified to + include a new test case. + + * svg/properties/SVGListPropertyTearOff.h: Commit the removal of the replacing item + before trying to detach the wrapper of the item which going to be replaced. + +2015-04-02 Alexey Proskuryakov + + Clean up access checks in JSHistoryCustom.cpp + https://bugs.webkit.org/show_bug.cgi?id=143227 + + Reviewed by Sam Weinig. + + * bindings/js/JSHistoryCustom.cpp: + (WebCore::JSHistory::putDelegate): + (WebCore::JSHistory::deleteProperty): + (WebCore::JSHistory::deletePropertyByIndex): + (WebCore::JSHistory::getOwnPropertyNames): + (WebCore::JSHistory::pushState): + (WebCore::JSHistory::replaceState): + +2014-08-27 Daniel Bates + + Scrollbar corner can be drawn outside containing frame + https://bugs.webkit.org/show_bug.cgi?id=133131 + + + Reviewed by Simon Fraser. + + Merged from Blink (patch by Levi Weintraub): + + + Fixes an issue where the scroll corner may be painted outside the rectangle of + its associated frame by setting a clip rectangle before painting the scroll bar(s) + and scroll corner. + + Test: scrollbars/custom-scrollbars-paint-outside-iframe.html + + * platform/ScrollView.cpp: + (WebCore::ScrollView::paint): + +2015-07-09 Daniel Bates + + Fetching Content Security Policy report URL should respect same origin policy + https://bugs.webkit.org/show_bug.cgi?id=146754 + + + Reviewed by Brady Eidson. + + Inspired by Blink r149791 (by Mike West ): + + + As per , fetching the + Content Security Policy report URL should include cookies if and only if the origin of + the protected resource is equal to the origin of the report URL. + + Tests: http/tests/security/contentSecurityPolicy/report-cross-origin-no-cookies-when-private-browsing-enabled.html + http/tests/security/contentSecurityPolicy/report-cross-origin-no-cookies-when-private-browsing-toggled.html + http/tests/security/contentSecurityPolicy/report-cross-origin-no-cookies.html + http/tests/security/contentSecurityPolicy/report-same-origin-no-cookies-when-private-browsing-toggled.html + http/tests/security/contentSecurityPolicy/report-same-origin-with-cookies-when-private-browsing-enabled.html + http/tests/security/contentSecurityPolicy/report-same-origin-with-cookies.html + + * loader/PingLoader.cpp: + (WebCore::PingLoader::sendViolationReport): + +2015-07-09 Zalan Bujtas + + Plugin create can end up destroying its renderer. + https://bugs.webkit.org/show_bug.cgi?id=146824 + rdar://problem/18921429 + + Reviewed by Andreas Kling. + + Plugins can run arbitrary code during initialization. If the plugin + happens to destroy the associated node, its renderer becomes invalid. + This patch checks whether the renderer survived the createPlugin() call. + (This WeakPtr pattern is also used in RenderWidget to avoid dangling pointers.) + + Speculative fix. Not reproducible. + + * loader/SubframeLoader.cpp: + (WebCore::SubframeLoader::loadPlugin): + +2015-08-05 Chris Dumez + + Crash when removing children of a MathMLSelectElement + https://bugs.webkit.org/show_bug.cgi?id=147704 + + + Reviewed by Ryosuke Niwa. + + When MathMLSelectElement::childrenChanged() is called after its + children have been removed, MathMLSelectElement calls + updateSelectedChild() which accesses m_selectedChild. However, + in this case, m_selectedChild is the previously selected child + and it may be destroyed as this point if it was removed. To avoid + this problem, MathMLSelectElement now keep a strong ref to the + currently selected element. + + Test: mathml/maction-removeChild.html + + * mathml/MathMLSelectElement.h: + +2015-05-28 Myles C. Maxfield + + Crash under ICU with ASAN during editing/selection/move-by-word-visually-crash-test-5.html + https://bugs.webkit.org/show_bug.cgi?id=145429 + + + Reviewed by Alexey Proskuryakov. + + WebKit uses some strings which contain the lower 8-bits of UTF-16 (thereby saving space). However, + ICU doesn't understand this encoding. When we want to use ICU functions with strings in this encoding, + we create a UTextProvider which converts our encoded strings to UTF-16 for ICU, one chunk at a time. + This object contains a vtable which we populate to perform the conversion. + + The WebKit function which actually returns the UTF-16 chunks has two relevant arguments: an index into + the encoded string which ICU is requesting, and a direction from that index which ICU is interested + in. This function populates a "chunk" which is characterized by a pointer to a buffer, the length of + the populated data in the buffer, and an offset into the chunk which represents the index that the + requested character was put into. + + When ICU requests data going backward, we fill in the chunk accordingly, with the requested character + all the way at the end. We then set the offset equal to the length of the buffer. However, this length + value is stale from the previous time the function ran. Therefore, ICU was reading the wrong index in + the chunk when expecting the requested character. + + Covered by editing/selection/move-by-word-visually-crash-test-5.html. + + * platform/text/icu/UTextProviderLatin1.cpp: + (WebCore::uTextLatin1Access): + +2015-05-29 Brady Eidson + + Review feedback followup for r185003. + https://bugs.webkit.org/show_bug.cgi?id=145463 + + Reviewed by Darin Adler. + + * platform/sql/SQLiteDatabase.cpp: + (WebCore::SQLiteDatabase::overrideUnauthorizedFunctions): `static const` one thing, c++-style cast another. + +2015-05-29 Brady Eidson + + WebSQL default functions can bypass authorizer. + and https://bugs.webkit.org/show_bug.cgi?id=145463 + + Reviewed by Sam Weinig and Alexey Proskuryakov. + + No new tests yet. + + * platform/sql/SQLiteDatabase.cpp: + (WebCore::unauthorizedSQLFunction): Function to install into SQLite to override some built-in functions. + (WebCore::SQLiteDatabase::open): + (WebCore::SQLiteDatabase::overrideUnauthorizedFunctions): Install function overrides for functions that + take arbitrary input that are also meant to be disabled by virtue of them not being whitelisted. + * platform/sql/SQLiteDatabase.h: + +2015-06-09 Said Abou-Hallawa + + feComposite filter does not clip the paint rect to its effect rect when the operator is 'in' or 'atop' + https://bugs.webkit.org/show_bug.cgi?id=137856 + + Reviewed by Darin Adler. + + There was bug in calculating the absolutePaintRect of the feComposite filter + when the operator is equal to 'in' or 'atop'. The absolutePaintRect was set + to the absolutePaintRect of the background FilterEffect which is correct. + What was missing is clipping this rectangle to the maxEffectRect of the + filter which we do for other operators. + + Tests: svg/filters/feComposite-background-rect-control-operators.svg + + * platform/graphics/IntRect.h: + (WebCore::operator-=): + (WebCore::operator-): Add new operators to IntRect. + + * platform/graphics/filters/FEComposite.cpp: + (WebCore::FEComposite::determineAbsolutePaintRect): Make sure the filter + absolutePaintRect is clipped to maxEffectRect for all operators. + + (WebCore::FEComposite::platformApplySoftware): Code clean-up. + + * platform/graphics/filters/FilterEffect.cpp: + (WebCore::FilterEffect::determineAbsolutePaintRect): Move the clipping + part to a separate function. + + (WebCore::FilterEffect::clipAbsolutePaintRect): Clip the absolutePaintRect + to the maxEffectRect of the filter. + + * platform/graphics/filters/FilterEffect.h: + +2015-06-15 Zalan Bujtas + + RootInlineBox::m_lineBreakObj becomes invalid when a child renderer is removed and the line does not get marked dirty. + https://bugs.webkit.org/show_bug.cgi?id=145988 + rdar://problem/20959137 + + Reviewed by David Hyatt. + + This patch ensures that we find the right first inline box so that we can dirty the + the appropriate line boxes. + With marking the right line boxes dirty, now we can update RootInlineBox::m_lineBreakObj at the next layout. + + Test: fast/inline/crash-when-child-renderer-is-removed-and-line-stays-clean.html + + * rendering/RenderInline.cpp: + (WebCore::RenderInline::culledInlineFirstLineBox): + (WebCore::RenderInline::culledInlineLastLineBox): + * rendering/RootInlineBox.cpp: + (WebCore::RootInlineBox::setLineBreakInfo): Deleted. Remove misleading assert and comment. + +2015-06-19 Andy Estes + + Various assertion failures occur when executing script in the midst of DOM insertion + https://bugs.webkit.org/show_bug.cgi?id=132482 + + Reviewed by Darin Adler. + + Prior to this change, when an element containing a